/* ============================================================
   ALVERA PARFÜMERİ — PREMIUM CSS
   Tüm sayfalardaki inline stilleri konsolide eder ve
   tasarımı premium seviyeye taşır.
   ============================================================ */

/* ── GOOGLE FONTS ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@400;500;600;700;800;900&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --alv-black:     #0d0d0d;
  --alv-dark:      #111827;
  --alv-mid:       #374151;
  --alv-muted:     #6b7280;
  --alv-line:      #e5e7eb;
  --alv-warm-bg:   #fbf9f6;
  --alv-white:     #ffffff;
  --alv-gold:      #b8965a;
  --alv-gold-lt:   #f5efe3;
  --alv-red:       #dc2626;
  --alv-green:     #15803d;
  --alv-radius-lg: 28px;
  --alv-radius-md: 18px;
  --alv-radius-sm: 12px;
  --alv-radius-pill: 999px;
  --alv-shadow-sm: 0 4px 14px rgba(0,0,0,.06);
  --alv-shadow-md: 0 10px 30px rgba(0,0,0,.08);
  --alv-shadow-lg: 0 18px 50px rgba(0,0,0,.10);
  --alv-trans:     all .28s cubic-bezier(.4,0,.2,1);
  --alv-font-display: 'Playfair Display', Georgia, serif;
  --alv-font-body:    'DM Sans', -apple-system, sans-serif;
}

/* ── BASE ───────────────────────────────────────────────────── */
body {
  font-family: var(--alv-font-body);
  background: var(--alv-white);
  color: var(--alv-dark);
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   CAMPAIGN TOPBAR
   ============================================================ */
.campaign-topbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--alv-black);
  color: var(--alv-white);
  padding: 10px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.campaign-topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}
.campaign-topbar strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .15px;
}
.campaign-topbar span {
  font-size: 12px;
  font-weight: 600;
  opacity: .88;
}
.campaign-topbar a {
  color: var(--alv-white);
  font-weight: 800;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity .2s;
}
.campaign-topbar a:hover { opacity: .75; }

/* ============================================================
   HEADER / NAVBAR PREMIUM
   ============================================================ */
#header.header-default {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s ease;
}
#header.header-default.sticky {
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.logo-header .logo {
  height: 44px;
  width: auto;
}
.box-nav-ul > li > a {
  font-size: 14px;
  font-weight: 700;
  color: var(--alv-dark);
  letter-spacing: .15px;
  transition: color .2s;
  padding: 4px 0;
  position: relative;
}
.box-nav-ul > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--alv-black);
  border-radius: 2px;
  transition: width .25s ease;
}
.box-nav-ul > li:hover > a::after,
.box-nav-ul > li.active > a::after { width: 100%; }
.box-nav-ul > li:hover > a { color: var(--alv-black); }

.nav-icon-item {
  transition: opacity .2s, transform .2s;
}
.nav-icon-item:hover { opacity: .7; transform: scale(1.08); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.liora-hero-section,
.liora-hero-section .swiper,
.liora-hero-section .swiper-wrapper,
.liora-hero-section .swiper-slide {
  min-height: 640px;
}
.liora-hero-wrap {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #111;
}
.liora-hero-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.48) 46%, rgba(0,0,0,.08) 100%);
  z-index: 1;
}
.liora-hero-img {
  width: 100%;
  height: 640px !important;
  object-fit: cover !important;
  object-position: center top;
  display: block;
}
.liora-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
.liora-hero-text {
  max-width: 640px;
  color: var(--alv-white);
}
.liora-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--alv-white);
  border-radius: var(--alv-radius-pill);
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  text-transform: uppercase;
}
.liora-hero-text .title-display {
  font-family: var(--alv-font-display);
  color: var(--alv-white) !important;
  font-size: 58px !important;
  line-height: 1.05 !important;
  font-weight: 900 !important;
  letter-spacing: -1.5px;
  text-shadow: 0 6px 30px rgba(0,0,0,.25);
}
.liora-hero-text .body-text-1 {
  color: rgba(255,255,255,.88) !important;
  font-size: 17px !important;
  line-height: 1.78 !important;
  max-width: 560px;
  margin-top: 18px;
}
.liora-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 26px;
}
.liora-hero-trust span {
  background: rgba(255,255,255,.95);
  color: var(--alv-dark);
  border-radius: var(--alv-radius-pill);
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
  letter-spacing: .05px;
}
.liora-main-btn,
.liora-final-btn,
.liora-card-btn {
  background: var(--alv-black) !important;
  color: var(--alv-white) !important;
  border: 1.5px solid var(--alv-black) !important;
  border-radius: var(--alv-radius-pill) !important;
  font-family: var(--alv-font-body) !important;
  font-weight: 800 !important;
  letter-spacing: .2px;
  transition: var(--alv-trans) !important;
}
.liora-main-btn { padding: 15px 28px !important; }
.liora-main-btn:hover,
.liora-card-btn:hover {
  background: #222 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.22) !important;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.liora-category-flow,
.liora-bestseller-section,
.liora-social-proof,
.liora-premium-operation,
.liora-final-cta { padding: 70px 0; }

.liora-category-flow   { background: linear-gradient(180deg, #fff 0%, #fbfaf8 100%); }
.liora-bestseller-section { background: var(--alv-white); }
.liora-social-proof    { background: linear-gradient(180deg, #fbfaf8 0%, #fff 100%); }
.liora-premium-operation { background: linear-gradient(180deg, #fff 0%, #fbfaf8 100%); }
.liora-final-cta       { background: var(--alv-white); }
.liora-iconbox-section { background: #fbfaf8; }

.liora-section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}
.liora-section-head > span {
  display: inline-block;
  background: var(--alv-black);
  color: var(--alv-white);
  border-radius: var(--alv-radius-pill);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.liora-section-head h2 {
  font-family: var(--alv-font-display);
  color: var(--alv-dark);
  font-size: 38px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -.6px;
  margin: 0 0 14px;
}
.liora-section-head p {
  color: var(--alv-muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.liora-category-card {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  border-radius: var(--alv-radius-lg);
  background: #f5f5f5;
  box-shadow: var(--alv-shadow-md);
  border: 1px solid rgba(0,0,0,.06);
  text-decoration: none;
}
.liora-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.liora-category-card:hover img { transform: scale(1.07); }
.liora-category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.72));
}
.liora-category-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: var(--alv-white);
}
.liora-category-overlay strong {
  display: block;
  font-family: var(--alv-font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
.liora-category-overlay small {
  font-size: 13px;
  font-weight: 700;
  opacity: .88;
}

/* ============================================================
   PRODUCT CARDS (Ana Sayfa)
   ============================================================ */
.liora-product-card {
  height: 100%;
  background: var(--alv-white);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-lg);
  overflow: hidden;
  box-shadow: var(--alv-shadow-sm);
  transition: var(--alv-trans);
  display: flex;
  flex-direction: column;
}
.liora-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--alv-shadow-lg);
  border-color: #d1d5db;
}
.liora-product-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fbf9f5 0%, #fff 70%);
  min-height: 270px;
  padding: 22px 18px 14px;
  overflow: hidden;
}
.liora-product-img > img:not(.liora-gift-corner) {
  width: 100%;
  height: 230px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 22px rgba(60,40,10,.12));
  transition: transform .38s cubic-bezier(.4,0,.2,1);
}
.liora-product-card:hover .liora-product-img > img:not(.liora-gift-corner) {
  transform: scale(1.06);
}
.liora-discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--alv-black);
  color: var(--alv-white);
  border-radius: var(--alv-radius-pill);
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 800;
  z-index: 3;
  letter-spacing: .08px;
}
.liora-gift-corner {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 68px !important;
  height: auto !important;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
  z-index: 3;
  background: var(--alv-white);
}
.liora-product-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.liora-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
}
.liora-rating span { color: #f59e0b; letter-spacing: 1.5px; font-size: 13px; }
.liora-rating small { color: var(--alv-muted); font-size: 11px; font-weight: 700; }
.liora-product-title {
  display: block;
  color: var(--alv-dark);
  text-decoration: none;
  min-height: 44px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.1px;
  transition: color .2s;
}
.liora-product-title:hover { color: var(--alv-red); }
.liora-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 11px;
  flex-wrap: wrap;
}
.liora-price-row del { color: #9ca3af; font-size: 12px; }
.liora-price-row strong { color: var(--alv-black); font-size: 20px; font-weight: 900; }
.liora-product-usps {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}
.liora-product-usps span {
  background: #f8fafc;
  color: var(--alv-mid);
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
}
.liora-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  text-decoration: none;
  font-size: 13px;
  margin-top: auto;
  padding: 10px 14px !important;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.liora-proof-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: center;
}
.liora-proof-kicker {
  display: inline-block;
  background: var(--alv-black);
  color: var(--alv-white);
  border-radius: var(--alv-radius-pill);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.liora-proof-left h2 {
  font-family: var(--alv-font-display);
  color: var(--alv-dark);
  font-size: 36px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -.5px;
  margin: 0 0 14px;
}
.liora-proof-left p { color: var(--alv-muted); font-size: 15px; line-height: 1.8; margin: 0 0 18px; }
.liora-proof-mini { display: flex; gap: 8px; flex-wrap: wrap; }
.liora-proof-mini span {
  background: var(--alv-white);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-pill);
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--alv-shadow-sm);
}
.liora-whatsapp-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 16px;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}
.liora-whatsapp-slide {
  flex: 0 0 46%;
  scroll-snap-align: start;
  background: var(--alv-white);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-lg);
  padding: 10px;
  box-shadow: var(--alv-shadow-md);
}
.liora-whatsapp-slide img { width: 100%; display: block; border-radius: var(--alv-radius-md); height: auto; }

/* ============================================================
   OPERATION SECTION
   ============================================================ */
.liora-operation-card {
  position: relative;
  overflow: hidden;
  background: var(--alv-white);
  border: 1px solid var(--alv-line);
  border-radius: 32px;
  padding: 52px 44px;
  text-align: center;
  box-shadow: var(--alv-shadow-lg);
}
.liora-operation-card::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(184,150,90,.16), rgba(255,255,255,0) 68%);
  pointer-events: none;
}
.liora-operation-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--alv-black);
  color: var(--alv-white);
  padding: 10px 20px;
  border-radius: var(--alv-radius-pill);
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 800;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.liora-operation-card h2 {
  font-family: var(--alv-font-display);
  color: var(--alv-dark);
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: -.5px;
  font-weight: 900;
  margin: 0 auto 20px;
  max-width: 780px;
}
.liora-operation-lead { color: #505050; font-size: 16px; line-height: 1.9; max-width: 820px; margin: 0 auto 28px; }
.liora-operation-highlight {
  max-width: 860px;
  margin: 0 auto 32px;
  padding: 20px 24px;
  border-radius: var(--alv-radius-md);
  background: linear-gradient(135deg, var(--alv-black) 0%, #222 100%);
  color: var(--alv-white);
  text-align: left;
  box-shadow: 0 14px 36px rgba(0,0,0,.14);
}
.liora-operation-highlight strong { display: block; font-size: 15px; margin-bottom: 8px; color: var(--alv-white); }
.liora-operation-highlight span { display: block; color: rgba(255,255,255,.80); font-size: 14px; line-height: 1.72; }
.liora-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 8px; }
.liora-trust-item {
  background: #fafafa;
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-md);
  padding: 22px 16px;
  min-height: 155px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--alv-trans);
}
.liora-trust-item:hover { transform: translateY(-4px); background: var(--alv-white); box-shadow: var(--alv-shadow-md); }
.liora-trust-item span { font-size: 26px; margin-bottom: 11px; }
.liora-trust-item b { color: #151515; font-size: 14px; line-height: 1.35; margin-bottom: 8px; display: block; }
.liora-trust-item small { color: var(--alv-muted); font-size: 12px; line-height: 1.5; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.liora-final-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--alv-black) 0%, #1a1a1a 100%);
  color: var(--alv-white);
  text-align: center;
  border-radius: 32px;
  padding: 52px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
}
.liora-final-card::before {
  content: '';
  position: absolute;
  inset: auto -80px -120px auto;
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(255,255,255,.12), rgba(255,255,255,0) 68%);
  pointer-events: none;
}
.liora-final-card > span {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--alv-radius-pill);
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: .08em;
}
.liora-final-card h2 {
  font-family: var(--alv-font-display);
  color: var(--alv-white);
  font-size: 40px;
  line-height: 1.18;
  font-weight: 900;
  margin: 0 0 14px;
}
.liora-final-card p { color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.72; margin: 0 auto 24px; max-width: 640px; }
.liora-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--alv-white) !important;
  color: var(--alv-black) !important;
  border-color: var(--alv-white) !important;
  text-decoration: none;
  min-height: 48px;
  padding: 0 28px;
  font-weight: 800 !important;
  border-radius: var(--alv-radius-pill) !important;
  transition: var(--alv-trans) !important;
}
.liora-final-btn:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.22) !important; }

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.category-hero {
  text-align: center;
  padding: 40px 0 30px;
  background: linear-gradient(180deg, var(--alv-white) 0%, #f7f7f8 100%);
  border-bottom: 1px solid var(--alv-line);
  margin-bottom: 32px;
}
.category-hero h1 {
  font-family: var(--alv-font-display);
  color: var(--alv-dark);
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -.4px;
}
.category-hero p { color: var(--alv-muted); max-width: 700px; margin: 0 auto 18px; font-size: 15px; line-height: 1.65; }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.hero-badge {
  background: var(--alv-white);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-pill);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--alv-dark);
  box-shadow: var(--alv-shadow-sm);
}

/* ── Products Grid (Category) ─────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  align-items: stretch;
}
@media(min-width:768px)  { .products-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; } }
@media(min-width:1200px) { .products-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 26px; } }

.product-card {
  background: var(--alv-white);
  border: 1px solid #e8dfd3;
  border-radius: var(--alv-radius-lg);
  overflow: hidden;
  transition: var(--alv-trans);
  box-shadow: 0 8px 26px rgba(120,78,28,.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--alv-shadow-lg);
  border-color: #d4c5b5;
}
.product-image-wrap {
  position: relative;
  background: linear-gradient(180deg, #fbf7f0 0%, var(--alv-white) 72%);
  padding: 14px 14px 10px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-image {
  width: 100%;
  height: 294px;
  object-fit: contain;
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 20px rgba(80,55,25,.11));
}
.product-card:hover .product-image { transform: scale(1.07); }
.gift-corner-image {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 72px;
  height: auto;
  border-radius: 10px;
  z-index: 3;
  box-shadow: 0 8px 18px rgba(0,0,0,.14);
  background: var(--alv-white);
}
.gift-badge-top {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  background: rgba(255,255,255,.97);
  color: #7a4f18;
  border: 1px solid #e9d7b8;
  padding: 7px 10px;
  border-radius: var(--alv-radius-sm);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 8px 18px rgba(120,78,28,.10);
}
.stock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  background: linear-gradient(135deg, #ef4444, var(--alv-red));
  color: var(--alv-white);
  padding: 7px 12px;
  border-radius: var(--alv-radius-pill);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(220,38,38,.24);
}
.decision-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 5;
  border-radius: var(--alv-radius-pill);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(17,24,39,.12);
  border: 1px solid rgba(255,255,255,.72);
  backdrop-filter: blur(6px);
}
.decision-hot     { background: rgba(255,247,237,.97); color: #9a3412; }
.decision-fav     { background: rgba(253,242,248,.97); color: #9d174d; }
.decision-premium { background: rgba(239,246,255,.97); color: #1d4ed8; }
.decision-trend   { background: rgba(240,253,244,.97); color: #15803d; }
.decision-dark    { background: rgba(17,24,39,.94);    color: var(--alv-white); }

/* ── Choice Guide ─────────────────── */
.choice-guide {
  margin: 0 0 24px;
  background: linear-gradient(135deg, #fffaf3, var(--alv-white));
  border: 1px solid #eadcc8;
  border-radius: var(--alv-radius-lg);
  padding: 20px;
  box-shadow: 0 10px 28px rgba(120,78,28,.06);
}
.choice-guide-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.choice-guide-title { font-family: var(--alv-font-display); font-size: 19px; font-weight: 700; color: var(--alv-dark); margin: 0; }
.choice-guide-sub { color: #7a6a58; font-size: 13px; font-weight: 700; margin: 4px 0 0; }
.choice-guide-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.choice-guide-card { background: var(--alv-white); border: 1px solid #f0e5d6; border-radius: 16px; padding: 14px 15px; }
.choice-guide-card strong { display: block; color: #2b2117; font-size: 13px; margin-bottom: 5px; }
.choice-guide-card span { color: #6b5b45; font-size: 12px; line-height: 1.55; font-weight: 600; }

/* ── Product Body (Category) ──────── */
.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.product-title {
  color: var(--alv-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  min-height: 42px;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -.1px;
  transition: color .2s;
}
.product-title:hover { color: var(--alv-red); }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 12px; color: var(--alv-muted); }
.stars { color: #f59e0b; letter-spacing: 1.5px; font-size: 14px; line-height: 1; }
.rating-score { font-weight: 700; color: var(--alv-dark); }
.mini-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.mini-badge { font-size: 11px; padding: 6px 10px; border-radius: var(--alv-radius-pill); font-weight: 800; border: 1px solid; white-space: nowrap; }
.badge-ship  { background: #fff7ed; color: #9a5a13; border-color: #fed7aa; }
.badge-pay   { background: #f7f2ea; color: #72512b; border-color: #e9d7b8; }
.badge-dark  { background: var(--alv-dark); color: var(--alv-white); border-color: var(--alv-dark); }
.social-proof {
  background: #fffbf4;
  border: 1px solid #eadcc8;
  color: #7a4f18;
  border-radius: var(--alv-radius-sm);
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center;
}
.card-trust-line { font-size: 12px; color: #6b5b45; font-weight: 700; margin: 0 0 8px; display: flex; align-items: center; gap: 6px; }
.price-area { margin-top: auto; }
.old-price { text-decoration: line-through; color: #9ca3af; font-size: 13px; font-weight: 500; display: block; margin-bottom: 5px; }
.current-price { color: var(--alv-dark); font-size: 24px; font-weight: 900; line-height: 1.1; letter-spacing: -.3px; }
.discount-badge {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(135deg, #ef4444, var(--alv-red));
  color: var(--alv-white);
  border-radius: 10px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(220,38,38,.18);
}
.product-footer-btn {
  margin-top: 14px;
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #171717, #2b2117);
  color: var(--alv-white);
  text-decoration: none;
  border-radius: var(--alv-radius-sm);
  padding: 13px 14px;
  font-size: 14px;
  font-weight: 900;
  transition: var(--alv-trans);
  box-shadow: 0 12px 26px rgba(17,24,39,.14);
  letter-spacing: .1px;
}
.product-footer-btn:hover { background: var(--alv-black); color: var(--alv-white); transform: translateY(-1px); }

/* ============================================================
   PRODUCT DETAIL PAGE — PREMIUM UPGRADES
   ============================================================ */
.tf-product-info-title,
.tf-main-product .title-product {
  font-family: var(--alv-font-display) !important;
}
.tf-btn.btn-fill {
  background: var(--alv-black) !important;
  border-color: var(--alv-black) !important;
  border-radius: var(--alv-radius-pill) !important;
  font-weight: 800 !important;
  letter-spacing: .15px;
  transition: var(--alv-trans) !important;
}
.tf-btn.btn-fill:hover {
  background: #222 !important;
  border-color: #222 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.20) !important;
}

/* ============================================================
   CART PAGE — PREMIUM UPGRADES
   ============================================================ */
.tf-page-cart-wrap {
  background: var(--alv-warm-bg);
  border-radius: var(--alv-radius-lg);
  padding: 24px;
}
.tf-cart-item { border-radius: var(--alv-radius-md); }

/* ============================================================
   FOOTER PREMIUM
   ============================================================ */
#footer.footer {
  background: var(--alv-black);
  color: rgba(255,255,255,.82);
}
#footer .footer-infor .footer-address p,
#footer .footer-info p,
#footer .text-caption-1 { color: rgba(255,255,255,.72); }
#footer .footer-menu-list .footer-menu_item { color: rgba(255,255,255,.72); transition: color .2s; }
#footer .footer-menu-list .footer-menu_item:hover { color: var(--alv-white); }
#footer .footer-heading { color: var(--alv-white); font-weight: 800; }
#footer .tf-social-icon li a {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--alv-radius-pill);
  transition: var(--alv-trans);
}
#footer .tf-social-icon li a:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.4);
}

/* ============================================================
   SCROLL TOP BUTTON
   ============================================================ */
#scroll-top {
  background: var(--alv-black);
  border-radius: var(--alv-radius-pill);
  width: 44px;
  height: 44px;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  transition: var(--alv-trans);
}
#scroll-top:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.24); }

/* ============================================================
   PRELOADER PREMIUM
   ============================================================ */
.preload-container .spinner {
  border-color: #e5e7eb;
  border-top-color: var(--alv-black);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1200px) {
  .liora-hero-text .title-display { font-size: 46px !important; }
  .liora-operation-card h2 { font-size: 34px; }
  .liora-section-head h2 { font-size: 32px; }
}

@media(max-width:991px) {
  .liora-hero-section,
  .liora-hero-section .swiper,
  .liora-hero-section .swiper-wrapper,
  .liora-hero-section .swiper-slide,
  .liora-hero-wrap { min-height: 560px; }
  .liora-hero-img { height: 560px !important; }
  .liora-hero-text .title-display { font-size: 40px !important; }
  .liora-proof-wrap { grid-template-columns: 1fr; }
  .liora-trust-grid { grid-template-columns: repeat(2,1fr); }
  .liora-category-flow,
  .liora-bestseller-section,
  .liora-social-proof,
  .liora-premium-operation,
  .liora-final-cta { padding: 50px 0; }
  .choice-guide-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width:768px) {
  .campaign-topbar .container { gap: 5px 8px; padding: 0 12px; }
  .campaign-topbar strong { width: 100%; font-size: 13px; }
  .campaign-topbar span { font-size: 11px; line-height: 1.4; }

  .liora-hero-section,
  .liora-hero-section .swiper,
  .liora-hero-section .swiper-wrapper,
  .liora-hero-section .swiper-slide,
  .liora-hero-wrap { min-height: 600px; }
  .liora-hero-img { height: 600px !important; object-position: center; }
  .liora-hero-wrap::after { background: linear-gradient(180deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.80) 100%); }
  .liora-hero-content { align-items: flex-end; padding: 0 0 50px; }
  .liora-hero-text { max-width: 100%; }
  .liora-hero-text .title-display { font-size: 30px !important; line-height: 1.08 !important; letter-spacing: -.5px; }
  .liora-hero-text .body-text-1 { font-size: 13.5px !important; margin-top: 12px; }
  .liora-hero-trust { gap: 7px; margin: 14px 0 18px; }
  .liora-hero-trust span { font-size: 10.5px; padding: 7px 10px; }
  .liora-main-btn { width: 100%; justify-content: center; min-height: 48px; padding: 13px 18px !important; }

  .liora-category-flow,
  .liora-bestseller-section,
  .liora-social-proof,
  .liora-premium-operation,
  .liora-final-cta { padding: 38px 0; }
  .liora-section-head { margin-bottom: 24px; padding: 0 8px; }
  .liora-section-head h2,
  .liora-proof-left h2,
  .liora-operation-card h2,
  .liora-final-card h2 { font-size: 26px; line-height: 1.24; }
  .liora-section-head p,
  .liora-proof-left p,
  .liora-operation-lead,
  .liora-final-card p { font-size: 13.5px; }

  .liora-product-img { min-height: 245px; }
  .liora-product-img > img:not(.liora-gift-corner) { height: 215px; }

  .liora-operation-card { padding: 30px 20px; border-radius: var(--alv-radius-lg); }
  .liora-trust-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .liora-trust-item { min-height: 130px; padding: 16px 12px; }

  .liora-final-card { padding: 38px 18px; border-radius: var(--alv-radius-lg); }
  .liora-final-card h2 { font-size: 26px; }
  .liora-final-btn { width: 100%; justify-content: center; min-height: 48px; }

  /* Category page mobile */
  .category-hero { padding: 28px 0 22px; }
  .category-hero h1 { font-size: 26px; }
  .category-hero p { font-size: 14px; padding: 0 8px; }
  .product-image-wrap { min-height: 248px; padding: 10px 8px; }
  .product-image { height: 228px; }
  .gift-corner-image { width: 60px; }
  .current-price { font-size: 21px; }
  .product-title { font-size: 13.5px; min-height: 38px; }
  .choice-guide-grid { grid-template-columns: 1fr; }
  .choice-guide { padding: 14px; }
}

/* ============================================================
   PRODUCT DETAIL — INLINE EXTRACTED STYLES
   ============================================================ */
.liora-detail-trust-bar {
  background: var(--alv-warm-bg);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-lg);
  padding: 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.liora-detail-trust-bar span {
  font-size: 13px;
  font-weight: 800;
  color: var(--alv-dark);
  padding: 8px 12px;
  background: var(--alv-white);
  border-radius: var(--alv-radius-pill);
  border: 1px solid var(--alv-line);
  box-shadow: var(--alv-shadow-sm);
}
.liora-sticky-detail-bar {
  position: sticky;
  bottom: 0;
  z-index: 999;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--alv-line);
  padding: 12px 0;
  box-shadow: 0 -8px 30px rgba(0,0,0,.08);
}
.alvera-badge-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--alv-gold-lt);
  color: #7a4f18;
  border: 1px solid #e9d7b8;
  border-radius: var(--alv-radius-pill);
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}
.alvera-review-card {
  background: var(--alv-white);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-md);
  padding: 18px 20px;
  box-shadow: var(--alv-shadow-sm);
  transition: var(--alv-trans);
}
.alvera-review-card:hover { box-shadow: var(--alv-shadow-md); }
.alvera-reviewer-name { font-weight: 800; color: var(--alv-dark); font-size: 14px; }
.alvera-review-stars { color: #f59e0b; letter-spacing: 1.5px; font-size: 13px; }
.alvera-review-text { color: var(--alv-muted); font-size: 14px; line-height: 1.65; margin-top: 8px; }

/* ============================================================
   CART PAGE — INLINE EXTRACTED
   ============================================================ */
.cart-page-wrap { background: var(--alv-warm-bg); }
.cart-total-card {
  background: var(--alv-white);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-lg);
  padding: 24px 22px;
  box-shadow: var(--alv-shadow-md);
}
.cart-checkout-btn {
  background: var(--alv-black) !important;
  color: var(--alv-white) !important;
  border-color: var(--alv-black) !important;
  border-radius: var(--alv-radius-pill) !important;
  font-weight: 800 !important;
  transition: var(--alv-trans) !important;
}
.cart-checkout-btn:hover { background: #222 !important; transform: translateY(-2px); box-shadow: var(--alv-shadow-md) !important; }
.cart-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
}
.cart-trust-row span {
  background: var(--alv-warm-bg);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-pill);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--alv-dark);
}

/* ============================================================
   CHECKOUT PAGE — INLINE EXTRACTED
   ============================================================ */
.checkout-wrap { background: var(--alv-warm-bg); }
.checkout-form-card {
  background: var(--alv-white);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--alv-shadow-md);
}
.checkout-form-card h5 {
  font-family: var(--alv-font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--alv-dark);
}
.form-control, .form-select {
  border-radius: var(--alv-radius-sm) !important;
  border: 1.5px solid var(--alv-line) !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  transition: border-color .2s !important;
}
.form-control:focus, .form-select:focus {
  border-color: var(--alv-black) !important;
  box-shadow: 0 0 0 3px rgba(0,0,0,.06) !important;
}

/* ============================================================
   ÜRÜN DETAY SAYFASI — TAM CSS
   ============================================================ */

/* Grid layout */
.product-premium-wrap { padding: 28px 0 48px; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: flex-start;
}
@media(max-width:991px) { .product-grid { grid-template-columns: 1fr; gap: 24px; } }

/* Galeri */
.gallery-card { position: sticky; top: 80px; }
.main-gallery .splide__slide img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: linear-gradient(180deg, #fbf9f5 0%, #fff 100%);
  border-radius: var(--alv-radius-lg);
  border: 1px solid var(--alv-line);
  padding: 20px;
}
.premium-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 12px;
}
.premium-badge {
  background: #f8fafc;
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-pill);
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 800;
  color: var(--alv-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-meta-strip { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.meta-mini-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fafafa;
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-md);
  padding: 12px 14px;
}
.meta-mini-card i { color: var(--alv-gold); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.meta-mini-title { font-size: 13px; font-weight: 800; color: var(--alv-dark); margin-bottom: 3px; }
.meta-mini-text  { font-size: 12px; color: var(--alv-muted); line-height: 1.55; }

/* Info card sağ kolon */
.info-card { display: flex; flex-direction: column; gap: 14px; }
.category-mini {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--alv-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product-choice-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--alv-gold-lt);
  color: #7a4f18;
  border: 1px solid #e9d7b8;
  border-radius: var(--alv-radius-pill);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
}
h1.product-title {
  font-family: var(--alv-font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--alv-dark);
  line-height: 1.22;
  letter-spacing: -.4px;
  margin: 0;
}
@media(max-width:768px) { h1.product-title { font-size: 21px; } }

/* Rating row */
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-wrap: wrap;
}
.rating-stars { color: #f59e0b; font-size: 15px; letter-spacing: 1px; }
.rating-text  { font-size: 13px; font-weight: 700; color: var(--alv-muted); }
.rating-link-text { font-size: 12px; color: var(--alv-black); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

/* Fiyat */
.price-wrap { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.sale-price { font-size: 32px; font-weight: 900; color: var(--alv-black); font-family: var(--alv-font-body); }
.old-price  { font-size: 16px; color: #9ca3af; text-decoration: line-through; font-weight: 500; }
.discount-badge {
  background: linear-gradient(135deg, #ef4444, var(--alv-red));
  color: #fff;
  border-radius: var(--alv-radius-pill);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(220,38,38,.2);
  letter-spacing: .08em;
}

/* Buying signals */
.buying-signals { display: flex; flex-wrap: wrap; gap: 7px; }
.signal-pill {
  background: #f8fafc;
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-pill);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--alv-mid);
}
.mini-social-proof {
  background: var(--alv-gold-lt);
  border: 1px solid #e9d7b8;
  border-radius: var(--alv-radius-md);
  padding: 11px 14px;
  font-size: 12.5px;
  color: #6b4e1a;
  font-weight: 600;
  line-height: 1.55;
}
.price-benefit {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--alv-radius-md);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  color: #15803d;
}

/* Decision helper */
.decision-helper-box {
  background: #fff;
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-md);
  padding: 14px 16px;
}
.decision-helper-title { font-size: 13px; font-weight: 800; color: var(--alv-dark); margin-bottom: 9px; }
.decision-helper-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.decision-helper-list li { font-size: 12.5px; color: var(--alv-mid); font-weight: 600; }

/* Highlight box */
.highlight-box {
  background: var(--alv-warm-bg);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-md);
  padding: 16px 18px;
}
.highlight-title { font-size: 13px; font-weight: 800; color: var(--alv-dark); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.highlight-title i { color: var(--alv-gold); }
.highlight-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.highlight-list li { font-size: 12.5px; color: var(--alv-mid); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.highlight-list li i { color: #16a34a; margin-top: 2px; flex-shrink: 0; }

/* Action box */
.action-box {
  background: var(--alv-white);
  border: 2px solid var(--alv-black);
  border-radius: var(--alv-radius-lg);
  padding: 18px 18px 16px;
}
.stock-warning {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--alv-radius-sm);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 800;
  color: #c2410c;
  text-align: center;
  margin-bottom: 12px;
}
.action-benefits { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.action-benefit { font-size: 12.5px; font-weight: 700; color: var(--alv-mid); display: flex; align-items: center; gap: 7px; }
.action-benefit i { color: #16a34a; }

/* Ana sepet butonu */
.btn-premium-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--alv-black);
  color: var(--alv-white);
  border: none;
  border-radius: var(--alv-radius-pill);
  padding: 16px 24px;
  font-family: var(--alv-font-body);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .3px;
  cursor: pointer;
  transition: var(--alv-trans);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.btn-premium-cart:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,.24);
}
.quick-note {
  font-size: 11.5px;
  color: var(--alv-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
.cta-subtext {
  font-size: 12px;
  font-weight: 700;
  color: #15803d;
  text-align: center;
  margin-top: 7px;
}

/* WhatsApp info box */
.info-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--alv-radius-md);
  padding: 16px 18px;
}
.info-box-title    { font-size: 13px; font-weight: 800; color: #15803d; margin-bottom: 5px; }
.info-box-subtitle { font-size: 12px; color: #166534; line-height: 1.55; margin-bottom: 12px; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: var(--alv-radius-pill);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  transition: var(--alv-trans);
}
.whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-1px); color: #fff; }

/* Why this product */
.why-this-product {
  background: var(--alv-white);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-md);
  padding: 16px 18px;
  margin-top: 14px;
}
.why-this-product h4 { font-family: var(--alv-font-display); font-size: 16px; font-weight: 700; color: var(--alv-dark); margin-bottom: 10px; }
.why-this-product ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.why-this-product li { font-size: 13px; color: var(--alv-mid); font-weight: 600; }

/* Desc box */
.desc-box {
  background: var(--alv-warm-bg);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-md);
  padding: 18px;
  margin-top: 14px;
}
.desc-box h5 { font-family: var(--alv-font-display); font-size: 16px; font-weight: 700; color: var(--alv-dark); margin-bottom: 10px; }
.desc-content { font-size: 13.5px; color: var(--alv-mid); line-height: 1.72; }

/* ── STİCKY SEPET BUTONU ──────────────────────── */
.sticky-cart-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--alv-line);
  padding: 12px 16px;
  box-shadow: 0 -8px 30px rgba(0,0,0,.10);
}
.sticky-cart-bar.visible { display: block; }
.sticky-cart-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sticky-cart-info { flex: 1; min-width: 0; }
.sticky-cart-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--alv-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.sticky-cart-price { font-size: 16px; font-weight: 900; color: var(--alv-black); }
.sticky-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--alv-black);
  color: var(--alv-white);
  border: none;
  border-radius: var(--alv-radius-pill);
  padding: 13px 22px;
  font-family: var(--alv-font-body);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--alv-trans);
  flex-shrink: 0;
}
.sticky-cart-btn:hover { background: #222; }

/* Review highlight grid */
.review-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-bottom: 8px;
}
@media(max-width:768px) { .review-highlight-grid { grid-template-columns: 1fr; gap: 8px; } }
.review-highlight-box {
  background: var(--alv-white);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-md);
  padding: 14px 16px;
  box-shadow: var(--alv-shadow-sm);
}
.review-highlight-title { font-size: 13px; font-weight: 800; color: var(--alv-dark); margin-bottom: 5px; }
.review-highlight-text  { font-size: 12px; color: var(--alv-muted); line-height: 1.55; }

/* Review section */
.alvera-review-card {
  background: var(--alv-white);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-lg);
  padding: 22px 24px;
  box-shadow: var(--alv-shadow-md);
}
.alvera-review-score-box { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; }
.alvera-review-score { font-size: 52px; font-weight: 900; color: var(--alv-black); line-height: 1; font-family: var(--alv-font-body); }
.alvera-review-title    { font-family: var(--alv-font-display); font-size: 18px; font-weight: 700; color: var(--alv-dark); margin-bottom: 4px; }
.alvera-review-subtitle { font-size: 12px; color: var(--alv-muted); font-weight: 700; margin-top: 4px; }
.alvera-review-proof-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin-bottom: 16px; }
@media(min-width:768px) { .alvera-review-proof-grid { grid-template-columns: repeat(4,1fr); } }
.alvera-proof-chip {
  background: var(--alv-warm-bg);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-md);
  padding: 10px 12px;
}
.alvera-proof-chip strong { display: block; font-size: 12px; font-weight: 800; color: var(--alv-dark); margin-bottom: 3px; }
.alvera-proof-chip span  { font-size: 11px; color: var(--alv-muted); line-height: 1.4; }
.open-review-panel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--alv-black);
  color: var(--alv-white);
  border: none;
  border-radius: var(--alv-radius-pill);
  padding: 14px;
  font-family: var(--alv-font-body);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--alv-trans);
}
.open-review-panel-btn:hover { background: #222; }

/* Review Drawer */
.review-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9995;
  backdrop-filter: blur(2px);
}
.review-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(480px, 100vw);
  height: 100vh;
  background: var(--alv-white);
  z-index: 9996;
  overflow-y: auto;
  transition: right .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -18px 0 60px rgba(0,0,0,.14);
  padding: 0;
}
body.review-drawer-open .review-drawer { right: 0; }
body.review-drawer-open .review-drawer-backdrop { display: block; }
body.review-drawer-open { overflow: hidden; }

.review-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--alv-line);
  position: sticky;
  top: 0;
  background: var(--alv-white);
  z-index: 2;
}
.drawer-title    { font-family: var(--alv-font-display); font-size: 18px; font-weight: 700; color: var(--alv-dark); }
.drawer-subtitle { font-size: 12px; color: var(--alv-muted); margin-top: 2px; }
.drawer-close {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--alv-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color .2s;
}
.drawer-close:hover { color: var(--alv-black); }
.drawer-hero { padding: 18px 20px; border-bottom: 1px solid var(--alv-line); background: var(--alv-warm-bg); }
.drawer-summary { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.drawer-score { font-size: 44px; font-weight: 900; color: var(--alv-black); line-height: 1; }
.drawer-stars { font-size: 16px; color: #f59e0b; letter-spacing: 1.5px; margin-bottom: 4px; }
.drawer-count { font-size: 12px; color: var(--alv-muted); font-weight: 700; }
.drawer-trust-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.drawer-trust-item { font-size: 11px; font-weight: 700; color: #15803d; display: flex; align-items: center; gap: 5px; }
.drawer-trust-item i { font-size: 12px; }
.drawer-rating-bars { display: flex; flex-direction: column; gap: 6px; }
.drawer-rating-bar { display: flex; align-items: center; gap: 8px; }
.drawer-rating-bar > span { font-size: 11px; font-weight: 700; color: var(--alv-muted); min-width: 22px; }
.drawer-rating-track { flex: 1; height: 6px; background: var(--alv-line); border-radius: 999px; overflow: hidden; }
.drawer-rating-fill  { height: 100%; background: #f59e0b; border-radius: 999px; }

.photo-review-strip-title { font-size: 12px; font-weight: 800; color: var(--alv-dark); padding: 14px 20px 8px; }
.photo-review-strip { display: flex; gap: 8px; overflow-x: auto; padding: 0 20px 14px; scrollbar-width: none; }
.photo-review-strip::-webkit-scrollbar { display: none; }
.photo-review-thumb { width: 80px; height: 80px; border-radius: 10px; overflow: hidden; border: 1px solid var(--alv-line); flex-shrink: 0; background: none; cursor: pointer; padding: 0; }
.photo-review-thumb img { width: 100%; height: 100%; object-fit: cover; }

.review-filter-title { font-size: 12px; font-weight: 800; color: var(--alv-muted); padding: 12px 20px 6px; text-transform: uppercase; letter-spacing: .08em; }
.review-filter-row { display: flex; gap: 6px; overflow-x: auto; padding: 0 20px 12px; scrollbar-width: none; }
.review-filter-row::-webkit-scrollbar { display: none; }
.review-filter {
  background: var(--alv-white);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-pill);
  padding: 7px 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--alv-mid);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--alv-trans);
  flex-shrink: 0;
}
.review-filter.active { background: var(--alv-black); color: var(--alv-white); border-color: var(--alv-black); }
.drawer-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 20px 12px;
  background: var(--alv-warm-bg);
  border: 1.5px solid var(--alv-line);
  border-radius: var(--alv-radius-sm);
  padding: 10px 14px;
}
.drawer-search-wrap i { color: var(--alv-muted); }
.drawer-search-wrap input { border: none; background: none; font-size: 13px; color: var(--alv-dark); outline: none; width: 100%; }

.review-list-drawer { padding: 0 20px 120px; display: flex; flex-direction: column; gap: 14px; }
.drawer-review-item {
  background: var(--alv-white);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-md);
  padding: 16px;
  transition: var(--alv-trans);
}
.drawer-review-item:hover { box-shadow: var(--alv-shadow-sm); }
.drawer-review-item.is-hidden { display: none; }
.drawer-review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.drawer-review-author { display: flex; align-items: center; gap: 10px; }
.avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--alv-gold-lt);
  color: #7a4f18;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-name { font-size: 13px; font-weight: 800; color: var(--alv-dark); }
.review-date   { font-size: 11px; color: var(--alv-muted); font-weight: 600; margin-top: 1px; }
.drawer-item-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.drawer-review-text { font-size: 13.5px; color: var(--alv-mid); line-height: 1.7; margin-bottom: 10px; font-style: italic; }
.drawer-review-image { margin-bottom: 10px; }
.drawer-review-image img { width: 100%; max-height: 220px; object-fit: cover; border-radius: var(--alv-radius-sm); }
.review-extra-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.review-extra-badge {
  background: var(--alv-warm-bg);
  border: 1px solid var(--alv-line);
  border-radius: var(--alv-radius-pill);
  padding: 4px 9px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--alv-mid);
}
.review-verified { font-size: 11.5px; color: #15803d; font-weight: 700; display: flex; align-items: center; gap: 5px; }
.review-verified i { font-size: 12px; }
.empty-reviews { text-align: center; padding: 40px 20px; color: var(--alv-muted); font-size: 14px; }

/* Customer reviews section */
.customer-reviews { padding: 0 0 32px; }