/* ===================================================
   FAVANO™ – styles.css
   =================================================== */

/* ── Common.js injected elements ─────────────────── */
/* Announcement Bar */
.fv-announcement {
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  overflow: hidden;
  white-space: nowrap;
  height: 36px;
  display: flex;
  align-items: center;
}
.fv-anc-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: marquee 28s linear infinite;
  padding-left: 100%;
}
.fv-dot { opacity: .4; }

/* Header */
.fv-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #ddd;
  transition: box-shadow .3s ease;
}
.fv-nav-top {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 10px 24px;
  border-bottom: 1px solid #f5f5f5;
}
.fv-nav-link {
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #444;
  text-decoration: none;
  position: relative;
  transition: color .25s;
}
.fv-nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: #111;
  transition: width .25s;
}
.fv-nav-link:hover,
.fv-nav-link.active { color: #111; }
.fv-nav-link:hover::after,
.fv-nav-link.active::after { width: 100%; }

.fv-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.fv-logo { display: flex; align-items: center; }
.fv-header-left,
.fv-header-right { display: flex; align-items: center; gap: 8px; }

.fv-icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: none;
  background: none;
  cursor: pointer;
  color: #111;
  position: relative;
  transition: background .25s;
  text-decoration: none;
}
.fv-icon-btn:hover { background: #f5f5f5; }

.fv-cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: #111;
  color: #fff;
  font-size: 9px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  opacity: 0;
  transition: opacity .25s;
  font-family: inherit;
}
.fv-cart-count.visible { opacity: 1; }

/* Mobile Menu */
.fv-mobile-menu {
  position: fixed;
  top: 0; left: -300px;
  width: 280px; height: 100%;
  background: #fff;
  z-index: 200;
  padding: 24px 32px 32px;
  display: flex; flex-direction: column; gap: 8px;
  transition: left .3s ease;
  box-shadow: 4px 0 30px rgba(0,0,0,.1);
}
.fv-mobile-menu.open { left: 0; }
.fv-mobile-menu .fv-logo { margin-bottom: 20px; margin-top: 36px; }
.fv-mobile-menu a {
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  padding: 14px 0;
  color: #111;
  text-decoration: none;
  display: block;
}
.fv-close-menu {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 18px;
  color: #888;
  border: none; background: none; cursor: pointer;
}

.fv-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.fv-overlay.visible { opacity: 1; pointer-events: all; }

/* Cart Drawer */
.fv-cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 400px; height: 100%;
  background: #fff;
  z-index: 300;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 40px rgba(0,0,0,.12);
  transition: right .3s ease;
}
.fv-cart-drawer.open { right: 0; }
.fv-cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #ddd;
}
.fv-cart-head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 500;
}
.fv-close-cart { font-size: 18px; color: #888; border: none; background: none; cursor: pointer; padding: 4px 8px; }
.fv-close-cart:hover { color: #111; }

.fv-cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.fv-cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; height: 100%; color: #888;
  font-family: 'Jost', sans-serif; font-size: 14px;
}
.fv-cart-item {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.fv-cart-img { width: 72px; height: 72px; object-fit: cover; border-radius: 4px; background: #f5f5f5; flex-shrink: 0; }
.fv-cart-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.fv-cart-name { font-size: 13px; font-weight: 500; line-height: 1.4; }
.fv-cart-price { font-size: 13px; color: #555; }
.fv-cart-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.fv-qty-btn {
  width: 26px; height: 26px;
  border: 1px solid #ddd; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #555;
  cursor: pointer; background: none;
  transition: background .2s;
}
.fv-qty-btn:hover { background: #f5f5f5; }
.fv-qty-val { font-size: 14px; font-weight: 500; min-width: 20px; text-align: center; }
.fv-remove-btn { margin-left: auto; font-size: 11px; color: #aaa; cursor: pointer; border: none; background: none; padding: 2px 4px; }
.fv-remove-btn:hover { color: #111; }

.fv-cart-foot {
  padding: 20px 24px;
  border-top: 1px solid #ddd;
  display: flex; flex-direction: column; gap: 12px;
}
.fv-cart-total-row { display: flex; justify-content: space-between; font-size: 16px; font-weight: 600; }
.fv-cart-shipping-note { font-size: 12px; color: #4a7c59; font-weight: 500; }
.fv-btn-checkout {
  display: block;
  width: 100%; padding: 16px;
  background: #111; color: #fff;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  border-radius: 4px; text-align: center; text-decoration: none;
  transition: background .25s; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.fv-btn-checkout:hover { background: #444; }
.fv-pay-small { display: flex; gap: 5px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.fv-footer { background: #111; color: #fff; padding: 60px 40px 0; font-family: 'Jost', sans-serif; }
.fv-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.fv-footer-logo { display: block; margin-bottom: 12px; }
.fv-footer-tagline { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px; line-height: 1.6; }
.fv-instagram {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.65);
  text-decoration: none; transition: color .25s;
}
.fv-instagram:hover { color: #fff; }
.fv-footer-col h4 { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.fv-footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 10px; text-decoration: none; transition: color .25s; }
.fv-footer-col a:hover { color: #fff; }
.fv-footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.fv-footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.fv-pay-row { display: flex; gap: 6px; align-items: center; }
.fv-pay-icon { height: 26px; width: 44px; border-radius: 3px; }

/* Toast */
.fv-toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #111; color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 13px; font-weight: 500; letter-spacing: .04em;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 500; white-space: nowrap;
  font-family: 'Jost', sans-serif;
}
.fv-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:      #111111;
  --white:      #ffffff;
  --off-white:  #f9f7f4;
  --cream:      #f3ede3;
  --gold:       #b8935a;
  --gold-light: #d4a96a;
  --gray-100:   #f5f5f5;
  --gray-300:   #dddddd;
  --gray-500:   #888888;
  --gray-700:   #444444;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --radius:     4px;
  --shadow:     0 2px 20px rgba(0,0,0,.08);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

/* ====================================================
   ANNOUNCEMENT BAR
   ==================================================== */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  overflow: hidden;
  white-space: nowrap;
  height: 36px;
  display: flex;
  align-items: center;
}

.announcement-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: marquee 28s linear infinite;
  padding-left: 100%;
}

.announcement-track .dot { opacity: .4; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ====================================================
   HEADER
   ==================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
}

.nav-top {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 10px 24px;
  border-bottom: 1px solid var(--gray-100);
}

.nav-link {
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-700);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--black);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--black); }
.nav-link:hover::after { width: 100%; }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--black);
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
  position: relative;
  color: var(--black);
}
.icon-btn:hover { background: var(--gray-100); }

.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition);
}
.cart-count.visible { opacity: 1; }

/* ====================================================
   MOBILE MENU
   ==================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: -300px;
  width: 280px; height: 100%;
  background: var(--white);
  z-index: 200;
  padding: 60px 32px 32px;
  display: flex; flex-direction: column; gap: 24px;
  transition: left .3s ease;
  box-shadow: 4px 0 30px rgba(0,0,0,.1);
}
.mobile-menu.open { left: 0; }

.mobile-menu a {
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 16px;
}

.close-menu {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 18px;
  color: var(--gray-700);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.overlay.visible { opacity: 1; pointer-events: all; }

/* ====================================================
   HERO
   ==================================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  background: var(--cream);
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 80px;
  gap: 24px;
}

.hero-sub {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--black);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  align-self: flex-start;
}
.btn-primary:hover { background: var(--gray-700); transform: translateY(-1px); }

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition: transform 6s ease;
}
.hero-img:hover { transform: scale(1); }

/* ====================================================
   TRUST BAR
   ==================================================== */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-700);
  flex: 1;
  justify-content: center;
  border-right: 1px solid var(--gray-300);
}
.trust-item:last-child { border-right: none; }

/* ====================================================
   COLLECTION / PRODUCTS
   ==================================================== */
.collection-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-img-wrap {
  position: relative;
  background: var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }

.quick-add {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.quick-add:hover { background: var(--black); color: var(--white); }

.product-info {
  padding: 16px 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-colors {
  display: flex;
  gap: 6px;
}

.color-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--transition);
}
.color-dot:hover { transform: scale(1.25); }

.product-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--black);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stars { color: #f5a623; font-size: 12px; }
.rating-count { font-size: 11px; color: var(--gray-500); }

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-price {
  font-size: 16px;
  font-weight: 600;
}

.btn-add {
  margin-top: 4px;
  width: 100%;
  padding: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-add:hover { background: var(--gray-700); transform: translateY(-1px); }
.btn-add.added {
  background: #4a7c59;
}

/* ====================================================
   REVIEWS
   ==================================================== */
.reviews-section {
  background: var(--cream);
  padding: 80px 24px;
}

.reviews-section .section-header {
  margin-bottom: 16px;
}

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 48px;
}
.big-stars { color: #f5a623; font-size: 24px; }
.big-rating { font-size: 24px; font-weight: 600; }
.big-count { font-size: 13px; color: var(--gray-500); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}

.review-stars { color: #f5a623; font-size: 14px; }

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
}

.review-author strong { font-size: 13px; display: block; }
.review-author span { font-size: 11px; color: var(--gray-500); letter-spacing: .05em; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-bar-wrap {
  height: 6px;
  background: rgba(0,0,0,.1);
  border-radius: 3px;
  overflow: hidden;
}

.stat-bar {
  height: 100%;
  width: var(--pct);
  background: var(--black);
  border-radius: 3px;
  animation: growBar 1.2s ease forwards;
  transform-origin: left;
}

@keyframes growBar {
  from { width: 0; }
  to { width: var(--pct); }
}

.stat-label { font-size: 12px; color: var(--gray-700); font-weight: 500; }

/* ====================================================
   CART DRAWER
   ==================================================== */
.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 400px; height: 100%;
  background: var(--white);
  z-index: 300;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 40px rgba(0,0,0,.12);
  transition: right .3s ease;
}
.cart-drawer.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-300);
}
.cart-header h2 { font-family: var(--font-serif); font-size: 22px; font-weight: 500; }
.close-cart { font-size: 18px; color: var(--gray-500); padding: 4px 8px; }
.close-cart:hover { color: var(--black); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  color: var(--gray-500);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.cart-item-img {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--gray-100);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-item-name { font-size: 13px; font-weight: 500; line-height: 1.4; }
.cart-item-price { font-size: 13px; color: var(--gray-700); }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--gray-700);
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--gray-100); }
.qty-value { font-size: 14px; font-weight: 500; min-width: 20px; text-align: center; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-300);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
}

.cart-shipping { font-size: 12px; color: #4a7c59; font-weight: 500; }

.btn-checkout {
  width: 100%;
  padding: 16px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.btn-checkout:hover { background: var(--gray-700); }

.payment-icons-small {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.payment-icons-small img {
  height: 20px;
  opacity: .6;
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 40px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  line-height: 1.6;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.instagram-link:hover { color: var(--white); }

.footer-links-col h4 {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}

.footer-links-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

.payment-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.pay-icon {
  height: 26px;
  width: 44px;
  border-radius: 3px;
}

/* ====================================================
   TOAST
   ==================================================== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 500;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 60px 32px;
    order: 2;
  }
  .hero-image-wrap {
    height: 340px;
    order: 1;
  }
  .nav-top { display: none; }
  .trust-bar { flex-wrap: wrap; }
  .trust-item { flex: 0 0 50%; border-bottom: 1px solid var(--gray-300); }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .header-main { padding: 14px 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-item { flex: 0 0 100%; }
  .cart-drawer { width: 100%; right: -100%; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ====================================================
   PRODUKTSEITEN
   ==================================================== */
.product-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #888; letter-spacing: .06em;
  margin-bottom: 32px;
  font-family: 'Jost', sans-serif;
}
.breadcrumb a { color: #888; text-decoration: none; }
.breadcrumb a:hover { color: #111; }
.breadcrumb span { color: #ddd; }

/* Layout */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Gallery */
.product-gallery { position: sticky; top: 120px; }
.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 12px;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-main:hover img { transform: scale(1.04); }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb {
  width: 72px; height: 72px;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
  flex-shrink: 0;
}
.gallery-thumb.active { border-color: #111; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Details */
.product-details { display: flex; flex-direction: column; gap: 20px; }
.pd-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: #b8935a; font-weight: 600;
  font-family: 'Jost', sans-serif;
}
.pd-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500; line-height: 1.15;
}
.pd-rating { display: flex; align-items: center; gap: 8px; }
.pd-stars { color: #f5a623; font-size: 14px; }
.pd-rev-count { font-size: 13px; color: #888; }

.pd-price {
  font-size: 28px; font-weight: 600;
  font-family: 'Jost', sans-serif;
}
.pd-price-note { font-size: 12px; color: #888; margin-left: 8px; font-weight: 400; }

.pd-divider { height: 1px; background: #eee; }

/* Color selector */
.pd-label {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; color: #444; margin-bottom: 10px;
  font-family: 'Jost', sans-serif;
}
.pd-colors { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-color-btn {
  width: 30px; height: 30px; border-radius: 50%;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .2s, border-color .2s;
  position: relative;
}
.pd-color-btn:hover { transform: scale(1.15); }
.pd-color-btn.active { border-color: #111; }
.pd-color-btn .pd-color-tooltip {
  display: none;
  position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  background: #111; color: #fff;
  font-size: 10px; padding: 3px 8px; border-radius: 3px;
  white-space: nowrap; font-family: 'Jost', sans-serif;
}
.pd-color-btn:hover .pd-color-tooltip { display: block; }

/* Quantity */
.pd-qty { display: flex; align-items: center; gap: 12px; }
.pd-qty-btn {
  width: 38px; height: 38px; border: 1px solid #ddd; border-radius: 4px;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; background: none; transition: background .2s;
  font-family: 'Jost', sans-serif;
}
.pd-qty-btn:hover { background: #f5f5f5; }
.pd-qty-val { font-size: 16px; font-weight: 500; min-width: 30px; text-align: center; }

/* Add to cart */
.pd-add-btn {
  width: 100%; padding: 16px;
  background: #111; color: #fff;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background .25s, transform .2s;
  font-family: 'Jost', sans-serif;
}
.pd-add-btn:hover { background: #444; transform: translateY(-1px); }
.pd-add-btn.added { background: #4a7c59; }

.pd-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.pd-trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #555; }

/* Accordion */
.pd-accordion { border-top: 1px solid #eee; }
.pd-acc-item { border-bottom: 1px solid #eee; }
.pd-acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; font-size: 14px; font-weight: 500; cursor: pointer;
  background: none; border: none; text-align: left;
  font-family: 'Jost', sans-serif; color: #111;
}
.pd-acc-icon { font-size: 18px; color: #888; transition: transform .3s; line-height: 1; }
.pd-acc-item.open .pd-acc-icon { transform: rotate(45deg); }
.pd-acc-body {
  overflow: hidden; max-height: 0;
  transition: max-height .4s ease, padding .3s;
  font-size: 14px; color: #555; line-height: 1.8;
}
.pd-acc-item.open .pd-acc-body { max-height: 400px; padding-bottom: 16px; }
.pd-acc-body ul { padding-left: 18px; }
.pd-acc-body li { margin-bottom: 6px; }

/* Related Products */
.related-section {
  background: #f9f7f4;
  padding: 72px 24px;
}
.related-section .section-header { margin-bottom: 40px; }

/* ====================================================
   RECHTLICHE SEITEN & KONTAKT
   ==================================================== */
.legal-page, .contact-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  font-family: 'Jost', sans-serif;
}
.legal-page h1, .contact-page h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500; margin-bottom: 8px;
}
.legal-page .legal-updated {
  font-size: 12px; color: #888; letter-spacing: .06em; margin-bottom: 40px;
  text-transform: uppercase;
}
.legal-page h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 500; margin: 36px 0 12px;
}
.legal-page h3 {
  font-size: 15px; font-weight: 600; margin: 24px 0 8px; color: #111;
}
.legal-page p, .legal-page li {
  font-size: 14px; line-height: 1.85; color: #444; margin-bottom: 10px;
}
.legal-page ul, .legal-page ol { padding-left: 20px; margin-bottom: 16px; }
.legal-page a { color: #111; text-decoration: underline; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13px; }
.legal-page td, .legal-page th { border: 1px solid #ddd; padding: 10px 14px; text-align: left; }
.legal-page th { background: #f5f5f5; font-weight: 600; }

/* Kontaktformular */
.contact-page h1 { margin-bottom: 6px; }
.contact-page .contact-sub { font-size: 15px; color: #666; margin-bottom: 48px; line-height: 1.7; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: #444; }
.form-input, .form-textarea, .form-select {
  border: 1px solid #ddd; border-radius: 4px;
  padding: 12px 16px; font-size: 14px; color: #111;
  font-family: 'Jost', sans-serif;
  transition: border-color .25s, box-shadow .25s;
  background: #fff;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 2px rgba(17,17,17,.06);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  padding: 16px;
  background: #111; color: #fff;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background .25s, transform .2s;
  font-family: 'Jost', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { background: #444; transform: translateY(-1px); }
.btn-submit.loading { opacity: .7; pointer-events: none; }
.btn-submit.success { background: #4a7c59; }

.form-success {
  display: none;
  padding: 20px 24px;
  background: #f0f7f2;
  border: 1px solid #c3e0cc;
  border-radius: 8px;
  color: #2d6b3e;
  font-size: 14px; line-height: 1.6;
}
.form-success.visible { display: block; }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; flex-direction: column; gap: 6px; }
.contact-info-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; color: #b8935a; }
.contact-info-value { font-size: 14px; color: #444; line-height: 1.6; }
.contact-info-value a { color: #111; text-decoration: none; }
.contact-info-value a:hover { text-decoration: underline; }

.contact-divider { height: 1px; background: #eee; }

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid #ddd;
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  z-index: 400; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.08);
  font-family: 'Jost', sans-serif;
}
.cookie-banner p { font-size: 13px; color: #444; flex: 1; line-height: 1.6; min-width: 260px; }
.cookie-banner a { color: #111; }
.cookie-btn-wrap { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 20px; border-radius: 4px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
  cursor: pointer; border: 1px solid #111;
  font-family: 'Jost', sans-serif; transition: all .2s;
}
.cookie-btn.accept { background: #111; color: #fff; }
.cookie-btn.accept:hover { background: #444; }
.cookie-btn.decline { background: #fff; color: #111; }
.cookie-btn.decline:hover { background: #f5f5f5; }

/* ====================================================
   RESPONSIVE – Neue Elemente
   ==================================================== */
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .fv-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .fv-nav-top { display: none; }
  .fv-cart-drawer { width: 100%; right: -100%; }
  .fv-footer-inner { grid-template-columns: 1fr; }
  .fv-footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .product-name a { font-size: 13px; }
}
