/* ============================================================
   TAMENTINO - Main Stylesheet
   Mobile-first, RTL support, Professional honey brand
   ============================================================ */

/* Google Fonts loaded via <link> in HTML head */

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --gold: #C8960C;
  --gold-dark: #9A7009;
  --gold-light: #F5E199;
  --gold-pale: #FEF8E4;
  --amber: #E8A020;
  --amber-light: #FAD080;
  --brown: #3E1C00;
  --brown-medium: #6B3A1A;
  --brown-light: #B07850;
  --cream: #FFFBF0;
  --cream-dark: #FEF3D0;
  --white: #FFFFFF;
  --text-dark: #1A0900;
  --text-medium: #5C3010;
  --text-light: #9A7058;
  --border: #E8D090;
  --border-light: #F5EAC8;
  --success: #2E7D32;
  --success-light: #E8F5E9;
  --error: #C62828;
  --error-light: #FFEBEE;
  --whatsapp: #25D366;
  --shadow-sm: 0 2px 8px rgba(62, 28, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(62, 28, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(62, 28, 0, 0.16);
  --shadow-gold: 0 4px 20px rgba(200, 150, 12, 0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
  --font-latin: 'Inter', 'Playfair Display', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-arabic: 'Cairo', sans-serif;
  --header-height: 70px;
  --free-delivery-min: 300;
  --delivery-cost: 35;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

body.font-latin {
  font-family: var(--font-latin);
}

body.font-arabic {
  font-family: var(--font-arabic);
}

html[dir="rtl"] body {
  text-align: right;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  color: var(--brown);
}

body.font-latin h1,
body.font-latin h2,
body.font-latin h3 {
  font-family: var(--font-heading);
}

h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { line-height: 1.7; }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.section {
  padding: 4rem 0;
}

.section-sm {
  padding: 2.5rem 0;
}

/* ============================================================
   Delivery Banner
   ============================================================ */
.delivery-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.delivery-banner span {
  margin: 0 0.5rem;
}

/* ============================================================
   Header
   ============================================================ */
#headerContainer {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

/* Logo */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-icon-fallback {
  display: none;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-gold);
  overflow: hidden;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: var(--gold-pale);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: var(--cream-dark);
  border-radius: 25px;
  padding: 0.3rem 0.5rem;
}

.lang-btn {
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-medium);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--white);
}

/* Cart Button */
.cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
  color: var(--brown);
}

.cart-btn:hover {
  background: var(--gold-pale);
  color: var(--gold);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.cart-count.hidden { display: none; }

/* Hamburger */
.hamburger {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all var(--transition);
}

.hamburger:hover { background: var(--gold-pale); }

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .hamburger { display: none; }
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 0 1rem;
  z-index: 999;
  border-top: 2px solid var(--gold-pale);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
}

.nav-mobile.open {
  max-height: 400px;
  padding: 0.5rem 1rem;
}

@media (max-width: 767px) {
  .nav-mobile {
    display: block;
  }
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-medium);
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition);
  gap: 0.75rem;
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
  background: var(--gold-pale);
  color: var(--gold-dark);
}


/* ============================================================
   Cart Sidebar
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(400px, 100vw);
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right var(--transition);
  box-shadow: var(--shadow-lg);
}

html[dir="rtl"] .cart-sidebar {
  right: auto;
  left: -100%;
  transition: left var(--transition);
}

.cart-sidebar.open {
  right: 0;
}

html[dir="rtl"] .cart-sidebar.open {
  left: 0;
  right: auto;
}

.cart-header {
  padding: 1.25rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
}

.cart-header h3 {
  font-size: 1.1rem;
  color: var(--brown);
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.cart-close:hover {
  background: var(--error-light);
  color: var(--error);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
  padding: 1rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-dark);
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-img .placeholder-img {
  width: 100%;
  height: 100%;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-variant {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--brown);
  transition: all var(--transition);
}

.qty-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.qty-value {
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}

.cart-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  flex-shrink: 0;
}

.cart-item-total {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.95rem;
}

.cart-item-remove {
  font-size: 0.75rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.cart-item-remove:hover { color: var(--error); }

.cart-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border-light);
  background: var(--cream);
}

.cart-delivery-msg {
  background: var(--success-light);
  color: var(--success);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-align: center;
}

.cart-delivery-msg.warning {
  background: var(--gold-pale);
  color: var(--gold-dark);
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.cart-summary-line.total {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  border-top: 1px solid var(--border-light);
  padding-top: 0.6rem;
  margin-top: 0.4rem;
}

.cart-summary-line .free {
  color: var(--success);
  font-weight: 600;
}

.btn-checkout {
  width: 100%;
  margin-top: 1rem;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-checkout:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(200, 150, 12, 0.4);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(200, 150, 12, 0.4);
}

.btn-secondary {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-secondary:hover {
  background: var(--gold-pale);
}

.btn-dark {
  background: var(--brown);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--brown-medium);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--brown);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

.btn-add-cart {
  background: var(--cream-dark);
  border: 2px solid var(--border);
  color: var(--brown);
  flex: 1;
}

.btn-add-cart:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--gold-dark);
}

.btn-buy-now {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--white);
  flex: 1;
  box-shadow: var(--shadow-gold);
}

.btn-buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(200, 150, 12, 0.4);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  min-height: calc(100vh - var(--header-height) - 44px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 50%, var(--amber-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .hero {
    min-height: calc((100vh - var(--header-height) - 44px) * 0.8);
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,150,12,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,160,32,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 25px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--brown);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: var(--font-heading);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-medium);
}


.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  max-width: 500px;
  display: none;
}

@media (min-width: 900px) {
  .hero-image { display: block; }
}

/* Floating honey drops decoration */
.honey-drops {
  position: absolute;
  pointer-events: none;
}

.honey-drop {
  position: absolute;
  width: 12px;
  height: 18px;
  background: rgba(200, 150, 12, 0.15);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: dropFloat 4s ease-in-out infinite;
}

@keyframes dropFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* ============================================================
   Free Shipping Banner (strip)
   ============================================================ */
.free-ship-strip {
  background: var(--brown);
  color: var(--amber-light);
  padding: 1.5rem 0;
  text-align: center;
  overflow: hidden;
}

.free-ship-strip .icon {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  display: block;
}

.free-ship-strip h3 {
  color: var(--gold-light);
  font-size: 1.2rem;
}

.free-ship-strip p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

/* Strip items — scroll triggered */
.strip-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.strip-item-1 { transition-delay: 0.05s; }
.strip-item-2 { transition-delay: 0.2s; }
.strip-item-3 { transition-delay: 0.35s; }
.strip-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.strip-emoji {
  display: inline-block;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s cubic-bezier(0.34,1.56,0.64,1), transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.strip-item-1 .strip-emoji { transition-delay: 0.2s; }
.strip-item-2 .strip-emoji { transition-delay: 0.35s; }
.strip-item-3 .strip-emoji { transition-delay: 0.5s; }
.strip-item.visible .strip-emoji {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   Scroll Reveal — universal system
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Product Cards
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (min-width: 900px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-img .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

html[dir="rtl"] .product-badge {
  right: auto;
  left: 0.75rem;
}

.badge-popular { background: var(--gold); color: var(--white); }
.badge-bestseller { background: var(--brown); color: var(--amber-light); }
.badge-new { background: #2ECC71; color: var(--white); }

.product-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.product-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.82rem;
  color: var(--text-medium);
  margin-bottom: 0.75rem;
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.product-price-main {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.product-price-from {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.btn-quick-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-medium);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  flex-shrink: 0;
}

.btn-quick-view:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ============================================================
   Why Tamentino (Features)
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  border: 2px solid var(--border);
}

.why-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.why-text {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 4rem;
  color: var(--gold-pale);
  font-family: var(--font-heading);
  line-height: 1;
}

html[dir="rtl"] .testimonial-card::before {
  right: auto;
  left: 1rem;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================================================
   Blog Cards
   ============================================================ */
/* Blog featured post (first article) */
.blog-featured {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  gap: 0;
}
.blog-featured-img {
  display: block;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  max-height: 220px;
}
.blog-featured-img img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  max-height: 220px;
  object-fit: cover;
  display: block;
}
.blog-featured-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 640px) {
  .blog-featured { flex-direction: row; align-items: stretch; }
  .blog-featured-img { width: 45%; max-width: 400px; max-height: none; }
  .blog-featured-img img { min-height: 260px; max-height: none; }
  .blog-featured-body { padding: 2rem; }
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-img .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.blog-category {
  background: var(--gold-pale);
  color: var(--gold-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.7rem;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap var(--transition);
}

.blog-read-more:hover { gap: 0.6rem; }

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  background: transparent;
  padding: 3rem 1rem;
  text-align: center;
}

.cta-content {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 50%, var(--amber-light) 100%);
  border-radius: 20px;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.cta-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8960C' fill-opacity='0.08'%3E%3Cpolygon points='20 0 40 13 40 27 20 40 0 27 0 13'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.cta-content > * { position: relative; z-index: 1; }

.cta-section h2 {
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-grid > .footer-brand {
  grid-column: 1 / -1;
}

.footer-contact-legal-pair {
  display: flex;
  gap: 1.5rem;
  grid-column: 1 / -1;
}
.footer-contact-legal-pair > div {
  flex: 1;
  min-width: 0;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-grid > .footer-brand {
    grid-column: auto;
  }
  .footer-contact-legal-pair {
    display: contents;
  }
}

.footer-brand .logo-name {
  color: var(--gold-light);
}

.footer-brand .logo-tagline {
  color: var(--amber-light);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.footer-contact-item .icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.1rem;
}

.footer-contact-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

html[dir="rtl"] .footer-contact-item {
  flex-direction: row-reverse;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   WhatsApp Button
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all var(--transition);
  text-decoration: none;
}

html[dir="rtl"] .whatsapp-btn {
  right: auto;
  left: 1.5rem;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn .tooltip {
  position: absolute;
  right: 110%;
  white-space: nowrap;
  background: var(--brown);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

html[dir="rtl"] .whatsapp-btn .tooltip {
  right: auto;
  left: 110%;
}

.whatsapp-btn:hover .tooltip {
  opacity: 1;
}

/* ============================================================
   Modal (Quick Buy)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
  padding: 0;
}

@media (min-width: 640px) {
  .modal-overlay {
    align-items: center;
    padding: 1rem;
  }
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 95vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

@media (min-width: 640px) {
  .modal {
    border-radius: var(--radius-xl);
    transform: translateY(20px) scale(0.95);
  }
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal-title h3 {
  font-size: 1.2rem;
  color: var(--brown);
}

.modal-title p {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-top: 0.2rem;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-medium);
  flex-shrink: 0;
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--error-light);
  color: var(--error);
}

.modal-body {
  padding: 0 1.5rem 1.5rem;
}

.modal-product-summary {
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.modal-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-summary-delivery {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.82rem;
}
.modal-summary-delivery-label { color: var(--text-medium); }
.modal-summary-delivery-price { font-weight: 700; color: var(--gold-dark); }
.modal-summary-delivery-price.free { color: var(--success); }
.modal-summary-discount {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
  padding-top: 0.25rem;
}
.modal-summary-total {
  padding-top: 0.5rem;
  border-top: 1.5px solid rgba(0,0,0,0.1);
  margin-top: 0.1rem;
  font-weight: 800;
  color: var(--brown);
  font-size: 1.15rem;
}

.modal-product-name {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.9rem;
}

.modal-product-variant {
  font-size: 0.8rem;
  color: var(--text-medium);
}

/* Quick Buy — FBT upsell */
.qb-fbt {
  background: var(--cream-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.qb-fbt-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-medium);
  margin-bottom: 0.25rem;
}
.qb-fbt-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  padding: 0.45rem 0.5rem;
  border-radius: var(--radius-md);
  transition: background 0.15s;
}
.qb-fbt-item:hover { background: rgba(200,150,12,0.07); }
.qb-fbt-check {
  width: 16px;
  height: 16px;
  accent-color: var(--gold-dark);
  flex-shrink: 0;
  cursor: pointer;
}
.qb-fbt-img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}
.qb-fbt-name {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.qb-fbt-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.modal-product-price {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.1rem;
}
.qb-fbt-tiers {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.qb-fbt-tier {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--text-muted);
  transition: all 0.2s;
  cursor: default;
}
.qb-fbt-tier.active {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}
.qb-fbt-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* ============================================================
   Forms
   ============================================================ */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.form-label .required {
  color: var(--error);
  margin-left: 0.2rem;
}

html[dir="rtl"] .form-label .required {
  margin-left: 0;
  margin-right: 0.2rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--text-dark);
  transition: all var(--transition);
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 150, 12, 0.15);
}

.form-input.error {
  border-color: var(--error);
}

.form-error {
  font-size: 0.78rem;
  color: var(--error);
  margin-top: 0.3rem;
}

.form-input::placeholder {
  color: var(--text-light);
}

.coupon-row {
  display: flex;
  gap: 0.5rem;
}

.coupon-row .form-input {
  flex: 1;
}

.coupon-msg {
  font-size: 0.8rem;
  margin-top: 0.3rem;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
}

.coupon-msg.success {
  background: var(--success-light);
  color: var(--success);
}

.coupon-msg.error {
  background: var(--error-light);
  color: var(--error);
}

/* ============================================================
   Shop / Collection Page
   ============================================================ */
.shop-header {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
  padding: 3rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.shop-controls {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-medium);
  transition: all var(--transition);
  cursor: pointer;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.sort-select {
  padding: 0.5rem 2rem 0.5rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 25px;
  background: var(--white);
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--text-medium);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B3A1A'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 14px;
}

html[dir="rtl"] .sort-select {
  padding: 0.5rem 0.9rem 0.5rem 2rem;
  background-position: left 0.75rem center;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  font-size: 0.85rem;
  pointer-events: none;
}

html[dir="rtl"] .search-icon {
  left: auto;
  right: 0.75rem;
}

.search-input {
  padding: 0.5rem 0.9rem 0.5rem 2.2rem;
  border: 1.5px solid var(--border);
  border-radius: 25px;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text-dark);
  outline: none;
  width: 200px;
  transition: border-color 0.2s, width 0.3s;
  font-family: inherit;
}

.search-input:focus {
  border-color: var(--gold);
  width: 240px;
}

html[dir="rtl"] .search-input {
  padding: 0.5rem 2.2rem 0.5rem 0.9rem;
}

.search-input::-webkit-search-cancel-button {
  cursor: pointer;
}

.results-count {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ============================================================
   Product Detail Page
   ============================================================ */
.product-detail {
  padding: 2rem 0 4rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb-sep {
  color: var(--border);
}

html[dir="rtl"] .breadcrumb {
  flex-direction: row-reverse;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .product-layout { grid-template-columns: 1fr 1fr; }
}

.product-images {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  align-self: start;
}

@media (max-width: 767px) {
  .product-images {
    position: static;
  }
}

.product-main-img {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cream-dark);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-main-img .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.product-info h1 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.product-ratings {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
}

.ratings-count {
  font-size: 0.85rem;
  color: var(--text-light);
}

.product-price-block {
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.product-price-current {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.product-price-original {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

html[dir="rtl"] .product-price-original {
  margin-left: 0;
  margin-right: 0.5rem;
}

.product-discount-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-left: 0.5rem;
}

html[dir="rtl"] .product-discount-badge {
  margin-left: 0;
  margin-right: 0.5rem;
}

.product-saving {
  font-size: 0.82rem;
  color: var(--success);
  margin-top: 0.3rem;
}

.variant-selector {
  margin-bottom: 1.5rem;
}

.variant-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.6rem;
}

.variant-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.variant-option {
  padding: 0.5rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: all var(--transition);
}

.variant-option:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.variant-option.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.variant-option .orig-price {
  font-size: 0.75rem;
  opacity: 0.7;
  text-decoration: line-through;
  margin-left: 0.3rem;
}

.variant-option .discount-pct {
  font-size: 0.7rem;
  background: rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 0.1rem 0.3rem;
  margin-left: 0.3rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.qty-selector-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
}

.qty-selector-controls {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.qty-selector-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brown);
  background: var(--cream);
  transition: all var(--transition);
}

.qty-selector-btn:hover {
  background: var(--gold-pale);
  color: var(--gold-dark);
}

.qty-selector-value {
  min-width: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 0.5rem;
}

.product-action-btns {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-features {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.product-features-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-medium);
}

.product-feature-item::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

html[dir="rtl"] .product-features {
  text-align: right;
}
html[dir="rtl"] .product-features-title {
  text-align: right;
}
html[dir="rtl"] .product-feature-item {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
html[dir="rtl"] .product-feature-item::before {
  margin-left: 0;
  margin-right: auto;
}

.product-trust-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-medium);
  background: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
}

/* ============================================================
   Tabs (Product detail description/reviews)
   ============================================================ */
.tabs {
  margin-top: 3rem;
}

.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--border-light);
  gap: 0;
  overflow-x: auto;
}

.tab-btn {
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-medium);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition);
}

.tab-btn:hover { color: var(--gold); }

.tab-btn.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

.tab-content {
  display: none;
  padding: 1.75rem 0;
}

.tab-content.active { display: block; }

.tab-content p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ============================================================
   Reviews
   ============================================================ */
.reviews-summary {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.reviews-avg {
  text-align: center;
  background: var(--gold-pale);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  min-width: 120px;
}

.reviews-avg-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: var(--font-heading);
}

.reviews-avg-stars {
  color: var(--gold);
  font-size: 1rem;
  margin: 0.2rem 0;
}

.reviews-avg-count {
  font-size: 0.78rem;
  color: var(--text-light);
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.review-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-light);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown);
}

.review-verified {
  font-size: 0.72rem;
  background: var(--success-light);
  color: var(--success);
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  margin-left: 0.5rem;
}

html[dir="rtl"] .review-verified {
  margin-left: 0;
  margin-right: 0.5rem;
}

.review-product-tag {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(200,150,12,0.1);
  border-radius: 20px;
  padding: 0.15rem 0.55rem;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-light);
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.review-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
}

.review-form-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 1.25rem;
}

.star-rating {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

html[dir="rtl"] .star-rating {
  flex-direction: row;
  justify-content: flex-start;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 1.5rem;
  color: var(--border);
  cursor: pointer;
  transition: color var(--transition);
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--gold);
}

/* ============================================================
   Checkout Page
   ============================================================ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .checkout-layout { grid-template-columns: 1.4fr 1fr; }
}

.checkout-form-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.checkout-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.order-summary {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  align-self: start;
}

.order-items {
  margin-bottom: 1.25rem;
}

.order-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.order-item:last-child { border-bottom: none; }

.order-item-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream-dark);
  flex-shrink: 0;
}

.order-item-img img { width: 100%; height: 100%; object-fit: cover; }

.order-item-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brown);
}

.order-item-variant {
  font-size: 0.78rem;
  color: var(--text-light);
}

.order-item-price {
  font-weight: 700;
  color: var(--gold-dark);
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.9rem;
}

html[dir="rtl"] .order-item-price {
  margin-left: 0;
  margin-right: auto;
}

.order-summary-lines {
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-medium);
  margin-bottom: 0.4rem;
}

.summary-line.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  border-top: 1px solid var(--border-light);
  padding-top: 0.5rem;
  margin-top: 0.4rem;
}

.summary-line .free { color: var(--success); font-weight: 600; }

/* ============================================================
   Thank You Page
   ============================================================ */
.thankyou-page {
  min-height: calc(100vh - var(--header-height) - 44px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
  padding: 3rem 0;
}

.thankyou-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--success-light) 0%, #C8E6C9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.thankyou-title {
  text-align: center;
  margin-bottom: 0.4rem;
}

.thankyou-subtitle {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.order-number-box {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.order-number-label {
  font-size: 0.8rem;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.order-number-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: monospace;
}

.thankyou-section {
  margin-bottom: 1.5rem;
}

.thankyou-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-light);
}

.thankyou-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.thankyou-info-item {
  display: flex;
  flex-direction: column;
}

.thankyou-info-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.thankyou-info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
}

.thankyou-contact-msg {
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  padding: 1rem;
  font-size: 0.88rem;
  color: var(--text-medium);
  text-align: center;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.thankyou-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ============================================================
   About Page
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-medium) 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}

.about-hero h1 { color: var(--gold-light); }
.about-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0.75rem auto 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.value-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown);
}

/* About page – scroll animations */
.about-fade {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.about-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.about-fade-delay-1 { transition-delay: 0.1s; }
.about-fade-delay-2 { transition-delay: 0.2s; }
.about-fade-delay-3 { transition-delay: 0.3s; }

/* About – video section */
.about-video-section {
  padding: 4rem 0;
  background: var(--cream);
}
.about-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 2rem auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--brown);
  aspect-ratio: 16 / 9;
}
.about-video-wrapper video,
.about-video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
.about-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  text-align: center;
  padding: 2rem;
  cursor: pointer;
}
.about-video-placeholder .play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.about-video-placeholder .play-btn:hover {
  transform: scale(1.08);
  background: var(--amber);
}
.about-video-placeholder .play-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 4px;
}

/* ============================================================
   Blog Page
   ============================================================ */
.blog-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
  padding: 3.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.blog-post-header {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
  padding: 3rem 0 2rem;
}

/* Category cards */
.cat-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 1 / 1;
  text-decoration: none;
}
.cat-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.cat-card:hover .cat-card-img img { transform: scale(1.07); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
  z-index: 1;
}
.cat-card-body {
  position: relative;
  z-index: 2;
  padding: 1.25rem 1.5rem;
  text-align: center;
  width: 100%;
}
.cat-card-body h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.cat-card-body span {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .cats-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .cat-card { aspect-ratio: 4 / 3; }
  .cat-card-body h3 { font-size: 1.25rem; }
}

.blog-post-img {
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .blog-post-img { height: 420px; }
}

.blog-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-content {
  max-width: 780px;
  margin: 0 auto;
}

.blog-post-content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
  color: var(--brown);
}

.blog-post-content p {
  margin-bottom: 1rem;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-medium);
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

html[dir="rtl"] .blog-post-content ul,
html[dir="rtl"] .blog-post-content ol {
  padding-left: 0;
  padding-right: 1.5rem;
}

.blog-post-content li {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.blog-post-content ul li {
  list-style: disc;
}

.blog-post-content ol li {
  list-style: decimal;
}

.blog-post-content strong {
  color: var(--brown);
  font-weight: 700;
}

.blog-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.blog-post-content th {
  background: var(--gold-pale);
  color: var(--brown);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--border);
}

html[dir="rtl"] .blog-post-content th {
  text-align: right;
}

.blog-post-content td {
  padding: 0.65rem 1rem;
  border: 1px solid var(--border-light);
  color: var(--text-medium);
}

.blog-post-content tr:nth-child(even) td {
  background: var(--cream);
}

/* ============================================================
   Page Header (reusable)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
  padding: 3rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

/* ============================================================
   Placeholder Images
   ============================================================ */
.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   Utilities
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-brown { color: var(--brown); }
.text-muted { color: var(--text-light); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.divider {
  height: 1px;
  background: var(--border-light);
  margin: 2rem 0;
}

.bg-cream { background: var(--cream); }
.bg-gold-pale { background: var(--gold-pale); }
.bg-brown { background: var(--brown); }

/* ============================================================
   Loading States
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, var(--cream-dark) 25%, var(--gold-pale) 50%, var(--cream-dark) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   Scroll to top
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-dark);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 899;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

html[dir="rtl"] .scroll-top {
  right: auto;
  left: 1.5rem;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ============================================================
   Notification Toast
   ============================================================ */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--brown);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 3000;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast.success { background: var(--success); }
.toast.error { background: var(--error); }

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   Responsive helpers
   ============================================================ */
@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
  .product-action-btns { flex-direction: column; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .thankyou-actions { flex-direction: column; }
  .thankyou-actions .btn { width: 100%; }

  /* Strip: show all 3 items compact on mobile */
  .free-ship-strip { padding: 0.6rem 0; }
  .strip-item { gap: 0.35rem !important; }
  .strip-emoji { font-size: 1.1rem !important; }
  .strip-title { font-size: 0.65rem !important; }
  .strip-text { font-size: 0.58rem !important; }
  .strip-sep { display: none !important; }
}

/* ============================================================
   Product card — centred text
   ============================================================ */
.product-card-body {
  text-align: center;
}

.product-card-footer {
  justify-content: center;
}

/* ============================================================
   Related products slider
   ============================================================ */
.related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.related-header h2 { margin: 0; }
.related-nav { display: flex; gap: 0.5rem; flex-shrink: 0; }
.related-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--border-light);
  background: var(--white); color: var(--brown);
  font-size: 1.5rem; font-weight: 300; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  padding: 0;
}
.related-nav-btn:hover { background: var(--gold-pale); border-color: var(--gold-dark); transform: scale(1.08); }
.related-nav-btn:disabled { opacity: 0.35; cursor: default; transform: none; }

.related-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.25rem;
}
.related-slider::-webkit-scrollbar { display: none; }
.related-slider .product-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  min-width: 220px;
  max-width: 220px;
}
@media (min-width: 640px) {
  .related-slider .product-card { min-width: 240px; max-width: 240px; }
}
@media (min-width: 1024px) {
  .related-slider .product-card { min-width: 260px; max-width: 260px; }
}

@media (min-width: 640px) {
  .hide-desktop { display: none !important; }
}

/* ============================================================
   Print Styles
   ============================================================ */
@media print {
  .header, .footer, .whatsapp-btn, .cart-overlay, .modal-overlay { display: none !important; }
  .thankyou-card { box-shadow: none; border: 1px solid #ccc; }
}

/* ============================================================
   Cart Progress Bar
   ============================================================ */
.cart-progress-wrap {
  margin-bottom: 1rem;
}
.cart-progress-bar {
  height: 6px;
  background: var(--gold);
  border-radius: 99px;
  transition: width 0.5s ease;
  position: relative;
}
.cart-progress-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-pale);
  border-radius: 99px;
  z-index: -1;
  width: 100%;
}
.cart-progress-bar.full { width: 100% !important; background: var(--success); }
.cart-progress-label {
  font-size: 0.78rem;
  color: var(--text-medium);
  margin-top: 0.4rem;
  text-align: center;
}
.cart-progress-label.success { color: var(--success); font-weight: 600; }

/* ============================================================
   Live Viewers Counter
   ============================================================ */
.live-viewers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-medium);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.live-dot {
  width: 8px; height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ============================================================
   Sticky Add to Cart Bar (mobile)
   ============================================================ */
.sticky-cart-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border-light);
  padding: 0.65rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 800;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cart-bar.visible { transform: translateY(0); }
.sticky-cart-row { display: flex; align-items: center; gap: 0.5rem; width: 100%; }
.sticky-cart-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.sticky-cart-price { font-size: 0.9rem; font-weight: 700; color: var(--gold-dark); flex-shrink: 0; }
.sticky-cart-select {
  flex: 0 0 auto;
  height: 2.4rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 0.5rem;
  font-size: 0.82rem;
  background: var(--cream);
  color: var(--brown);
  font-weight: 700;
  min-width: 5rem;
  max-width: 7rem;
}
.sticky-cart-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.sticky-qty-btn {
  width: 2rem; height: 2.4rem;
  background: var(--cream);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--brown);
  display: flex; align-items: center; justify-content: center;
}
.sticky-qty-btn:active { background: var(--border-light); }
.sticky-qty-val { width: 1.8rem; text-align: center; font-size: 0.85rem; font-weight: 700; color: var(--brown); }
.sticky-cart-btn {
  white-space: nowrap;
  flex-shrink: 0;
  flex: 1;
  height: 2.6rem;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .sticky-cart-bar { display: none !important; }
}

/* ============================================================
   WhatsApp Button — bigger on mobile
   ============================================================ */
@media (max-width: 767px) {
  .whatsapp-btn {
    width: 58px !important;
    height: 58px !important;
    bottom: 5rem !important;
    right: auto !important;
    left: 1rem !important;
  }
  .whatsapp-btn svg { width: 30px !important; height: 30px !important; }
  .whatsapp-btn .tooltip {
    right: auto !important;
    left: 110% !important;
  }
}

/* ============================================================
   Exit-Intent Popup
   ============================================================ */
.exit-intent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-intent-overlay.open { opacity: 1; pointer-events: all; }

.exit-intent-modal {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 420px;
  width: 100%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.exit-intent-overlay.open .exit-intent-modal { transform: scale(1); }

.exit-intent-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--border-light);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text-medium);
  display: flex; align-items: center; justify-content: center;
}
.exit-intent-close:hover { background: #ddd; }

.exit-intent-emoji { font-size: 3rem; margin-bottom: 0.75rem; }
.exit-intent-title { font-size: 1.5rem; font-weight: 800; color: var(--brown); margin-bottom: 0.5rem; }
.exit-intent-sub { color: var(--text-medium); font-size: 0.95rem; margin-bottom: 1.25rem; }

.exit-intent-offer {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  color: #fff;
}
.exit-intent-amount { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.exit-intent-offer-label { font-size: 0.85rem; opacity: 0.9; margin-top: 0.25rem; }

.exit-intent-code-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold-pale);
  border: 2px dashed var(--gold);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}
.exit-intent-code-label { font-size: 0.82rem; color: var(--text-medium); }
.exit-intent-code { font-size: 1.1rem; font-weight: 800; color: var(--brown); letter-spacing: 0.08em; }
.exit-intent-copy {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.exit-intent-copy:hover { background: var(--gold-dark); }

.exit-intent-cta { width: 100%; margin-bottom: 0.75rem; }
.exit-intent-small { font-size: 0.75rem; color: var(--text-light); margin: 0; }

/* ============================================================
   Quick View Modal
   ============================================================ */
.quick-view-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.quick-view-overlay.open { opacity: 1; pointer-events: all; }

.quick-view-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.quick-view-overlay.open .quick-view-modal { transform: translateY(0); }

.quick-view-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(0,0,0,0.08);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
}

.quick-view-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.quick-view-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
}
.quick-view-img img { width: 100%; height: 100%; object-fit: cover; }

.quick-view-info {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.quick-view-name { font-size: 1.3rem; font-weight: 700; color: var(--brown); margin: 0; }
.quick-view-desc { font-size: 0.88rem; color: var(--text-medium); line-height: 1.6; margin: 0; }
.quick-view-price { font-size: 1.5rem; font-weight: 800; color: var(--gold-dark); }
.quick-view-features { list-style: none; padding: 0; margin: 0; }
.quick-view-features li { font-size: 0.83rem; color: var(--text-medium); padding: 0.2rem 0; }
.quick-view-actions { display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto; }

@media (max-width: 600px) {
  .quick-view-body { grid-template-columns: 1fr; }
  .quick-view-img { border-radius: 16px 16px 0 0; aspect-ratio: 4/3; }
}

/* ============================================================
   How to Use Tab
   ============================================================ */
.how-to-use { max-width: 640px; }
.how-to-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.75rem;
}
.how-to-tips { list-style: none; padding: 0; margin: 0 0 0.5rem; }
.how-to-tip {
  padding: 0.45rem 0;
  color: var(--text-medium);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border-light);
}
.how-to-tip:last-child { border-bottom: none; }

.how-to-recipe {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.25rem;
  margin-top: 0.5rem;
}
.how-to-recipe-title { font-weight: 700; color: var(--brown); margin-bottom: 0.6rem; font-size: 0.95rem; }
.how-to-recipe-steps { padding-left: 1.2rem; margin: 0; }
.how-to-recipe-steps li { color: var(--text-medium); font-size: 0.88rem; padding: 0.25rem 0; }

[dir="rtl"] .how-to-recipe { border-left: none; border-right: 3px solid var(--gold); border-radius: 10px 0 0 10px; }
[dir="rtl"] .how-to-recipe-steps { padding-left: 0; padding-right: 1.2rem; }

/* ============================================================
   Frequently Bought Together
   ============================================================ */
.bundle-wrap {
  background: var(--gold-pale);
  border-radius: 16px;
  padding: 1.5rem;
}
.bundle-items {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.bundle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  min-width: 90px;
  max-width: 130px;
}
.bundle-item-img {
  width: 80px; height: 80px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--gold-light);
  background: #fff;
}
.bundle-item-img img { width: 100%; height: 100%; object-fit: cover; }
.bundle-item-name { font-size: 0.75rem; font-weight: 600; text-align: center; color: var(--text-dark); line-height: 1.3; }
.bundle-item-price { font-size: 0.8rem; color: var(--gold-dark); font-weight: 700; }
.bundle-plus { font-size: 1.5rem; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.bundle-cta { }
.bundle-price-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: nowrap; margin-top: 0.75rem; }
.bundle-total { display: flex; flex-direction: column; gap: 0.15rem; }
.bundle-total-orig { font-size: 0.85rem; color: var(--text-light); text-decoration: line-through; }
.bundle-price-inline { display: flex; align-items: center; gap: 0.5rem; }
.bundle-total-new { font-size: 1.3rem; font-weight: 800; color: var(--gold-dark); }
.bundle-save { font-size: 0.78rem; background: var(--success); color: #fff; padding: 0.15rem 0.5rem; border-radius: 99px; font-weight: 600; white-space: nowrap; }
.bundle-add-btn { white-space: nowrap; flex-shrink: 0; }

@media (max-width: 480px) {
  .bundle-items { justify-content: center; }
  .bundle-add-btn { font-size: 0.8rem; padding: 0.5rem 0.75rem; }
}

/* ============================================================
   Quiz (quiz.html + homepage inline quiz)
   ============================================================ */
.quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 2.5rem;
}
.quiz-progress-bar {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: var(--border-light);
  transition: background 0.3s;
}
.quiz-progress-bar.active { background: var(--gold-dark); }

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: quizFadeIn 0.3s ease; }
@keyframes quizFadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

.quiz-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.quiz-question-sub {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
@media (max-width: 480px) { .quiz-options { grid-template-columns: 1fr 1fr; } }

.quiz-option {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  background: var(--white);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
[dir="rtl"] .quiz-option { text-align: right; }
.quiz-option:hover { border-color: var(--gold-dark); background: var(--gold-pale); transform: translateY(-2px); }
.quiz-option.selected { border-color: var(--gold-dark); background: var(--gold-pale); }
.quiz-option-icon { font-size: 1.6rem; flex-shrink: 0; }
.quiz-option-label { font-weight: 600; font-size: 0.95rem; color: var(--brown); }
.quiz-option-sub { font-size: 0.78rem; color: var(--text-medium); margin-top: 0.15rem; }

.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.quiz-result { display: none; text-align: center; }
.quiz-result.active { display: block; animation: quizFadeIn 0.4s ease; }
.quiz-result-badge {
  display: inline-block;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 25px;
  padding: 0.4rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.quiz-result-product {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--gold-light);
  padding: 2rem;
  margin: 1.5rem 0 2rem;
  box-shadow: var(--shadow-md);
}
.quiz-result-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-light);
  margin: 0 auto 1rem;
  display: block;
}
.quiz-result-name { font-size: 1.3rem; font-weight: 700; color: var(--brown); margin-bottom: 0.4rem; }
.quiz-result-why { color: var(--text-medium); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.25rem; }
.quiz-secondary { margin-top: 1.5rem; }
.quiz-secondary-title { font-weight: 700; color: var(--brown); margin-bottom: 0.75rem; font-size: 0.95rem; }
.quiz-secondary-grid { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.quiz-secondary-item {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
  color: var(--brown);
  font-weight: 600;
  border: 1px solid var(--border-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.quiz-secondary-item:hover { border-color: var(--gold-dark); background: var(--gold-pale); }
.quiz-secondary-item img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.quiz-secondary-item-info { display: flex; flex-direction: column; }
.quiz-secondary-item-price { font-size: 0.75rem; color: var(--gold-dark); font-weight: 700; }

@media (max-width: 600px) {
  #homeQuizSection .container,
  #pdpQuizSection .container { padding: 1.25rem 1rem; }
  #homeQuizSection, #pdpQuizSection { padding: 1.5rem 0; }
  .quiz-question { font-size: 1rem; }
  .quiz-question-sub { font-size: 0.8rem; margin-bottom: 1.1rem; }
  .quiz-options { gap: 0.55rem; }
  .quiz-option { padding: 0.7rem 0.85rem; gap: 0.5rem; }
  .quiz-option-icon { font-size: 1.25rem; }
  .quiz-option-label { font-size: 0.85rem; }
  .quiz-option-sub { font-size: 0.72rem; }
  .quiz-progress { margin-bottom: 1.5rem; }
  .quiz-nav { margin-top: 1.25rem; }
  .quiz-result-product { padding: 1.25rem 1rem; }
  .quiz-result-img { width: 100px; height: 100px; }
  .quiz-result-name { font-size: 1.1rem; }
  .quiz-result-why { font-size: 0.85rem; }
}

/* ============================================================
   Bundle Promo Section (homepage)
   ============================================================ */
.bundle-promo-section {
  background: transparent;
  padding: 2rem 1rem;
}
.bundle-promo-section > .container {
  max-width: 900px;
}
.bundle-promo-inner {
  background: linear-gradient(135deg, var(--brown-medium) 0%, #5A2E0A 100%);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,150,12,0.2);
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  position: relative;
}
.bundle-promo-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='64'%3E%3Cpolygon points='28,2 52,16 52,48 28,62 4,48 4,16' fill='none' stroke='rgba(200,150,12,0.12)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 56px 64px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.bundle-promo-left { flex: 1; position: relative; z-index: 1; }
.bundle-promo-left .section-badge {
  background: rgba(200,150,12,0.25);
  border-color: rgba(200,150,12,0.4);
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: inline-block;
}
.bundle-promo-left h2 {
  color: var(--gold-light);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.bundle-promo-left p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.bundle-promo-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.bundle-promo-badge {
  background: rgba(200,150,12,0.2);
  border: 1px solid rgba(200,150,12,0.4);
  border-radius: 25px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  color: var(--gold-light);
}
.bundle-promo-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.bundle-promo-jars { display: flex; gap: 0.25rem; }
.bundle-jar {
  font-size: 3.8rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  animation: jarFloat 3s ease-in-out infinite;
}
.bundle-jar-1 { animation-delay: 0s; }
.bundle-jar-2 { animation-delay: 0.4s; font-size: 4.5rem; animation-name: jarFloatMid; }
.bundle-jar-3 { animation-delay: 0.8s; }
@keyframes jarFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes jarFloatMid {
  0%, 100% { transform: translateY(-8px); }
  50%       { transform: translateY(-18px); }
}
@media (max-width: 640px) {
  .bundle-promo-inner { flex-direction: column; gap: 1.5rem; text-align: center; padding: 1.75rem 1.25rem; }
  .bundle-promo-badges { justify-content: center; }
  .bundle-promo-left h2 { font-size: 1.4rem; }
  .bundle-jar { font-size: 2.8rem; }
  .bundle-jar-2 { font-size: 3.4rem; }
}

/* ============================================================
   Bundle Banner (product page)
   ============================================================ */
.bundle-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: linear-gradient(135deg, var(--brown-medium) 0%, #5A2E0A 100%);
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  margin: 2.5rem 0 0;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.bundle-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='64'%3E%3Cpolygon points='28,2 52,16 52,48 28,62 4,48 4,16' fill='none' stroke='rgba(200,150,12,0.12)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 56px 64px;
  pointer-events: none;
  z-index: 0;
}
.bundle-banner-left,
.bundle-banner > a {
  position: relative;
  z-index: 1;
}
.bundle-banner-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bundle-banner-icon { font-size: 2.2rem; flex-shrink: 0; }
.bundle-banner-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}
.bundle-banner-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
@media (max-width: 500px) {
  .bundle-banner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PWA Install Section
   ============================================================ */
#pwaInstallSection {
  display: none;
  background: transparent;
  padding: 1rem 1rem 2rem;
}

.pwa-install-inner::before {
  content: '🍯';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9rem;
  opacity: 0.06;
  pointer-events: none;
  line-height: 1;
}

.pwa-install-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 2.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 50%, var(--amber-light) 100%);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.pwa-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 260px;
}

.pwa-icon {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(200,150,12,0.3), 0 1px 4px rgba(62,28,0,0.1);
  border: 2px solid rgba(200,150,12,0.25);
}
.pwa-icon img { width: 100%; height: 100%; object-fit: cover; }

.pwa-text { flex: 1; }

.pwa-title {
  color: var(--brown);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.pwa-subtitle {
  color: var(--text-medium);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.pwa-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pwa-badge {
  background: rgba(200,150,12,0.14);
  border: 1px solid rgba(200,150,12,0.35);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
}

.pwa-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.pwa-install-btn {
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(200,150,12,0.35);
}

.pwa-ios-note {
  display: flex;
  align-items: center;
  background: rgba(200,150,12,0.1);
  border: 1px solid rgba(200,150,12,0.3);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  color: var(--text-medium);
  font-size: 0.82rem;
  max-width: 220px;
  text-align: center;
  line-height: 1.5;
}
.pwa-ios-note strong { color: var(--brown); }

/* ============================================================
   PDP — Guarantee Strip
   ============================================================ */
.pdp-guarantee-strip {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--brown-medium) 0%, #5A2E0A 100%);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.pdp-guarantee-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8960C' fill-opacity='0.07'%3E%3Cpolygon points='20 0 40 13 40 27 20 40 0 27 0 13'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.pdp-guarantee-header {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}
.pdp-guarantee-badge {
  display: inline-block;
  background: rgba(200,150,12,0.2);
  border: 1px solid rgba(200,150,12,0.35);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 1.1rem;
  border-radius: 99px;
  letter-spacing: 0.04em;
}
.pdp-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
}
.pdp-guarantee-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1rem;
}
.pdp-guarantee-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
.pdp-guarantee-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}
.pdp-guarantee-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
@media (max-width: 560px) {
  .pdp-guarantee-grid { grid-template-columns: 1fr; }
  .pdp-guarantee-strip { padding: 1.5rem 1.25rem; }
}

/* ============================================================
   PDP — Customer Love
   ============================================================ */
.pdp-customer-love {
  margin-top: 3rem;
}
.pdp-love-heading {
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 1.25rem;
  text-align: center;
}
.pdp-love-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pdp-love-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}
.pdp-love-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -0.25rem;
  left: 0.75rem;
  font-family: Georgia, serif;
  pointer-events: none;
}
.pdp-love-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
.pdp-love-text {
  font-size: 0.84rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}
.pdp-love-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pdp-love-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pdp-love-name { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); }
.pdp-love-verified { font-size: 0.72rem; color: var(--success); }
@media (max-width: 768px) {
  .pdp-love-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PDP — Final CTA Block
   ============================================================ */
.pdp-final-cta {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.pdp-final-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
}
.pdp-final-img-wrap {
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.pdp-final-img {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(62,28,0,0.15);
}
.pdp-final-info {
  padding: 2rem 2rem 2rem 1.75rem;
}
.pdp-final-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.pdp-final-name {
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.pdp-final-desc {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.pdp-final-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pdp-final-orig {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: line-through;
}
.pdp-final-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.25rem;
}
.pdp-final-sub {
  font-size: 0.82rem;
  color: var(--text-medium);
  margin-bottom: 1.25rem;
}
.pdp-final-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .pdp-final-inner { grid-template-columns: 1fr; }
  .pdp-final-img-wrap { padding: 1.25rem; }
  .pdp-final-img { max-width: 140px; }
  .pdp-final-info { padding: 1.5rem; }
}

/* ============================================================
   Frequently Bought Together — compact widget
   ============================================================ */
.fbt-widget {
  margin-top: 0.85rem;
  background: var(--cream-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
}
.fbt-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}
.fbt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.fbt-thumbs {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.fbt-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  max-width: 60px;
}
.fbt-name {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
}
.fbt-thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-light);
  background: #fff;
  flex-shrink: 0;
  position: relative;
}
.fbt-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fbt-thumb-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; background: var(--gold-pale);
}
.fbt-plus {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 16px;
}
.fbt-action {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.fbt-prices {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.2;
}
.fbt-price-tag { font-size: 0.68rem; font-weight: 700; color: var(--gold-dark); }
.fbt-discount-hints { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 0.5rem; }
.fbt-hint { font-size: 0.72rem; color: var(--text-light); transition: color 0.2s, font-weight 0.2s; }
.fbt-hint-active { color: var(--success); font-weight: 700; }
.fbt-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: 0.5rem; padding-top: 0.6rem; border-top: 1px solid var(--border-light); flex-wrap: wrap; }
.fbt-footer-price { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--text-medium); }
.fbt-price-new { font-size: 1.05rem; font-weight: 800; color: var(--gold-dark); }
.fbt-price-old { font-size: 0.78rem; color: var(--text-light); text-decoration: line-through; }
.fbt-save { font-size: 0.72rem; color: var(--success); font-weight: 700; }
.fbt-btn { font-size: 0.82rem; padding: 0.5rem 1rem; white-space: nowrap; }
@media (max-width: 400px) {
  .fbt-row { flex-direction: column; align-items: flex-start; }
  .fbt-action { width: 100%; justify-content: space-between; }
}

/* ============================================================
   Order Counter Section
   ============================================================ */
.order-counter-section {
  background: transparent;
  padding: 2rem 1rem;
  position: relative;
}

.order-counter-section > .container {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 50%, var(--amber-light) 100%);
  border-radius: 20px;
  padding: 2.25rem 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.order-counter-section > .container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8960C' fill-opacity='0.12'%3E%3Cpolygon points='20 0 40 13 40 27 20 40 0 27 0 13'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.order-counter-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.order-counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 2.75rem;
  text-align: center;
}
.order-counter-num {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--brown);
  font-family: var(--font-heading);
  line-height: 1;
  letter-spacing: -0.01em;
}
.order-counter-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(0,0,0,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.order-counter-divider {
  width: 1px;
  height: 52px;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .order-counter-item { padding: 0.75rem 1.5rem; }
  .order-counter-divider { height: 36px; }
}
@media (max-width: 380px) {
  .order-counter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; padding: 0 1rem; }
  .order-counter-divider { display: none; }
  .order-counter-item { border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius-md); padding: 1rem; }
}

/* ============================================================
   Before / After Section
   ============================================================ */
.before-after-section {
  padding: 4rem 0;
  background: var(--cream);
}
.ba-wrapper {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(62,28,0,0.14);
}
.ba-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-panel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.ba-panel-before {
  background: linear-gradient(160deg, #d6cfc6 0%, #b8a898 100%);
}
.ba-panel-after {
  background: linear-gradient(160deg, #f5d060 0%, #c88c0a 100%);
}
.ba-panel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
}
.ba-panel-before .ba-panel-placeholder {
  filter: grayscale(0.4) saturate(0.7);
}
.ba-panel-icon { font-size: 3.5rem; opacity: 0.5; }
.ba-panel-after .ba-panel-icon { opacity: 0.8; }
.ba-panel-caption {
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
  max-width: 180px;
}
.ba-panel-before .ba-panel-caption { color: rgba(62,28,0,0.5); }
.ba-panel-after .ba-panel-caption { color: rgba(62,28,0,0.8); }
.ba-panel img.ba-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.ba-panel img.ba-real-img.loaded { display: block; }
.ba-label {
  position: absolute;
  top: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 99px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.ba-divider {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.ba-divider::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
}
.ba-divider::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  line-height: 40px;
  text-align: center;
  color: var(--brown);
  font-weight: 700;
}
.ba-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  padding: 1.25rem 2rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-footer-text {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
}
.ba-footer-text strong { color: var(--brown); }
.ba-footer-cta {
  background: transparent !important;
  border: 2px solid rgba(255,255,255,0.85) !important;
  color: #fff !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  white-space: nowrap;
}
.ba-footer-cta:hover {
  background: rgba(255,255,255,0.15) !important;
}
@media (max-width: 560px) {
  .ba-panel { aspect-ratio: 1/1; }
  .ba-panel-icon { font-size: 2.5rem; }
  .ba-footer { padding: 1rem 1.25rem; }
}

/* ============================================================
   Instagram Feed Mock
   ============================================================ */
.insta-section {
  padding: 4rem 0;
  background: #fff;
}
.insta-handle-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.insta-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5d060, #c8960c, #8b3a00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--gold);
}
.insta-handle-info { line-height: 1.3; }
.insta-username { font-weight: 700; font-size: 0.95rem; color: var(--brown); }
.insta-followers { font-size: 0.78rem; color: var(--text-light); }
.insta-follow-btn {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 720px;
  margin: 0 auto 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.insta-post {
  aspect-ratio: 1/1;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.insta-post-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: transform 0.35s;
}
.insta-post:hover .insta-post-bg { transform: scale(1.06); }
.insta-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  transition: background 0.3s;
  flex-direction: column;
}
.insta-post:hover .insta-post-overlay { background: rgba(0,0,0,0.45); }
.insta-post-overlay span { opacity: 0; transition: opacity 0.3s; font-size: 1.2rem; }
.insta-post:hover .insta-post-overlay span { opacity: 1; }
.insta-cta-row { text-align: center; }
@media (max-width: 480px) {
  .insta-grid { gap: 3px; max-width: 100%; }
}

@media (max-width: 600px) {
  .pwa-install-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem 1.25rem;
    gap: 1.25rem;
  }
  .pwa-right {
    width: 100%;
    align-items: stretch;
  }
  .pwa-install-btn { justify-content: center; }
  .pwa-ios-note { max-width: 100%; justify-content: center; }
}

[dir="rtl"] .pwa-left { flex-direction: row-reverse; }
