:root {
  /* Light mode variables */
  --color-primary: #cc7722;
  --color-secondary: #ffa500;
  --color-text: #666;
  --color-text-tea:#666;
  --color-heading: #222;
  --color-bg: #f5f5f5;
  --color-buttons: rgb(238, 235, 235);
  --border: 0.1rem solid #aaa;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --text-shadow: 0 0.5rem 1rem rgb(0 0 0 / 70%);
  --background-image: url("/images/background5.webp");
  --nav-background: url("/images/navbackground.webp");
  --menu-items-color: #222;
  --preview-item-background: url("/images/background10.webp");
  --cart-pop: red;

  /* Dark mode variables */
  --color-primary-dark: #ffb86c;
  --color-secondary-dark: #ff79c6;
  --color-text-dark: #f8f8f2;
  --color-text-tea-dark:#2e2e2e;
  --color-heading-dark: #f8f8f2;
  --color-bg-dark: #282a36;
  --color-buttons-dark: #44475a;
  --border-dark: 0.1rem solid #444;
  --box-shadow-dark: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  --background-image-dark: url("/images/background-dark.webp");
  --nav-background-dark: url("/images/navbar-dark.webp");
  --menu-items-color-dark: #f8f8f2;
  --preview-item-background-dark: url("/images/background-dark.webp");
  --cart-pop-dark: #f8f8f2;
  
    --bg: #0b0c10;
--card: #111218;
--card-2: #151724;
--text: #eaeaf0;
--muted: #b6b6c6;
--accent: #7c5cff;
--radius: 18px;
--shadow: 0 6px 20px rgba(0,0,0,.25);
}

.dark-mode {
  --color-primary: var(--color-primary-dark);
  --color-secondary: var(--color-secondary-dark);
  --color-text: var(--color-text-dark);
  --color-heading: var(--color-heading-dark);
  --color-bg: var(--color-bg-dark);
  --color-buttons: var(--color-buttons-dark);
  --border: var(--border-dark);
  --box-shadow: var(--box-shadow-dark);
  --background-image: var(--background-image-dark);
  --nav-background: var(--nav-background-dark);
  --menu-items-color: var(--menu-items-color-dark);
  --preview-item-background: var(--background-image-dark);
  --cart-pop: var(--cart-pop-dark);
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: #FAF0E6;
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #5A7A5A 0%, #3E5C3E 100%);
  border-radius: 4px;
  border: 2px solid #FAF0E6;
}

html::-webkit-scrollbar-thumb:hover {
  background: #3E5C3E;
}

/* Typography */

::selection {
  background: var(--color-secondary);
  color: #fff;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-color: #5A7A5A #FAF0E6;
  scrollbar-width: thin;
}

body {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--color-text);
  line-height: 1.5;
  background-color: #FAF0E6;
}

h1,
h2,
h3 {
  color: var(--color-heading);
  margin-bottom: 1rem;
  line-height: 1;
}

h1 {
  font-size: 7rem;
}

h2 {
  font-size: 4rem;
}

h3 {
  font-size: 3rem;
}

p {
  margin-top: 0;
}

a {
  text-decoration: none;
}

del {
  color: var(--color-primary); /* Text color of the deleted text */
  position: relative;
  text-decoration: none; /* Remove the default strike-through */
}

/* Style for the strike-through line */
del::after {
  content: '';
  display: inline-block; /* Keep the pseudo-element inline */
  width: 100%;
  height: 2px; /* Thickness of the line */
  background-color: red; /* Color of the line */
  position: absolute;
  left: 0;
  bottom: 40%; /* Adjust to position the line correctly */
  border-radius: 5px; /* Makes the line rounded */
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3); /* Adds a subtle shadow to the line */
}

.pink {
  color: var(--color-primary);
}

.shadow {
  text-shadow: var(--text-shadow);
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 3rem;
  }
}

/* ══ Navbar ════════════════════════════════════════════════ */

/* Fixed header wraps announcement bar + navbar so they stack naturally */
header.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.4rem;
  height: 7rem;
  background: rgba(250, 240, 230, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  box-shadow: 0 2px 18px rgba(62, 42, 20, 0.07);
  position: static;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* Gradient bottom border */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(90, 122, 90, 0.35) 20%,
    #5A7A5A 50%,
    rgba(90, 122, 90, 0.35) 80%,
    transparent 100%
  );
  pointer-events: none;
}

/* Denser state once user scrolls down */
.navbar--scrolled {
  background: rgba(250, 240, 230, 0.97);
  box-shadow: 0 4px 28px rgba(62, 42, 20, 0.14);
}

/* Brand */
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #3E2C1C;
  flex-shrink: 0;
  z-index: 10;
}

.navbar__brand-icon {
  color: #5A7A5A;
  font-size: 2.4rem;
  transition: transform 0.5s ease;
}
.navbar__brand:hover .navbar__brand-icon {
  transform: rotate(20deg) scale(1.15);
}

.navbar__brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

/* Desktop nav list — hidden on mobile */
.navbar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  align-items: center;
  gap: 3.5rem;
}

.navbar__list li a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #5C4A32;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.4rem;
  transition: color 0.2s;
}

.navbar__list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #5A7A5A;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.navbar__list li a:hover { color: #5A7A5A; }
.navbar__list li a:hover::after { width: 100%; }

/* Icons group */
.navbar__icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Shared icon button */
.navbar__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: rgba(90, 122, 90, 0.1);
  border: 1.5px solid rgba(90, 122, 90, 0.22);
  color: #5A7A5A;
  font-size: 1.8rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.2s;
}
.navbar__icon-btn:hover {
  background: #5A7A5A;
  color: #FAF0E6;
  border-color: #5A7A5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(90, 122, 90, 0.3);
}

/* Guest account icon — muted, dashed border = "not signed in" */
#account-link {
  color: rgba(90, 122, 90, 0.55);
  border-style: dashed;
  border-color: rgba(90, 122, 90, 0.35);
  background: transparent;
}
#account-link:hover {
  background: #5A7A5A;
  border-style: solid;
  border-color: #5A7A5A;
  color: #FAF0E6;
}

/* Logged-in user icon — solid filled = "active account" */
.navbar__icon-btn--user {
  background: rgba(90, 122, 90, 0.22);
  border-color: rgba(90, 122, 90, 0.55);
  border-style: solid;
  color: #3E6B3E;
}

/* Cart badge */
.cart-pop {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  background: #c0392b;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  min-width: 1.9rem;
  height: 1.9rem;
  border-radius: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 0.3rem;
  line-height: 1;
  border: 2px solid #FAF0E6;
}
.cart-pop-active { display: flex; }

/* Animated hamburger button */
.menu-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  width: 4.4rem;
  height: 4.4rem;
  background: rgba(90, 122, 90, 0.1);
  border: 1.5px solid rgba(90, 122, 90, 0.22);
  border-radius: 12px;
  cursor: pointer;
  padding: 1rem;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  position: relative;
}
.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: #5A7A5A;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.menu-button.open {
  background: #5A7A5A;
  border-color: #5A7A5A;
}
.menu-button.open span { background: #FAF0E6; }
.menu-button.open span:nth-child(1) {
  position: absolute;
  top: calc(50% - 1px);
  left: 1rem; right: 1rem;
  width: auto;
  transform: rotate(45deg);
}
.menu-button.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-button.open span:nth-child(3) {
  position: absolute;
  top: calc(50% - 1px);
  left: 1rem; right: 1rem;
  width: auto;
  transform: rotate(-45deg);
}

/* Mobile dropdown */
.navbar__mobile {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(250, 240, 230, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 2px solid rgba(90, 122, 90, 0.15);
  box-shadow: 0 8px 28px rgba(62, 42, 20, 0.13);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}
.navbar__mobile.open { max-height: 70vh; }

.navbar__mobile ul {
  list-style: none;
  margin: 0;
  padding: 0.8rem 0 1.2rem;
}
.navbar__mobile ul li a {
  display: block;
  padding: 1.1rem 2.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #5C4A32;
  text-decoration: none;
  border-bottom: 1px solid rgba(90, 122, 90, 0.08);
  transition: background 0.2s, color 0.2s, padding-left 0.25s;
}
.navbar__mobile ul li a:hover {
  background: rgba(90, 122, 90, 0.07);
  color: #5A7A5A;
  padding-left: 3.6rem;
}
.navbar__mobile ul li:last-child a { border-bottom: none; }

/* ── Responsive breakpoints ── */

/* Small mobile: shrink brand text + icons so they don't crowd */
@media (max-width: 480px) {
  .navbar { padding: 0 1.4rem; }
  .navbar__brand-text { font-size: 1.55rem; }
  .navbar__brand-icon { font-size: 2rem; }
  .navbar__icons { gap: 0.55rem; }
  .navbar__icon-btn,
  .menu-button {
    width: 3.8rem;
    height: 3.8rem;
    font-size: 1.55rem;
  }
  .menu-button { gap: 0.45rem; }
}

/* Tablet and up: bigger padding */
@media (min-width: 768px) {
  .navbar { padding: 0 4rem; }
}

/* Desktop: show list, hide hamburger & mobile menu */
@media (min-width: 1024px) {
  .navbar {
    padding: 0 6rem;
    height: 7.5rem;
  }
  .navbar__list { display: flex; }
  .menu-button { display: none; }
  .navbar__mobile { display: none !important; }
  .navbar__brand-text { font-size: 2.2rem; }
  .navbar__list li a { font-size: 1.7rem; }
}

/* Home - Swiper */

@keyframes fadeIn {
  0% {
    transform: translateY(-4rem) scale(0);
    opacity: 0;
  }
}

/* ── Homepage "alive" keyframes ─────────────────────────── */

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(28px, -20px) scale(1.05); }
  66%       { transform: translate(-18px, 14px) scale(0.96); }
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 6px 24px rgba(90,122,90,0.40); }
  50%       { box-shadow: 0 8px 48px rgba(90,122,90,0.72), 0 0 80px rgba(90,122,90,0.22); }
}

@keyframes shimmerSweep {
  /* -100% → 100% = exactly one 200%-wide gradient period → no visible reset */
  from { background-position: -100% center; }
  to   { background-position:  100% center; }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ══ Hero ══════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("/images/background5.webp") center/cover no-repeat;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    160deg,
    rgba(30, 20, 10, 0.62) 0%,
    rgba(62, 44, 28, 0.45) 60%,
    rgba(20, 40, 30, 0.55) 100%
  );
}

/* ── Floating orbs layer ── */
.hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* no overflow:hidden — hero itself already clips; keeping it here cuts the orbs too early */
}
.hero__orbs::before {
  content: '';
  position: absolute;
  width: 70rem; height: 70rem;
  border-radius: 50%;
  /* boosted opacity so the glow is visible through the dark overlay */
  background: radial-gradient(circle, rgba(146,180,200,0.48) 0%, rgba(146,180,200,0.12) 45%, transparent 70%);
  top: -16rem; right: -12rem;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero__orbs::after {
  content: '';
  position: absolute;
  width: 56rem; height: 56rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,122,90,0.42) 0%, rgba(90,122,90,0.10) 45%, transparent 70%);
  bottom: -10rem; left: -10rem;
  animation: orbFloat 11s ease-in-out infinite;
  animation-delay: -5.5s;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 76rem;
  padding: 0 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: fadeIn 0.9s ease-out both;
}

.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  /* Symmetric gradient: same color at 0% and 100% so -100%→100% loops perfectly */
  background: linear-gradient(
    90deg,
    rgba(146,180,200,0.70) 0%,
    rgba(146,180,200,0.70) 15%,
    #FAF0E6 50%,
    rgba(146,180,200,0.70) 85%,
    rgba(146,180,200,0.70) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerSweep 4s linear infinite;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 700;
  color: #FAF0E6;
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.hero__sub {
  font-size: 1.8rem;
  color: rgba(250, 240, 230, 0.85);
  line-height: 1.65;
  max-width: 52rem;
  margin: 0;
}

.hero__cta {
  display: inline-block;
  background: #5A7A5A;
  color: #FAF0E6;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  padding: 1.4rem 4rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.2s;
  margin-top: 0.5rem;
  animation: ctaGlow 3.2s ease-in-out infinite;
}
.hero__cta:hover {
  background: #3E5C3E;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(90,122,90,0.5);
}

/* ── Product of Month hero button ─────────────────────────── */
@keyframes pomBubbleFloat {
  0%   { transform: translateY(0px)    scale(1);    }
  50%  { transform: translateY(-14px)  scale(1.03); }
  100% { transform: translateY(0px)    scale(1);    }
}

@keyframes pomBubbleGlow {
  0%, 100% { box-shadow: 0 6px 28px rgba(139,115,85,0.45), 0 0 0 0 rgba(139,115,85,0.25); }
  50%       { box-shadow: 0 12px 40px rgba(139,115,85,0.65), 0 0 0 8px rgba(139,115,85,0);  }
}

.pom-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, #a08060 0%, #8b7355 50%, #6b5440 100%);
  color: #FAF0E6;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 600;
  padding: 1.1rem 3.2rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.03em;
  border: 1.5px solid rgba(250,240,230,0.25);
  margin-top: 2.5rem;
  animation: pomBubbleFloat 3.2s ease-in-out infinite,
             pomBubbleGlow  3.2s ease-in-out infinite;
  transition: filter 0.2s;
}

.pom-hero-btn:hover {
  filter: brightness(1.12);
  text-decoration: none;
  color: #FAF0E6;
}

.pom-hero-btn__icon {
  font-size: 1.4rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .pom-hero-btn {
    font-size: 1.35rem;
    padding: 1rem 2.4rem;
    gap: 0.5rem;
  }
  .pom-hero-btn__icon { font-size: 1.2rem; }
}

/* Hero social sidebar */
.hero__social {
  position: absolute;
  left: 3.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  z-index: 3;
}

.hero__social::before,
.hero__social::after {
  content: '';
  width: 1px;
  height: 5rem;
  background: rgba(250, 240, 230, 0.3);
}

.hero__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(250, 240, 230, 0.12);
  border: 1px solid rgba(250, 240, 230, 0.28);
  color: #FAF0E6;
  font-size: 1.55rem;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}

.hero__social-link:hover {
  background: rgba(250, 240, 230, 0.28);
  border-color: rgba(250, 240, 230, 0.6);
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero__content { gap: 1.2rem; }
  .hero__headline { font-size: 3.8rem; }
  .hero__sub { font-size: 1.6rem; }
  .hero__cta { font-size: 1.5rem; padding: 1.2rem 3rem; }
  .pom-hero-btn { margin-top: 0.6rem; }

  /* On mobile move social icons to bottom center */
  .hero__social {
    top: auto;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 1.4rem;
  }
  .hero__social::before,
  .hero__social::after { display: none; }
  .hero__social-link:hover { transform: translateY(-3px); }
}

/* ══ Trust Bar ═════════════════════════════════════════════ */

.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(90deg, rgba(146,180,200,0.12) 0%, rgba(250,240,230,1) 40%, rgba(250,240,230,1) 60%, rgba(146,180,200,0.12) 100%);
  border-top: 1px solid rgba(90,122,90,0.12);
  border-bottom: 1px solid rgba(90,122,90,0.12);
  padding: 1.6rem 2rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 2.8rem;
  font-size: 1.45rem;
  color: #5C4A32;
  font-family: 'Playfair Display', serif;
  border-right: 1px solid rgba(90,122,90,0.15);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__item i {
  color: #92B4C8;
  font-size: 1.8rem;
  display: inline-block;
  animation: iconFloat 2.8s ease-in-out infinite;
}
.trust-bar__item:nth-child(2) i { animation-delay: -0.7s; }
.trust-bar__item:nth-child(3) i { animation-delay: -1.4s; }
.trust-bar__item:nth-child(4) i { animation-delay: -2.1s; }

@media (max-width: 640px) {
  .trust-bar__item {
    border-right: none;
    padding: 0.5rem 1.4rem;
    font-size: 1.3rem;
  }
}

/* ══ Section header (shared) ═══════════════════════════════ */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  color: #3E2C1C;
  margin: 0 0 0.8rem;
}
.section-header p {
  font-size: 1.6rem;
  color: #7A6A58;
  margin: 0;
}
.section-label {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #92B4C8;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* ══ Categories Section ════════════════════════════════════ */

.categories-section {
  padding: 7rem 4rem;
  background: #FAF0E6;
  border-top: 1px solid rgba(90,122,90,0.1);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  padding: 2.4rem 1.4rem 2rem;
  background: #fff;
  border: 1.5px solid rgba(90,122,90,0.12);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
  box-shadow: 0 2px 12px rgba(62,44,28,0.06);
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(62,44,28,0.12);
  border-color: rgba(90,122,90,0.35);
}
.cat-card__emoji {
  font-size: 3rem;
  line-height: 1;
}
.cat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #3E2C1C;
  margin: 0;
}
.cat-card p {
  font-size: 1.25rem;
  color: #7A6A58;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-section { padding: 5rem 2rem; }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .categories-section { padding: 4rem 1.4rem; }
  .section-header h2 { font-size: 2.8rem; }
}

/* ══ Brand Story (About) ═══════════════════════════════════ */

.brand-story {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5rem;
  padding: 7rem 8rem;
  background: #fff;
  border-top: 1px solid rgba(90,122,90,0.1);
}
.brand-story__img {
  flex: 0 0 38rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(62,44,28,0.14);
}
.brand-story__img img {
  width: 100%;
  height: 46rem;
  object-fit: cover;
  display: block;
}
.brand-story__copy {
  flex: 1 1 32rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.brand-story__copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  color: #3E2C1C;
  line-height: 1.25;
  margin: 0;
}
.brand-story__copy p {
  font-size: 1.65rem;
  color: #5C4A32;
  line-height: 1.7;
  margin: 0;
}
.brand-story__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #5A7A5A;
  font-size: 1.55rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(90,122,90,0.3);
  padding-bottom: 0.2rem;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}
.brand-story__link:hover { color: #3E5C3E; border-color: #3E5C3E; }

@media (max-width: 900px) {
  .brand-story { padding: 5rem 3rem; gap: 3rem; }
  .brand-story__img { flex: none; width: 100%; }
  .brand-story__img img { height: 28rem; }
}
@media (max-width: 560px) {
  .brand-story { padding: 4rem 1.6rem; }
  .brand-story__img img { height: auto; object-fit: contain; }
  .brand-story__copy h2 { font-size: 2.6rem; }
}

/* ══ Values Strip ══════════════════════════════════════════ */

.values-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, rgba(146,180,200,0.18) 0%, rgba(239,227,212,0.6) 50%, rgba(146,180,200,0.18) 100%);
  border-top: 1px solid rgba(146,180,200,0.3);
  border-bottom: 1px solid rgba(146,180,200,0.3);
  padding: 5rem 4rem;
}
.value-card {
  flex: 1 1 22rem;
  max-width: 30rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  padding: 0 3rem;
  border-right: 1px solid rgba(146,180,200,0.35);
}
.value-card:last-child { border-right: none; }
.value-card__icon {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(146,180,200,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(146,180,200,0.45);
  padding: 1.2rem;
}
.value-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #3E2C1C;
  margin: 0;
}
.value-card p {
  font-size: 1.45rem;
  color: #7A6A58;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .values-strip {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.5rem 1.2rem;
  }
  .value-card { border-right: none; padding: 0; }
}

/* ══ Landing Reviews ═══════════════════════════════════════ */

.landing-reviews {
  padding: 7rem 4rem;
  background: #FAF0E6;
  border-top: 1px solid rgba(90,122,90,0.1);
}

/* Aggregate score bar */
.landing-reviews__aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.aggregate-stars { color: #f0a500; font-size: 2.2rem; letter-spacing: 3px; }
.aggregate-score {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #3E2C1C;
}
.aggregate-count { font-size: 1.4rem; color: #7A6A58; }
.aggregate-google-logo { height: 2rem; opacity: 0.75; }

/* Carousel wrapper — arrows sit outside the grid */
.reviews-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
}

/* Desktop: 3-column grid */
.landing-reviews__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

/* Cards */
.landing-review-card {
  background: #fff;
  border: 1.5px solid rgba(90,122,90,0.12);
  border-radius: 16px;
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 14px rgba(62,44,28,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.landing-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(62,44,28,0.1);
}
.landing-review-card__stars { color: #f0a500; font-size: 1.8rem; letter-spacing: 2px; }
.landing-review-card__comment {
  font-size: 1.5rem;
  color: #5C4A32;
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}
.landing-review-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  border-top: 1px solid rgba(90,122,90,0.1);
  padding-top: 0.8rem;
  margin-top: auto;
}
.landing-review-card__author { font-weight: 600; color: #5C4A32; }
.landing-review-card__date { font-size: 1.2rem; color: #aaa; }

.landing-reviews__loading,
.landing-reviews__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #7A6A58;
  font-size: 1.6rem;
  padding: 3rem 0;
}

/* Carousel arrow buttons — hidden on desktop */
.carousel-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(90,122,90,0.25);
  color: #5A7A5A;
  font-size: 2.8rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(62,44,28,0.08);
}
.carousel-btn:hover { background: #5A7A5A; color: #FAF0E6; }

/* Dots — hidden on desktop */
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2rem;
}
.carousel-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(90,122,90,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: #5A7A5A;
  transform: scale(1.3);
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
  .landing-reviews { padding: 5rem 2rem; }
  .landing-reviews__grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
}

/* Mobile: carousel */
@media (max-width: 600px) {
  .landing-reviews { padding: 4rem 0; }

  .reviews-carousel-wrapper { gap: 0; }

  .carousel-btn { display: flex; }

  .landing-reviews__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1.4rem;
    padding: 1rem 1.6rem 1.6rem;
  }
  .landing-reviews__grid::-webkit-scrollbar { display: none; }

  .landing-review-card {
    flex: 0 0 82vw;
    scroll-snap-align: start;
    max-width: 82vw;
  }

  .carousel-dots { display: flex; }
}

/* ══ Newsletter Band ═══════════════════════════════════════ */

.newsletter-band {
  background: linear-gradient(120deg, #3E5C3E 0%, #5A7A5A 50%, rgba(146,180,200,0.8) 100%);
  padding: 5rem 4rem;
}
.newsletter-band__content {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.8rem;
  flex-wrap: wrap;
}
.newsletter-band__icon {
  font-size: 4rem;
  color: rgba(250,240,230,0.7);
  flex-shrink: 0;
}
.newsletter-band__content div {
  flex: 1 1 28rem;
}
.newsletter-band__content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #FAF0E6;
  margin: 0 0 0.5rem;
}
.newsletter-band__content p {
  font-size: 1.5rem;
  color: rgba(250,240,230,0.8);
  margin: 0;
}
.newsletter-band__btn {
  flex-shrink: 0;
  background: #FAF0E6;
  color: #3E5C3E;
  border: none;
  border-radius: 50px;
  padding: 1.2rem 3.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.newsletter-band__btn:hover {
  background: #EFE3D4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

@media (max-width: 640px) {
  .newsletter-band { padding: 4rem 2rem; }
  .newsletter-band__content { gap: 2rem; justify-content: center; text-align: center; }
  .newsletter-band__icon { display: none; }
  .newsletter-band__btn { align-self: center; }
}

/* ── Site Footer ──────────────────────────────────────────────────── */

.site-footer {
  background: linear-gradient(160deg, #2A3E2A 0%, #3E5C3E 55%, #4A6857 100%);
  color: rgba(250,240,230,0.8);
  padding: 5rem 5rem 3rem;
}

/* Brand + tagline */
.footer__top {
  text-align: center;
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(250,240,230,0.12);
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #FAF0E6;
  margin-bottom: 0.8rem;
}

.footer__brand-icon {
  font-size: 2.6rem;
  color: rgba(146,180,200,0.9);
}

.footer__tagline {
  font-size: 1.7rem;
  color: rgba(250,240,230,0.5);
  margin: 0;
  font-style: italic;
  letter-spacing: 0.04em;
}

/* Contact info grid */
.footer__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

.footer__info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  padding: 2.4rem;
  background: rgba(250,240,230,0.06);
  border: 1px solid rgba(250,240,230,0.1);
  border-radius: 14px;
  transition: background 0.22s;
}

.footer__info-card:hover {
  background: rgba(250,240,230,0.11);
}

.footer__info-card > i {
  font-size: 2.6rem;
  color: rgba(146,180,200,0.9);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.footer__info-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FAF0E6;
  margin: 0 0 0.5rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer__info-value {
  font-size: 1.8rem;
  color: rgba(250,240,230,0.7);
  margin: 0;
  line-height: 1.5;
}

/* Social icons */
.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  background: rgba(250,240,230,0.08);
  border: 1px solid rgba(250,240,230,0.18);
  color: #FAF0E6;
  font-size: 2rem;
  text-decoration: none;
  transition: background 0.22s, transform 0.22s, border-color 0.22s;
}

.footer__social-link:hover {
  background: rgba(146,180,200,0.28);
  border-color: rgba(146,180,200,0.5);
  transform: translateY(-3px);
  color: #fff;
}

/* NETOPIA logo */
.footer__netopia {
  display: flex;
  justify-content: center;
  padding: 1.6rem 0 0.8rem;
}

/* Policy links bar */
.footer__policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 1.2rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(250,240,230,0.1);
}

.footer__policy-links a {
  font-size: 1.4rem;
  color: rgba(146,180,200,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__policy-links a:hover { color: rgba(146,180,200,1); }

.footer__policy-links span {
  color: rgba(250,240,230,0.2);
  font-size: 1.4rem;
}

/* ANPC badges */
.footer__anpc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 0;
}

.footer__anpc img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer__anpc img:hover { opacity: 1; }

/* Credits bar */
.footer__credit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem 2rem;
  border-top: 1px solid rgba(250,240,230,0.1);
  padding-top: 2rem;
}

.footer__credit p {
  font-size: 1.5rem;
  color: rgba(250,240,230,0.42);
  margin: 0;
}

.footer__credit strong {
  color: rgba(250,240,230,0.6);
  font-weight: 600;
}

.footer__credit a {
  font-size: 1.5rem;
  color: rgba(146,180,200,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__credit a:hover { color: rgba(146,180,200,1); }

/* Responsive */
@media (max-width: 900px) {
  .footer__info { grid-template-columns: repeat(2, 1fr); }
  .site-footer { padding: 4.5rem 3rem 2.5rem; }
}

@media (max-width: 540px) {
  .site-footer { padding: 4rem 1.8rem 2.5rem; }
  .footer__info { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer__info-card { padding: 1.6rem; gap: 1.4rem; }
  .footer__info-card > i { font-size: 2rem; }
  .footer__info-label { font-size: 1.3rem; }
  .footer__info-value { font-size: 1.6rem; }
  .footer__brand { font-size: 2.2rem; }
  .footer__tagline { font-size: 1.5rem; }
  .footer__credit { flex-direction: column; gap: 0.5rem; text-align: center; }
}


/* Menu-card component */
.card__container {
  display: flex;
  flex-direction: column;
  background: #FFFDF8;
  border-radius: 20px;
  border: 1px solid rgba(90, 122, 90, 0.15);
  box-shadow: 0 4px 18px rgba(62, 92, 62, 0.09);
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card__container:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 36px rgba(62, 92, 62, 0.18);
  border-color: rgba(90, 122, 90, 0.35);
}

/* Image area */
.card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 20px 20px 0 0;
  background: #f0f5f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__image img {
  max-width: 92%;
  max-height: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
  display: block;
}

.card__container:hover .card__image img {
  transform: scale(1.06);
}

/* Content area */
.card__text {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.6rem 1.6rem;
  flex: 1;
  gap: 0.5rem;
}

.card__title h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #3D2B1F;
  margin: 0;
  line-height: 1.3;
}

.card__description {
  flex: 1;
}

.card__description p {
  font-size: 1.35rem;
  color: #8B7355;
  margin: 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__description.desc--expanded p {
  display: block;
  overflow: visible;
}

.card__desc-toggle {
  background: none;
  border: none;
  color: #8B7355;
  font-size: 1.2rem;
  font-family: inherit;
  cursor: pointer;
  padding: 4px 0 0;
  text-decoration: underline dotted;
  text-underline-offset: 3px;
  line-height: 1;
  display: block;
  margin-top: 2px;
}

.card__desc-toggle:hover {
  background: none;
  color: #5A7A5A;
}

.card__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card__rating-stars {
  color: #f0a500;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  line-height: 1;
}

.card__rating-count {
  font-size: 1.1rem;
  color: #aaa;
  font-weight: 400;
}

.card__price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.card__price p {
  font-size: 2rem;
  font-weight: 700;
  color: #5A7A5A;
  margin: 0;
}

.card__price .old-price {
  font-size: 1.6rem;
  color: #b44;
  text-decoration: line-through;
  opacity: 0.75;
  font-weight: 400;
}

.card__price .new-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #5A7A5A;
}

/* Favourite button */
.card__favourite {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ccc;
  transition: all 0.22s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  z-index: 4;
  backdrop-filter: blur(4px);
}

.card__favourite:hover {
  background: #fff;
  color: #e05252;
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(224, 82, 82, 0.25);
}

.card__favourite.active {
  color: #e05252;
  background: #fff;
}

@keyframes heartPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.card__favourite.pop i {
  animation: heartPop 0.28s ease forwards;
}

/* Ribbon badges */
.ribbon_new,
.ribbon_tea,
.ribbon_pom {
  position: absolute;
  top: 14px;
  right: 0;
  z-index: 3;
  padding: 8px 16px 8px 22px;
  border-radius: 28px 0 0 28px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.18);
}

.ribbon_new {
  background: linear-gradient(135deg, #b03a2e 0%, #e05c3a 100%);
}

.ribbon_tea {
  background: linear-gradient(135deg, #2d6a4f 0%, #52b788 100%);
}

.ribbon_pom {
  background: linear-gradient(135deg, #8b7355 0%, #6b5440 100%);
}

.badge-best-seller {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 3;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.4);
  pointer-events: none;
  line-height: 1;
}

/* ── Product of the Month ─────────────────────────────────── */
.pom-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5ede0 0%, #efe3d4 100%);
  text-align: center;
}

.pom-section .section-header h2 { color: #5a3e2b; }
.pom-section .section-header p  { color: #8b7355; }

.pom-card-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.pom-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(139, 115, 85, 0.22);
  padding: 2rem 2.5rem;
  max-width: 700px;
  width: 100%;
  position: relative;
  text-align: left;
}

.pom-badge-big {
  position: absolute;
  top: -18px;
  left: -18px;
  background: linear-gradient(135deg, #8b7355, #6b5440);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(139, 115, 85, 0.45);
  z-index: 2;
  letter-spacing: -0.5px;
}

.pom-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
  background: #f5ede0;
}

.pom-details { flex: 1; }

.pom-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: #3D2B1F;
  margin: 0 0 0.8rem;
}

.pom-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.pom-old-price {
  font-size: 1.05rem;
  color: #bbb;
  text-decoration: line-through;
}

.pom-new-price {
  font-size: 1.9rem;
  font-weight: 700;
  color: #8b7355;
}

.pom-add-btn {
  background: linear-gradient(135deg, #8b7355, #6b5440);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}

.pom-add-btn:hover:not(:disabled) {
  opacity: 0.88;
  transform: translateY(-1px);
}

.pom-add-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Inline price display (product cards + preview) */
.pom-price-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.pom-inline-badge {
  display: inline-block;
  background: linear-gradient(135deg, #8b7355, #6b5440);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  vertical-align: middle;
  white-space: nowrap;
}

.price-original-crossed {
  text-decoration: line-through;
  color: #bbb;
  font-size: 1.5rem;
}

.price-discounted {
  color: #8b7355;
  font-weight: 700;
  font-size: 2rem;
}

/* Cart item product of month */
.cart-pom-label {
  font-size: 1.2rem;
  background: linear-gradient(135deg, #8b7355, #6b5440);
  color: #fff;
  padding: 3px 10px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 700;
}

.cart-price-original {
  text-decoration: line-through;
  color: #bbb;
  font-size: 1.6rem;
  margin-right: 4px;
}

.cart-price-discounted {
  color: #8b7355;
  font-weight: 700;
  font-size: 2rem;
}

@media (max-width: 600px) {
  .pom-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .pom-badge-big { top: -14px; left: -14px; transform: none; }
  .pom-pricing { justify-content: center; }
}

/* Tea cards — subtle green tint */
.card__container[data-category="ceaiuri"] {
  background: linear-gradient(160deg, #edf5ee 0%, #FFFDF8 55%);
}

.card__container[data-category="ceaiuri"] .card__title h3 {
  color: #1a5c38;
}

.card__container[data-category="ceaiuri"] .card__price p,
.card__container[data-category="ceaiuri"] .card__price .new-price {
  color: #28a745;
}

/* Responsive */
@media screen and (max-width: 400px) {
  .card__image {
    height: 170px;
  }
}

@media screen and (min-width: 1040px) {
  .card__title h3 {
    font-size: 1.9rem;
  }

  .card__description p {
    font-size: 1.45rem;
  }

  .card__price p {
    font-size: 2.2rem;
  }
}

/* Meniu */
.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 3rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.card__container {
  flex: 1 1 260px;
  max-width: 310px;
}

.menu.pachete .card__container {
  flex: 1 1 300px;
  max-width: 360px;
}

.menu__title {
  text-align: center;
  padding: 5rem 2rem 2rem;
}

.menu__title h3 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #3D2B1F;
  margin: 0;
  letter-spacing: 0.02em;
  display: inline-block;
  position: relative;
}

.menu__title h3::after {
  content: '';
  display: block;
  width: 5rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, #5A7A5A, transparent);
  margin: 1rem auto 0;
}

/* dōTERRA info subtitle */
.doterra-subtitle {
  font-size: 1.45rem;
  color: var(--color-text);
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}
.doterra-subtitle em {
  color: #5A7A5A;
  font-style: normal;
  font-weight: 600;
}

/* Product category carousel — arrows + peek on mobile */
.cat-carousel-inner {
  position: relative;
}

.cat-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  background: #8b7355;
  color: #FAF0E6;
  border: none;
  border-radius: 50%;
  width: 2.8rem;
  height: 2.8rem;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(62, 44, 28, 0.22);
  transition: background 0.2s;
  z-index: 2;
}
.cat-arrow:hover { background: #5A7A5A; }
.cat-arrow--prev { left: 0.3rem; }
.cat-arrow--next { right: 0.3rem; }
.cat-arrow:disabled { opacity: 0; pointer-events: none; }

.cat-counter {
  display: none;
  text-align: center;
  font-size: 1.3rem;
  color: #8b7355;
  letter-spacing: 0.05em;
  padding: 0.2rem 0 0.8rem;
}

@media screen and (max-width: 600px) {
  /* Mobile: 2-column grid (replaces horizontal carousel) */
  .cat-arrow { display: none !important; }
  .cat-counter { display: none !important; }
  .menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: initial;
    max-width: none;
    margin: 0;
    flex-wrap: initial;
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 1.2rem 1rem 2rem;
    gap: 1rem;
  }
  .card__container {
    flex: initial;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    scroll-snap-align: none;
  }
  /* Single-product category: center the lone card in the 2-col grid
     (e.g. "Pachetul Radiestezistului") */
  .menu > .card__container:only-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 0.5rem);
  }
  /* Card density tweaks for 2-col layout (keeps the "Adaugă în coș" button
     from being pushed off-screen when descriptions are long) */
  .card__container .card__title h3 { font-size: 1.6rem; line-height: 1.25; }
  .card__description p { font-size: 1.2rem; line-height: 1.45; -webkit-line-clamp: 2; }
  .card__price p,
  .card__price .price-discounted { font-size: 1.5rem; }
  .card__price .price-original-crossed { font-size: 1.15rem; }
  .card__image img { height: auto; aspect-ratio: 1 / 1; object-fit: contain; }
}


/* Counter component */

.counter-container {
  display: block;
  text-align: center;
}

.preview-item__quantity::-webkit-inner-spin-button {
  opacity: 0;
}

.preview-item__quantity {
  font-size: 4rem;
  width: 7.5rem;
  border: none;
  background-color: transparent;
  padding-left: 1.6rem;
  text-align: center;
  color: var(--menu-items-color);
}

.preview-item__quantity:focus {
  outline: none;
}

.counter__button {
  font-size: 3rem;
  background: var(--color-secondary);
  color: var(--color-bg);
  border: none;
  cursor: pointer;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 2.8rem;
  line-height: 2rem;
  transition: all 0.3s;
}

.counter__button:hover {
  background: var(--color-primary);
}

.counter__value {
  font-size: 3.5rem;
  color: var(--color-heading);
  padding: 0 1.5rem;
}

/* ── Product Preview (redesigned) ───────────────────────────────────── */

.preview-container {
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 1050;
  padding: 1.5rem;
  overflow-y: auto;
}

/* The preview card */
.preview-item {
  background: #FAF0E6;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  width: min(1100px, 95vw);
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  display: none;
  flex-direction: column;
  z-index: 100;
  margin: auto;
}
.dark-mode .preview-item { background: var(--color-bg); }

.preview-item.active {
  display: flex;
  animation: fadeIn 0.35s ease-out;
}

/* Close button */
.preview-close {
  position: sticky;
  top: 1rem;
  left: 100%;
  align-self: flex-end;
  margin: 1rem 1rem 0 auto;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  border-radius: 50%;
  width: 3.8rem;
  height: 3.8rem;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-heading);
  transition: background 0.2s;
  z-index: 10;
  flex-shrink: 0;
}
.preview-close:hover { background: rgba(0, 0, 0, 0.18); }

/* Two-column body */
.preview-body {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 0.5rem 3rem 2rem;
}

.preview-left {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  background: #EFE3D4;
  border-radius: 14px;
  padding: 2rem 1.5rem;
}
.dark-mode .preview-left { background: rgba(255,255,255,0.05); }

.preview-item__image {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.preview-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  justify-content: center;
  padding: 1rem 0;
}

/* Title */
.preview-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--color-heading);
  line-height: 1.3;
  margin: 0;
}

/* Rating summary */
.preview-rating-summary {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  color: #999;
  min-height: 2rem;
}
.stars-display {
  color: #f0a500;
  font-size: 1.7rem;
  letter-spacing: 2px;
}

/* Price */
.preview-price {
  display: flex;
  gap: 1.2rem;
  align-items: baseline;
  justify-content: center;
}
.preview-price .old-price {
  font-size: 1.8rem;
  color: #bbb;
  text-decoration: line-through;
}
.preview-price .new-price,
.preview-price p {
  font-size: 2.8rem;
  font-weight: 700;
  color: #5A7A5A;
  margin: 0;
}

/* Low stock */
.low-stock-badge {
  display: inline-block;
  background: #fff3cd;
  color: #856404;
  border-radius: 20px;
  padding: 0.4rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Description */
.preview-description {
  font-size: 1.6rem;
  color: var(--color-text);
  line-height: 1.65;
  margin: 0;
}

/* Normalize content pasted from admin (headings, nested <p>) so preview title
   and description always use the designed font regardless of input HTML. */
.preview-title h1, .preview-title h2, .preview-title h3,
.preview-title h4, .preview-title h5, .preview-title h6,
.preview-title p {
  font: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  display: inline;
}
.preview-description h1, .preview-description h2, .preview-description h3,
.preview-description h4, .preview-description h5, .preview-description h6,
.preview-description p, .preview-description div {
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  font-weight: inherit;
  margin: 0 0 0.4em;
  padding: 0;
  display: block;
}
.preview-description p:last-child,
.preview-description div:last-child { margin-bottom: 0; }
/* Card description: same normalization for cards with pasted headings. */
.card__description h1, .card__description h2, .card__description h3,
.card__description h4, .card__description h5, .card__description h6 {
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  display: block;
}

/* OOS message */
.closed-mesage {
  display: none;
  color: #c0392b;
  font-size: 1.4rem;
  margin: 0;
}
.preview-item.oos .closed-mesage { display: block; }

/* Counter — pill capsule design */
.preview-counter {
  display: inline-flex;
  align-items: center;
  background: rgba(90, 122, 90, 0.08);
  border: 2px solid rgba(90, 122, 90, 0.35);
  border-radius: 60px;
  padding: 0.5rem;
  gap: 0;
  margin: 0.5rem 0;
}

.counter__button {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  font-size: 2.4rem;
  line-height: 1;
  background: #5A7A5A;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  flex-shrink: 0;
}
.counter__button:hover {
  background: #3E5C3E;
  transform: scale(1.1);
}
.counter__button:active { transform: scale(0.95); }

.preview-item__quantity {
  font-size: 2.4rem;
  width: 6rem;
  text-align: center;
  border: none;
  background: transparent;
  color: var(--color-heading);
  font-weight: 700;
}
.preview-item__quantity::-webkit-inner-spin-button { opacity: 0; }
.preview-item__quantity:focus { outline: none; }

/* Add to cart button */
.preview-container__btn {
  margin-top: 0.6rem;
  background: #5A7A5A;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1.3rem 4rem;
  font-size: 1.7rem;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s, box-shadow 0.2s;
  align-self: center;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(90, 122, 90, 0.35);
  letter-spacing: 0.03em;
}
.preview-container__btn:hover {
  background: #3E5C3E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 122, 90, 0.45);
}
.preview-container__btn:active { transform: translateY(0); }
.preview-container__btn:disabled {
  background: #bbb;
  cursor: default;
  box-shadow: none;
  transform: none;
}

/* ── Reviews section ─────────────────────────────────────────────────── */

/* Cross-sell (related products) block — shown between preview body and reviews */
.preview-related {
  padding: 1.2rem 3rem 1.2rem;
  border-top: 1px solid rgba(139, 115, 85, 0.2);
}
.preview-related:empty { padding: 0; border: none; }
.preview-related__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--color-heading);
  margin-bottom: 0.8rem;
  text-align: center;
}
.preview-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  max-width: 540px;
  margin: 0 auto;
}
.preview-related__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(139, 115, 85, 0.18);
  border-radius: 10px;
  padding: 0.6rem 0.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.preview-related__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.15);
  border-color: rgba(139, 115, 85, 0.4);
}
.preview-related__img-wrap {
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  background: #f5f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-related__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.preview-related__name {
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.preview-related__price {
  font-size: 1rem;
  color: #8b7355;
  font-weight: 700;
}
.dark-mode .preview-related__card { background: rgba(255,255,255,0.05); }
.dark-mode .preview-related__name { color: #f5f0e8; }

.preview-reviews {
  padding: 2rem 3rem 3rem;
  border-top: 1px solid rgba(139, 115, 85, 0.2);
  background: rgba(239, 227, 212, 0.4);
  border-radius: 0 0 20px 20px;
}
.dark-mode .preview-reviews { background: rgba(255,255,255,0.03); }

.preview-reviews h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--color-heading);
  margin-bottom: 1.5rem;
  text-align: center;
}

.review-aggregate {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.review-card {
  background: rgba(90, 122, 90, 0.04);
  border: 1px solid rgba(90, 122, 90, 0.15);
  border-radius: 12px;
  padding: 1.4rem 1.8rem;
  margin-bottom: 1rem;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.review-card__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.review-author {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-heading);
}

.review-date {
  font-size: 1.2rem;
  color: #bbb;
}

.review-stars {
  color: #f0a500;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.review-comment {
  font-size: 1.5rem;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}

/* Interactive star picker */
.star-picker {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.star-picker input[type="radio"] { display: none; }

.star-picker label {
  font-size: 3rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s;
  user-select: none;
}

.star-picker input[type="radio"]:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label {
  color: #f0a500;
}

/* Review form */
.review-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.review-form h4 { margin: 0; font-size: 1.7rem; }

.review-textarea {
  resize: vertical;
  min-height: 90px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-size: 1.5rem;
  font-family: inherit;
  color: var(--color-heading);
  background: var(--color-bg);
  transition: border-color 0.2s;
}
.review-textarea:focus {
  outline: none;
  border-color: #5A7A5A;
}

.review-submit-btn {
  align-self: flex-start;
  background: #5A7A5A;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.4rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.review-submit-btn:hover { background: #3E5C3E; }
.review-submit-btn:disabled { background: #bbb; cursor: default; }

.reviews-loading {
  color: #aaa;
  font-size: 1.4rem;
  padding: 0.8rem 0;
}

.review-login-prompt { font-size: 1.5rem; color: #888; }
.review-login-prompt a { color: #5A7A5A; }

.review-msg { font-size: 1.4rem; padding: 0.4rem 0; min-height: 1.6rem; }
.review-msg.success { color: #2e7d32; }
.review-msg.error   { color: #c62828; }

/* Responsive preview */
@media (max-width: 640px) {
  .preview-body {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0.5rem 1.5rem 1.5rem;
  }
  .preview-left {
    flex: none;
    border-radius: 12px;
    padding: 1.5rem 1rem;
  }
  .preview-item__image { max-width: 220px; }
  .preview-container__btn { padding: 1.2rem 2.5rem; }
  .preview-reviews { padding: 1.5rem; border-radius: 0 0 16px 16px; }
  .preview-title { font-size: 2.2rem; }
  .preview-related { padding: 1rem 1rem 1rem; }
  .preview-related__title { font-size: 1.3rem; margin-bottom: 0.6rem; }
  .preview-related__grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; max-width: none; }
  .preview-related__card { padding: 0.5rem 0.3rem; }
  .preview-related__img-wrap { width: 56px; height: 56px; }
  .preview-related__name { font-size: 0.95rem; }
  .preview-related__price { font-size: 0.95rem; }
}

/* Cart */

.cart-container {
  background: var(--color-bg);
  position: fixed;
  top: 5rem;
  right: 2rem;
  margin-left: 2rem;
  border: var(--border);
  box-shadow: var(--box-shadow);
  max-height: 90vh;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 1000;
}

.cart-title {
  color: var(--color-heading);
  font-size: 2.5rem;
  padding-top: 1rem;
  margin-bottom: 0;
  font-weight: 900;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-secondary);
  width: 90%;
  text-align: center;
}

.cart-box {
  display: flex;
  padding-bottom: 0;
  position: relative;
}

.cart-content {
  overflow: scroll;
}

.cart-content::-webkit-scrollbar {
  width: 1rem;
}

.cart-content::-webkit-scrollbar-track {
  color: var(--color-bg);
}

.cart-content::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
}

.cart__details {
  font-size: 2rem;
  padding: 1rem;
  width: 100%;
  position: relative;
}

.cart__title {
  margin: 0;
  color: var(--color-text);
  padding-bottom: 1rem;
}

.item__price {
  margin: 0;
  color: var(--color-heading);
  padding-bottom: 1rem;
}

.cart__quantity {
  width: 7rem;
  text-align: center;
  font-size: 2.5rem;
  height: 3.8rem;
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  padding-left: 1.2rem;
}

.cart__quantity:focus {
  outline: var(--color-primary);
}

.cart-box img {
  max-width: 30%;
  padding: 0 1rem;
  padding-top: 2rem;
}

.cart-item-image {
  max-height: 8rem;
}

.fa-trash {
  color: var(--color-secondary);
  position: absolute;
  right: 1rem;
  top: 6rem;
  transition: color 0.3s;
  cursor: pointer;
}

.fa-trash:hover {
  color: var(--color-primary);
}

.cart-total {
  display: flex;
  width: 90%;
  justify-content: end;
  padding-right: 1rem;
  border-top: 1px solid var(--color-secondary);
}

.comanda-minima {
  text-align: center;
  width: 100%;
  font-size: 1.5rem;
  display: none;
  color: var(--color-primary);
}

.comanda-maxima {
  text-align: center;
  width: 100%;
  font-size: 1.5rem;
  display: none;
  color: var(--color-primary);
}

/* Stupid usage of classes x( */

.cart__total {
  margin: 0;
  padding-right: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  color: var(--color-heading);
  font-weight: 900;
}

.cart__price {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

#cart__btn {
  margin: 0 2rem 2rem 2rem;
  cursor: pointer;
  padding: 1rem 0;
}

.cart-btn {
  display: none;
}

.cart-btn:disabled {
  background-color: var(--color-text);
}

.btn--active {
  display: block;
}

#cart-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--color-heading);
  transition: transform 0.3s;
  cursor: pointer;
}

#cart-close:hover {
  transform: rotate(-90deg);
}

.cart-container__active {
  opacity: 1;
  max-width: 90vh;
}

.empty__cart {
  font-size: 2rem;
  text-align: center;
  margin: 0 4rem;
  padding-top: 2.7rem;
}

.empty__cart-inactive {
  display: none;
}

@media screen and (min-width: 764px) {
  .cart-title {
    font-size: 2.5rem;
  }

  .cart-item-image {
    max-height: 12rem;
  }

  .cart__quantity {
    width: 7rem;
    font-size: 3rem;
    height: 4.2rem;
  }

  .fa-trash {
    font-size: 2.5rem;
  }

  .cart__details {
    font-size: 3rem;
  }

  .comanda-maxima {
    padding-top: 1rem;
  }

  .comanda-minima {
    padding-top: 1rem;
  }

  .cart-total {
    font-size: 2.5rem;
    padding: 1rem 0;
  }

  #cart__btn {
    width: 25rem;
    font-size: 2rem;
    margin: 0 2rem 2rem 2rem;
    height: 5rem;
    padding: 2rem 0;
    line-height: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .cart-container {
    top: 6rem;
  }

  .cart__quantity {
    width: 7.2rem;
    font-size: 3rem;
    height: 4.2rem;
  }

  .cart-container__active {
    max-width: 60rem;
  }

  .cart-title {
    font-size: 2.5rem;
  }

  .cart__details {
    font-size: 2.5rem;
  }

  .cart-total {
    font-size: 2.5rem;
  }
}

/* ═══════════════════════════════════════════════════════
   CHECKOUT PAGE — Modern Redesign
   ═══════════════════════════════════════════════════════ */

.checkout-page-container {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 14, 0.65);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  padding: 16px;
  overflow-y: auto;
}

.checkout-page {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

.checkout-page.active {
  display: block;
  animation: checkoutIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes checkoutIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.checkout-page::-webkit-scrollbar { width: 5px; }
.checkout-page::-webkit-scrollbar-track { background: transparent; }
.checkout-page::-webkit-scrollbar-thumb { background: #DDD0BE; border-radius: 3px; }

/* ── Header ───────────────────────────────────────────── */
.checkout-page__sumar-title {
  background: linear-gradient(135deg, #5A7A5A 0%, #3E5C3E 100%);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.sumar-title {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  text-shadow: none;
  margin: 0;
  padding: 0;
  letter-spacing: 0.4px;
}

#close-checkout-page {
  position: static;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
  z-index: auto;
  padding: 4px 0 4px 8px;
}

#close-checkout-page:hover {
  color: #ffffff;
  opacity: 0.85;
}

/* ── Order summary table ──────────────────────────────── */
.checkout-page__sumar-table {
  padding: 20px 24px 14px;
  border-bottom: 1px solid #EFE3D4;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.table-header {
  color: #5A7A5A;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding-bottom: 8px;
}

tr {
  border-bottom: 1px solid #F5F0E8;
}

.item-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 0;
}

.table-item-name {
  margin: 0;
  font-size: 13px;
  color: #333;
}

.checkout-row--oos td {
  opacity: 0.6;
}
.checkout-oos-label {
  display: block;
  font-size: 11px;
  color: #c62828;
  margin-top: 3px;
}
.checkout-oos-remove-btn {
  background: none;
  border: none;
  padding: 0;
  color: #c62828;
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}
.checkout-oos-remove-btn:hover {
  color: #8b0000;
}

.table-img {
  max-width: 44px;
  border-radius: 6px;
  object-fit: cover;
}

.table-total {
  text-align: right;
  color: #333;
  padding: 10px 0 4px;
  font-weight: 700;
  font-size: 14px;
}

.total-comanda {
  color: #5A7A5A;
  font-size: 15px;
  font-weight: 700;
}

.table-transport {
  text-align: left;
  font-size: 12px;
  padding: 4px 0;
  color: #777;
}

.gratuit {
  color: #2e7d32;
  font-weight: 600;
}

.tp5 {
  color: #5A7A5A;
  font-weight: 600;
}

.pret-cells {
  font-size: 13px;
  color: #444;
  text-align: right;
}

/* ── Promo code ───────────────────────────────────────── */
.checkout-promo-row {
  padding: 12px 24px !important;
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  background: #FAF0E6;
  border-bottom: 1px solid #EFE3D4;
}

/* ── Delivery section title ───────────────────────────── */
.checkout-logged-in-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: #f0f7f0;
  border: 1px solid #c3ddc3;
  border-radius: 8px;
  padding: 10px 14px;
  margin: 0 24px 14px;
  font-size: 0.85rem;
  color: #3a5a3a;
  word-break: break-word;
  overflow-wrap: anywhere;
  min-width: 0;
}
.checkout-logged-in-badge > span,
.checkout-logged-in-badge strong { min-width: 0; }
.checkout-logged-in-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #5A7A5A;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.checkout-page__detalii-livrare-title {
  padding: 16px 24px 6px;
  color: #5A7A5A;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-shadow: none;
  height: auto;
}

/* ── Delivery form ────────────────────────────────────── */
.checkout-page__detalii-livrare-input {
  padding: 4px 24px 8px;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field--full {
  grid-column: 1 / -1;
}

.detalii-livrare-input__labels {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.detalii-livrare-input__labels em {
  font-style: normal;
}

.detalii-livrare-input__fields {
  display: block;
  width: 100%;
  margin-bottom: 14px;
  font-size: 14px;
  border: 1.5px solid #DDD0BE;
  border-radius: 8px;
  padding: 9px 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff;
}

.detalii-livrare-input__fields:focus {
  outline: none;
  border-color: #5A7A5A;
  box-shadow: 0 0 0 3px rgba(90, 122, 90, 0.12);
  caret-color: #5A7A5A;
}

.detalii-livrare-input__observatii {
  display: block;
  width: 100%;
  margin-bottom: 14px;
  font-size: 14px;
  border: 1.5px solid #DDD0BE;
  border-radius: 8px;
  padding: 9px 12px;
  height: 68px;
  resize: vertical;
  font-family: Arial, sans-serif;
  color: #333;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.detalii-livrare-input__observatii:focus {
  outline: none;
  border-color: #5A7A5A;
  box-shadow: 0 0 0 3px rgba(90, 122, 90, 0.12);
  caret-color: #5A7A5A;
}

/* ── Payment method selector ──────────────────────────── */
.payment-method-section {
  margin-bottom: 18px;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding: 0 24px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fff;
}

.payment-option:has(input:checked) {
  border-color: #5A7A5A;
  background: #f4f8f4;
}

.payment-option--card:has(input:disabled) {
  opacity: 0.55;
  cursor: not-allowed;
}

.payment-option input[type="radio"] {
  accent-color: #5A7A5A;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.payment-option__icon {
  font-size: 22px;
  flex-shrink: 0;
}

.payment-option__label {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2px;
}

.payment-option__label strong {
  font-size: 14px;
  color: #333;
}

.payment-option__label small {
  font-size: 11px;
  color: #888;
}

.payment-option__badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #8b7355;
  color: #fff;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── GDPR + submit ────────────────────────────────────── */
.gdpr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 24px 14px;
}

.gdpr-label-text {
  font-size: 11px;
  color: #777;
  text-align: left;
  padding: 0;
  line-height: 1.5;
}

.gdpr__checkbox {
  accent-color: #5A7A5A;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  width: 14px;
  height: 14px;
}

.order-submit {
  display: flex;
  justify-content: center;
  padding: 4px 0 8px;
}

.order-submit-btn {
  height: auto;
  width: auto;
  padding: 13px 44px;
  background: linear-gradient(135deg, #5A7A5A, #3E5C3E);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  font-family: Arial, sans-serif;
}

.order-submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #3E5C3E, #2D4630);
  box-shadow: 0 8px 24px rgba(62, 92, 62, 0.3);
}

.order-submit-btn:active {
  transform: translateY(0);
}

/* ── Multi-step checkout ─────────────────────────────── */
.co-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px 14px;
  gap: 0;
}
.co-step {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #bbb;
  transition: color 0.25s;
  white-space: nowrap;
}
.co-step__num {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  background: #eee; color: #bbb;
  transition: background 0.25s, color 0.25s;
  flex-shrink: 0;
}
.co-step--active .co-step__num { background: #5A7A5A; color: #fff; }
.co-step--active { color: #5A7A5A; }
.co-step--done .co-step__num { background: #8b7355; color: #fff; }
.co-step--done { color: #8b7355; cursor: pointer; }
.co-step__sep {
  width: 32px; height: 2px;
  background: #e0d8cc;
  margin: 0 8px;
  flex-shrink: 0;
}
.co-step--done + .co-step__sep,
.co-step__sep.co-sep--done { background: #8b7355; }

/* Step panels */
.co-panel { display: none; }
.co-panel--active { display: block; }

/* Step navigation buttons */
.co-nav {
  display: flex;
  gap: 10px;
  padding: 16px 24px 20px;
}
.co-nav-btn {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.15s;
}
.co-nav-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.co-nav-btn--back {
  background: #f5f0e8;
  color: #666;
  flex: 0 0 auto;
}
.co-nav-btn--next {
  background: linear-gradient(135deg, #5A7A5A, #3E5C3E);
  color: #fff;
}
.co-nav-btn--next:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Compact order summary on step 3 */
.co-summary-compact {
  background: #faf7f2;
  border: 1px solid #e8dfd2;
  border-radius: 10px;
  padding: 14px 18px;
  margin: 0 24px 14px;
}
.co-summary-compact__title {
  font-size: 12px; font-weight: 700; color: #8b7355;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.co-summary-compact__row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: #555; padding: 3px 0;
}
.co-summary-compact__row--total {
  font-weight: 700; font-size: 15px; color: #3a3a3a;
  border-top: 1px solid #e8dfd2; padding-top: 8px; margin-top: 4px;
}
.co-summary-compact__row--total .co-val--total { color: #8b7355; }

@media screen and (max-width: 540px) {
  .co-steps { padding: 14px 16px 10px; gap: 0; }
  .co-step { font-size: 11px; gap: 4px; }
  .co-step__num { width: 22px; height: 22px; font-size: 11px; }
  .co-step__sep { width: 20px; margin: 0 4px; }
  .co-step__label { display: none; }
  .co-nav { padding: 12px 16px 16px; }
}

.info {
  padding: 0 24px;
}

.info-text {
  font-size: 11px;
  color: #bbb;
  text-align: center;
  margin: 0;
  padding-bottom: 20px;
}

.hidden__input {
  display: none;
}

/* ── Mobile ───────────────────────────────────────────── */
@media screen and (max-width: 540px) {
  .checkout-form-grid {
    grid-template-columns: 1fr;
  }
  .checkout-page {
    border-radius: 14px;
    max-height: 95vh;
  }
  .checkout-page__sumar-title {
    border-radius: 14px 14px 0 0;
  }
}


/* Closed site text */
.closed-mesage {
  margin: 0;
  color: red;
  display: none;
  font-weight: 900;
  animation: blinker 2s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* Thank you page */
.ty-body {
  min-height: 100vh;
}
.ty-container {
  background: rgba(248, 247, 247, 0.5);
  text-align: center;
  min-height: 100vh;
}

.ty-picture {
  width: 100%;
  padding-top: 3rem;
}

.ty-header {
  font-size: 3rem;
  color: var(--color-primary);
  text-shadow: var(--text-shadow);
  margin: 0;
  padding: 3rem 0;
}

.ty-paragraph {
  font-size: 1.5rem;
  margin: 0;
  padding-bottom: 6rem;
}

.ty-banner {
  width: 20rem;
  padding-bottom: 2rem;
}

.ty-button {
  padding-bottom: 2rem;
}

.ty-button button {
  transition: all 0.2s;
  cursor: pointer;
  font-size: 1.7rem;
  color: var(--color-bg);
  background-color: var(--color-primary);
  border-radius: 7rem;
  height: 5rem;
  width: 17rem;
  line-height: 4rem;
  text-align: center;
  margin-right: 0.8rem;
  border: none;
}

.ty-button button:hover {
  color: var(--color-bg);
  background: var(--color-secondary);
  transform: scale(1.1);
}

@media screen and (min-width: 764px) {
  .ty-picture {
    width: 100%;
  }

  .ty-header {
    font-size: 4rem;
  }

  .ty-paragraph {
    font-size: 2rem;
  }

  .ty-banner {
    width: 25rem;
  }

  .ty-button button {
    width: 23rem;
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .ty-picture {
    width: 90%;
  }

  .ty-header {
    font-size: 5rem;
  }

  .ty-paragraph {
    font-size: 2.5rem;
    padding-bottom: 0rem;
  }

  .ty-banner {
    width: 30rem;
  }

  .ty-button button {
    width: 27rem;
    font-size: 2.5rem;
  }
}

.stop {
  position: fixed;
  display: flex;
  z-index: 100000;
  background-color: #666666af;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.stop-p {
  position: fixed;
  top: 50%;
  left: 20%;
  background-color: #2e2e2e;
  padding: 3rem;
  border-radius: 2rem;
  color: red;
  cursor: pointer;
}

.politica {
  color: var(--color-heading);
  transition: all 0.3s;
}

.politica:hover {
  color: var(--color-primary);
}

#newsletter {
  position: fixed;
  z-index: 100000;
  min-height: 100vh;
  min-width: 100vw;
  top: 0;
  background-color: #666666a9;
  display: none;
}

#close-preview-news {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 1rem;
  font-size: 2.5rem;
  transition: transform 0.3s;
  color: var(--color-heading);
  z-index: 1000;
}

#close-preview-news:hover {
  transform: rotate(-90deg);
}

/* ── Products header (search + title) ──────────────────────────── */
.products-header {
  background: #fff;
  border-top: 1px solid rgba(90,122,90,0.1);
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.products-header .section-header {
  margin-bottom: 3rem;
}

.products-header .section-header h2 {
  font-size: 3rem;
  color: #3D2B1F;
  margin: 0.6rem 0 0.8rem;
}

.products-header .section-header p {
  font-size: 1.45rem;
  color: var(--color-text);
  margin: 0;
}

/* Search wrapper */
.search-wrapper {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 1.8rem;
  color: #5A7A5A;
  font-size: 1.4rem;
  pointer-events: none;
  z-index: 1;
}

#searchInput {
  width: 100%;
  padding: 1.3rem 5rem 1.3rem 4.8rem;
  border: 2px solid rgba(90,122,90,0.22);
  border-radius: 50px;
  background: #FAFDF8;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #3D2B1F;
  transition: border-color 0.22s, box-shadow 0.22s;
  outline: none;
  float: none;
}

#searchInput:focus {
  border-color: #5A7A5A;
  box-shadow: 0 0 0 4px rgba(90,122,90,0.1);
  background: #fff;
}

#searchInput::placeholder {
  color: #bbb;
  font-style: italic;
}

.search-clear {
  position: absolute;
  right: 1.4rem;
  background: rgba(90,122,90,0.12);
  border: none;
  border-radius: 50%;
  width: 2.6rem;
  height: 2.6rem;
  color: #5A7A5A;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.search-clear.visible { display: flex; }
.search-clear:hover { background: rgba(90,122,90,0.22); }

/* ── Category sections (alternating backgrounds) ────────────────── */
.category-section {
  width: 100%;
  border-top: 1px solid rgba(90,122,90,0.08);
}

.category-section.cat--even { background: #FAF0E6; }
.category-section.cat--odd  { background: #fff; }

@media (max-width: 600px) {
  .products-header { padding: 4rem 1.5rem 3rem; }
  .products-header .section-header h2 { font-size: 2.4rem; }
  .search-wrapper { max-width: 100%; }
  #searchInput { font-size: 1.4rem; padding: 1.1rem 4.5rem 1.1rem 4.2rem; }
  .menu__title h3 { font-size: 2.4rem; }
}

/* ══ Announcement Bar ══════════════════════════════════════════ */

#announcement-bar {
  position: relative;
  min-height: 42px;
  background: linear-gradient(90deg, #3D2B1F 0%, #5A4130 50%, #3D2B1F 100%);
  color: #FAF0E6;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.7rem 4rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  isolation: isolate;
}
/* Subtle light sweep — premium "shimmer" effect */
#announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255,240,220,0.08) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  animation: ann-shimmer 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes ann-shimmer {
  0%   { transform: translateX(-100%); }
  55%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
#announcement-bar > * { position: relative; z-index: 1; }

#announcement-text {
  flex: 0 1 auto;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FAF0E6;
}

#announcement-countdown {
  display: none;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
  flex-shrink: 0;
  background: none;
  padding: 0;
  font-variant-numeric: tabular-nums;
  padding-left: 1.2rem;
  border-left: 1px solid rgba(250,240,230,0.2);
}
.ann-unit {
  font-weight: 700;
  font-size: 1.45rem;
  min-width: 2ch;
  text-align: right;
  color: #FAF0E6;
  letter-spacing: 0.01em;
}
.ann-sep {
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.55;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  margin: 0 0.7rem 0 0.15rem;
  color: #FAF0E6;
}
.ann-sep:last-child { margin-right: 0; }

#announcement-close {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: rgba(250,240,230,0.7);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  z-index: 2;
}
#announcement-close:hover {
  color: #FAF0E6;
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
}

@media (max-width: 560px) {
  #announcement-bar {
    min-height: 44px;
    gap: 1rem;
    padding: 0.6rem 3.2rem 0.6rem 1rem;
    font-size: 1.15rem;
    flex-wrap: wrap;
  }
  #announcement-text {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    flex: 1 1 100%;
    order: 1;
  }
  #announcement-countdown {
    order: 2;
    padding-left: 0;
    border-left: none;
    margin: 0.3rem auto 0;
  }
  .ann-unit { font-size: 1.3rem; }
  .ann-sep { font-size: 0.85rem; margin: 0 0.5rem 0 0.12rem; }
  #announcement-close {
    top: 0.7rem;
    right: 0.8rem;
    transform: none;
  }
}

/* ══ Checkout Auth Gate ════════════════════════════════════════ */

#checkout-auth-gate {
  padding: 2.8rem 2rem 3.2rem;
  text-align: center;
}
.checkout-gate__body { max-width: 400px; margin: 0 auto; }
.checkout-gate__icon { font-size: 3.2rem; display: block; margin-bottom: 1rem; }
.checkout-gate__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #3D2B1F;
  margin-bottom: 0.6rem;
}
.checkout-gate__subtitle {
  color: #888;
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0 auto 2rem;
}
.checkout-gate__actions { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 0.8rem; }
.checkout-gate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 13px 22px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  font-family: inherit;
}
.checkout-gate-btn--primary {
  background: linear-gradient(135deg, #5A7A5A, #3e5e3e);
  color: #fff;
  box-shadow: 0 4px 16px rgba(62,94,62,0.28);
}
.checkout-gate-btn--secondary {
  background: #fff;
  color: #5A7A5A;
  border: 2px solid #5A7A5A;
}
.checkout-gate-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.checkout-gate__divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #bbb;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}
.checkout-gate__divider::before,
.checkout-gate__divider::after { content: ''; flex: 1; height: 1px; background: #e8e0d6; }
.checkout-gate__guest-btn {
  background: none;
  border: none;
  color: #8b7355;
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  padding: 0;
  margin-top: 0.4rem;
}
.checkout-gate__guest-btn:hover { color: #5A7A5A; }

/* ══ Cookie Consent Banner & Modal ════════════════════════════ */

#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  color: #fff;
  z-index: 9999;
  padding: 2rem 4rem;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.35);
  align-items: center;
}
.cookie-banner__content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 300px; }
.cookie-banner__text strong { display: block; font-size: 1.2rem; margin-bottom: 0.5rem; }
.cookie-banner__text p { font-size: 0.95rem; color: #ccc; margin: 0; line-height: 1.6; }
.cookie-banner__text a { color: #DDD0BE; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

.cookie-btn {
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.cookie-btn--accept { background: #5A7A5A; color: #fff; }
.cookie-btn--reject { background: transparent; color: #ccc; border: 1px solid #555; }
.cookie-btn--settings { background: transparent; color: #DDD0BE; border: 1px solid #DDD0BE; }
.cookie-btn:hover { opacity: 0.82; }

/* Modal */
#cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cookie-modal__box {
  background: #fff;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.28);
  overflow: hidden;
}
.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #eee;
}
.cookie-modal__header h3 { margin: 0; font-size: 1.1rem; color: #1a1a1a; }
.cookie-modal__close {
  background: none; border: none; font-size: 1rem;
  cursor: pointer; color: #aaa; padding: 4px 8px; border-radius: 6px;
}
.cookie-modal__close:hover { background: #f5f5f5; color: #333; }
.cookie-modal__body { padding: 1.2rem 1.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.cookie-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}
.cookie-pref-row:last-child { border-bottom: none; padding-bottom: 0; }
.cookie-pref-info { flex: 1; }
.cookie-pref-info strong { display: block; font-size: 0.95rem; color: #222; margin-bottom: 0.3rem; }
.cookie-pref-info p { font-size: 0.8rem; color: #777; margin: 0; line-height: 1.5; }

/* Toggle switch */
.cookie-toggle { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle__slider {
  position: absolute; cursor: pointer; inset: 0;
  background: #ccc; border-radius: 26px; transition: 0.3s;
}
.cookie-toggle__slider::before {
  content: ''; position: absolute;
  height: 20px; width: 20px; left: 3px; bottom: 3px;
  background: #fff; border-radius: 50%; transition: 0.3s;
}
.cookie-toggle input:checked + .cookie-toggle__slider { background: #5A7A5A; }
.cookie-toggle input:checked + .cookie-toggle__slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle__slider { opacity: 0.6; cursor: not-allowed; }

.cookie-modal__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #eee;
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal__footer .cookie-btn--reject { color: #555; border-color: #ddd; }
.cookie-modal__footer .cookie-btn--accept { background: #5A7A5A; color: #fff; }

@media (max-width: 560px) {
  .cookie-banner__content { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .cookie-btn { flex: 1; text-align: center; }
  .cookie-modal__footer { flex-direction: column; }
  .cookie-modal__footer .cookie-btn { width: 100%; text-align: center; }
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Optional: adds a shadow effect on hover */
.slider:hover {
  box-shadow: 0 0 1px #2196f3;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/* Popup Container */
.popup-container {
  position: fixed;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background: var(--color-bg);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 20px;
  opacity: 0;
  display: none; /* Start hidden */
  transition: opacity 0.4s ease-in-out;
  z-index: 1000;
  text-align: center;
}

/* Show animation */
.popup-container.show {
  display: block;
  opacity: 1;
}

/* Popup Content */
.popup-content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.popup-buttons {
  display: flex;
  justify-content: space-between;
}

.popup-buttons button {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ;
}

.popup-buttons button:hover{
  transform: scale(1.1);
}

#popup-yes {
  background-color: #28a745;
  color: #fff;
}

#popup-no {
  background-color: #dc3545;
  color: #fff;
}

@media screen and (min-width: 1100px) {
  .popup-content p {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }
  
   .popup-container.show {
    bottom: 3rem; /* Move into view */
  }
  
  .popup-buttons button {
    font-size: 1.5rem;
  }
  
  #popup-yes {
    background-color: #28a745;
    color: #fff;
  }
  
  #popup-no {
    background-color: #dc3545;
    color: #fff;
}}

/* Custom styling for the share button */
 .custom-share-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #4267B2; /* Facebook blue */
  border-radius: 5px;
  text-decoration: none;
  font-family: Arial, sans-serif;
}
.custom-share-button:hover {
  background-color: #365899;
}


/* Promotions styles */

#promo-banner {
  position: fixed;
  top: 9rem; /* �nlimea navbarului - ajusteaz dup nevoie */
  left: 0;
  right: 0;
  background-color: #f8e7f3; /* Un roz discret */
  color: #333;
  text-align: center;
  padding: 10px 20px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

#promo-banner strong {
  color: #d23669; /* Evideniere pentru mesaj */
}

#promo-banner button {
  background: none;
  border: none;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

#promo-banner button:hover {
  color: #d23669;
}

#promo-banner span {
  display: inline-block;
  animation: pulseText 4s ease-in-out infinite;
}

@keyframes pulseText {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
}

.old-price {
  position: relative;
  font-size: 2.5rem;
  color: var(--color-primary); /* Change number color */
  margin-right: 10px;
}

.old-price::after {
  content: "";
  position: absolute;
  left: 0;
  top: 55%;
  width: 100%;
  height: 1.5px;
  background: red; /* The line color */
}

.new-price {
  color: green;
  font-weight: bold;
  font-size: 2.5rem;
}




/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: #5A7A5A;
  color: #FAF0E6;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  box-shadow: 0 4px 18px rgba(90, 122, 90, 0.4);
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
}
#backToTop:hover {
  background: #3E5C3E;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(90, 122, 90, 0.55);
}
@media (max-width: 768px) {
  #backToTop { width: 4.2rem; height: 4.2rem; bottom: 2rem; right: 2rem; font-size: 1.6rem; }
}

.tea_bag_image{
  width: 25rem;
}

#doterra-info{
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.6;
  background-color: rgba(0, 0, 0, 0.075);
  margin: 0 10rem;
  border-radius: 5%;
}

@media (max-width: 1024px){
  #doterra-info{
    font-size: 2.6rem;
    margin: 0 5rem;
  }
}

@media (max-width: 768px){
  #doterra-info{
    font-size: 2.2rem;
    margin: 0 5rem;
  }
}


/* ========================================================================
   BREVO NEWSLETTER FORM STYLES
   (migrated from index.html inline <style>)
   ======================================================================== */

@font-face {
  font-display: block;
  font-family: Roboto;
  src: url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2)
      format("woff2"),
    url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff)
      format("woff");
}

@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 600;
  src: url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2)
      format("woff2"),
    url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff)
      format("woff");
}

@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 700;
  src: url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2)
      format("woff2"),
    url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff)
      format("woff");
}

#sib-container input:-ms-input-placeholder {
  text-align: left;
  font-family: "Helvetica", sans-serif;
  color: #c0ccda;
}

#sib-container input::placeholder {
  text-align: left;
  font-family: "Helvetica", sans-serif;
  color: #c0ccda;
}

#sib-container textarea::placeholder {
  text-align: left;
  font-family: "Helvetica", sans-serif;
  color: #c0ccda;
}

#sib-container a {
  text-decoration: underline;
  color: #2bb2fc;
}


/* ========================================================================
   CART DRAWER, TOAST, CHECKOUT & SHIPPING BAR STYLES
   (migrated from index.html inline <style>)
   ======================================================================== */

/* ── Overlay ── */
#cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1001;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
#cart-overlay.active { display: block; }

/* ── Drawer shell — mobile-first ── */
#cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 92vw;
  background: #fff;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -6px 0 40px rgba(0,0,0,0.18);
}
#cart-drawer.open { transform: translateX(0); }

/* ── Header ── */
.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #DDD0BE;
  flex-shrink: 0;
}
.cart-drawer__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #5A7A5A;
  margin: 0;
}
#cart-close {
  background: none !important;
  border: none !important;
  font-size: 1.2rem;
  color: #aaa;
  cursor: pointer;
  padding: 7px 11px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  position: static !important;
  top: auto !important; right: auto !important;
  transform: none !important;
  line-height: 1;
}
#cart-close:hover { background: #EAF2EA !important; color: #5A7A5A; }

/* ── Scrollable items ── */
#cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0;
}
#cart-drawer__items .empty__cart {
  text-align: center;
  color: #aaa;
  padding: 60px 20px;
  font-size: 1rem;
  margin: 0;
}

/* ── Item rows ── */
#cart-drawer .cart-box {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid #f8f4ee;
  gap: 14px;
  position: static;
}
#cart-drawer .cart-item-image {
  width: 76px !important; height: 76px !important;
  max-width: 76px !important; max-height: 76px !important;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  padding: 0 !important;
}
#cart-drawer .cart__details {
  flex: 1;
  min-width: 0;
  padding: 0;
  position: static;
  width: auto;
}
#cart-drawer .cart__title {
  font-size: 0.97rem;
  color: #222;
  line-height: 1.38;
  margin-bottom: 4px;
  padding-bottom: 0;
  white-space: normal;
  word-break: break-word;
}
#cart-drawer .item__price {
  font-size: 1rem;
  font-weight: 700;
  color: #5A7A5A;
  padding-bottom: 7px;
  margin: 0;
}
#cart-drawer .cart__quantity {
  width: 64px;
  height: 34px;
  font-size: 0.97rem;
  border: 1.5px solid #e0d9cc;
  border-radius: 8px;
  text-align: center;
  padding: 0;
}
#cart-drawer .cart-trash-btn {
  color: #ccc;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 7px;
  position: static !important;
  top: auto !important; right: auto !important;
  flex-shrink: 0;
}
#cart-drawer .cart-trash-btn:hover { color: #e53935; }

/* ── Sticky footer ── */
.cart-drawer__footer {
  border-top: 2px solid #DDD0BE;
  padding: 16px 20px 30px;
  flex-shrink: 0;
  background: #fff;
}
.cart-drawer__footer .comanda-minima,
.cart-drawer__footer .comanda-maxima,
.cart-drawer__footer .comanda-oos {
  font-size: 0.85rem;
  color: #c0392b;
  text-align: center;
  margin-bottom: 10px;
  display: none;
}
.cart-drawer__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #444;
}
.cart-drawer__total-row .cart__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
}
#cart__btn {
  display: block !important;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #5A7A5A, #3E5C3E);
  color: white;
  border: none;
  border-radius: 13px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  margin: 0 !important;
  letter-spacing: 0.3px;
}
#cart__btn:hover:not(:disabled) { opacity: 0.88; transform: translateY(-2px); }
#cart__btn:disabled {
  background: #ccc !important;
  cursor: not-allowed;
  transform: none;
}

/* ── Tablet (≥ 540px) ── */
@media (min-width: 540px) {
  #cart-drawer { width: 400px; }
}

/* ── Desktop (≥ 1024px) ── */
@media (min-width: 1024px) {
  #cart-drawer { width: 460px; }
  .cart-drawer__header { padding: 22px 26px; }
  .cart-drawer__title { font-size: 1.4rem; }
  #cart-close { font-size: 1.35rem; padding: 8px 13px; }
  #cart-drawer .cart-box { padding: 18px 24px; gap: 18px; }
  #cart-drawer .cart-item-image {
    width: 92px !important; height: 92px !important;
    max-width: 92px !important; max-height: 92px !important;
  }
  #cart-drawer .cart__title { font-size: 1.05rem; }
  #cart-drawer .item__price { font-size: 1.1rem; }
  #cart-drawer .cart__quantity { width: 72px; height: 38px; font-size: 1.05rem; }
  #cart-drawer .cart-trash-btn { font-size: 1.1rem; padding: 8px; }
  .cart-drawer__footer { padding: 20px 26px 36px; }
  .cart-drawer__total-row { font-size: 1.12rem; margin-bottom: 18px; }
  .cart-drawer__total-row .cart__price { font-size: 1.38rem; }
  #cart__btn { font-size: 1.12rem; padding: 18px; border-radius: 14px; }
}

/* ── Cross-sell (checkout step 1 only) ── */
.cart-related:empty { display: none; }
.cart-related:not(:empty) {
  padding: 14px 24px 16px;
  border-top: 1px solid #EFE3D4;
  background: #faf7f2;
}
.cart-related__title {
  font-size: 11px;
  font-weight: 700;
  color: #8b7355;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.cart-related__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.cart-related__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 10px 8px 8px;
  background: #fff;
  border: 1px solid rgba(139, 115, 85, 0.18);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cart-related__card:hover {
  border-color: rgba(139, 115, 85, 0.4);
  box-shadow: 0 2px 8px rgba(139, 115, 85, 0.1);
}
.cart-related__img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 6px;
  background: #f5f0e8;
  flex-shrink: 0;
}
.cart-related__name {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}
.cart-related__price {
  font-size: 12px;
  font-weight: 700;
  color: #8b7355;
  margin-bottom: 2px;
}
.cart-related__add {
  width: 100%;
  margin-top: auto;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #8b7355;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cart-related__add:hover:not(:disabled) { background: #6f5a42; }
.cart-related__add:disabled { background: #c7b8a4; cursor: wait; }
.cart-related__add-icon {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 640px) {
  .cart-related:not(:empty) { padding: 12px 14px; }
  .cart-related__list { gap: 6px; }
  .cart-related__img { width: 48px; height: 48px; }
  .cart-related__name { font-size: 11px; }
  .cart-related__price { font-size: 11px; }
  .cart-related__add { font-size: 11px; padding: 5px 8px; }
  .cart-related__add-label { display: none; }
}

/* ── Recently Viewed — cart drawer ── */
#cart-drawer-recent { flex-shrink: 0; }
#cart-drawer-recent:not(:empty) {
  padding: 12px 16px 14px;
  border-top: 1px solid #EFE3D4;
}
.rv-drawer-title {
  font-size: 11px; font-weight: 700; color: #bbb;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px;
}
.rv-drawer-strip { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.rv-drawer-strip::-webkit-scrollbar { display: none; }
.rv-drawer-card {
  flex: 0 0 72px; cursor: pointer; text-align: center; transition: opacity 0.2s;
}
.rv-drawer-card:hover { opacity: 0.7; }
.rv-drawer-card img {
  width: 72px; height: 72px; object-fit: cover; border-radius: 8px; display: block;
}
.rv-drawer-card__name {
  font-size: 9.5px; color: #555; margin-top: 3px; display: block;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis; max-width: 72px;
}
.rv-drawer-card__price { font-size: 10px; color: #8b7355; font-weight: 700; display: block; }

/* ── Recently Viewed — homepage strip ── */
.rv-section { background: #faf7f2; padding: 36px 24px; border-top: 1px solid #e8dfd2; }
.rv-section__inner { max-width: 1200px; margin: 0 auto; }
.rv-section__title { font-size: 1.15rem; font-weight: 700; color: #5a7a5a; margin-bottom: 18px; }
.rv-strip { display: flex; gap: 14px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.rv-strip::-webkit-scrollbar { display: none; }
.rv-card {
  flex: 0 0 150px; background: white; border-radius: 10px; padding: 11px;
  cursor: pointer; border: 1px solid #e8dfd2; transition: all 0.2s; text-align: center;
}
.rv-card:hover {
  border-color: #8b7355; box-shadow: 0 4px 14px rgba(0,0,0,0.1); transform: translateY(-2px);
}
.rv-card__img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; margin-bottom: 8px;
}
.rv-card__name {
  font-size: 0.78rem; color: #333; margin-bottom: 4px; font-weight: 600;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.rv-card__price { font-size: 0.82rem; color: #8b7355; font-weight: 700; }

/* ── OOS cart item ── */
.cart-box--oos { opacity: 0.6; }
.cart-box__oos-label {
  font-size: 11px; font-weight: 700; color: #c0392b;
  margin: 3px 0 4px; letter-spacing: 0.02em;
}
.cart-box--oos .cart__quantity { display: none; }

/* ── International shipping notice ── */
.checkout-intl-msg {
  background: #fff8e8; border: 1px solid #f0d98a; border-radius: 8px;
  padding: 12px 14px; font-size: 13px; color: #7a6020; line-height: 1.5;
}
select.detalii-livrare-input__fields {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 32px; cursor: pointer;
}

/* ── Checkout live totals ── */
.co-totals {
  border: 1px solid #e0d5c5; border-radius: 10px;
  margin: 10px 0 12px; overflow: hidden;
}
.co-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 14px; font-size: 13.5px; color: #555;
  border-bottom: 1px solid #f0e8dc;
}
.co-row:last-child { border-bottom: none; }
.co-row--discount { background: #f4fbf4; }
.co-row--total {
  background: #faf7f2; padding: 11px 14px;
  font-size: 15px; font-weight: 700; color: #3a3a3a;
}
.co-label--discount { color: #2e7d32; }
.co-val { font-weight: 600; }
.co-val--discount { color: #2e7d32; }
.co-val--free { color: #2e7d32; }
.co-val--tbd { color: #a06c00; font-style: italic; font-weight: normal; }
.co-val--total { color: #8b7355; }

/* ── Checkout info notice ── */
.checkout-info-notice {
  background: #faf7f2; border: 1px solid #e8dfd2; border-radius: 10px;
  padding: 12px 16px; margin: 0 0 14px; display: flex; flex-direction: column; gap: 9px;
}
.checkout-info-row {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: #555; line-height: 1.45;
}
.checkout-info-icon { flex-shrink: 0; font-size: 15px; margin-top: 1px; }

/* ── Free shipping progress bar — cart drawer ── */
#cart-shipping-bar {
  padding: 14px 18px 16px;
  border-top: 1px solid #e8dfd2;
  background: #faf7f2;
  display: none;
}
#cart-shipping-bar.sb-visible { display: block; }
.sb-title {
  font-size: 11.5px; font-weight: 700; color: #555;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 10px; text-align: center;
}
.sb-title strong { color: #8b7355; }
/* track wrapper — overflow visible so truck peeks out */
.sb-track-wrap { position: relative; padding-bottom: 6px; }
.sb-track {
  height: 14px; background: #e0d8cc; border-radius: 20px;
  overflow: visible; position: relative;
}
.sb-fill {
  height: 100%; min-width: 20px;
  background: linear-gradient(90deg, #4a6e4a 0%, #6db36d 100%);
  border-radius: 20px; position: relative;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.sb-truck {
  position: absolute; right: -14px; top: 50%;
  transform: translateY(-58%);
  font-size: 22px; line-height: 1;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.18));
  transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.sb-edge-labels {
  display: flex; justify-content: space-between;
  font-size: 10px; color: #aaa; margin-top: 8px;
}
.sb-edge-labels span:last-child { color: #8b7355; font-weight: 700; }
/* reached state */
#cart-shipping-bar.sb-reached { background: #eef6ee; border-top-color: #b2d8b2; }
.sb-reached-card {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #e8f5e8 0%, #f0faf0 100%);
  border: 1px solid #a8d8a8; border-radius: 12px;
  padding: 12px 14px;
}
.sb-reached-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: linear-gradient(135deg, #3d7a3d, #5a9a5a);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  box-shadow: 0 3px 10px rgba(60,120,60,0.35);
}
.sb-reached-text { flex: 1; }
.sb-reached-text strong { display: block; font-size: 13.5px; color: #1e5c1e; font-weight: 800; }
.sb-reached-text span   { font-size: 11px; color: #4a7a4a; margin-top: 1px; display: block; }
.sb-reached-card--gift { background: linear-gradient(135deg, #faf3e8 0%, #fff8f0 100%); border-color: #e0c8a0; margin-bottom: 8px; }
/* Milestone marker on progress bar */
.sb-milestone {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: #e0d8cc; border: 2px solid #ccc;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; z-index: 2;
  transition: background 0.4s, border-color 0.4s;
}
.sb-milestone--reached { background: #fff8e1; border-color: #f0c060; }
.sb-milestone-icon { line-height: 1; }
.sb-edge-gift { color: #8b7355; font-weight: 600; }

/* ── Free shipping mini bar — inside toast ── */
.cart-toast__shipping {
  border-top: 1px solid #ede8e0; margin-top: 9px; padding-top: 9px; width: 100%;
}
.cart-toast__shipping-label {
  font-size: 11px; color: #888; margin-bottom: 6px;
}
.cart-toast__shipping-label strong { color: #555; }
.cart-toast__shipping-track {
  height: 8px; background: #ede8e0; border-radius: 20px;
  overflow: hidden;
}
.cart-toast__shipping-fill {
  height: 100%; background: linear-gradient(90deg, #4a6e4a, #6db36d);
  border-radius: 20px; transition: width 0.5s ease;
}
.cart-toast__shipping--reached {
  font-size: 11.5px; font-weight: 700; color: #2e6b2e;
}
.cart-toast__gift-line {
  display: block; color: #6b5440; margin-bottom: 3px;
}

/* ── OOS card + stock badges ── */
.card__image { position: relative; }
.stock-badge {
  position: absolute; bottom: 8px; left: 8px;
  font-size: 9.5px; font-weight: 700; line-height: 1;
  padding: 4px 7px; border-radius: 20px;
  pointer-events: none; display: none;
}
.stock-badge:not(:empty) { display: block; }
.stock-badge--oos  { background: #e53e3e; color: #fff; }
.stock-badge--low  { background: #f59e0b; color: #fff; }
.card--oos .card__image img { opacity: 0.5; }
.card--oos .card__title h3  { color: #aaa; }

/* ── Add-to-cart toast ── */
#cart-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease;
  background: #fff; border: 1px solid #e8dfd2;
  border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  padding: 12px 14px 12px 12px;
  display: flex; align-items: flex-start; gap: 12px;
  z-index: 99999; min-width: 290px; max-width: 92vw;
  pointer-events: none;
}
#cart-toast.cart-toast--visible {
  opacity: 1; transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.cart-toast__icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: #5a7a5a; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700;
}
.cart-toast__body { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.cart-toast__title {
  font-size: 13px; font-weight: 700; color: #333;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.cart-toast__sub { font-size: 11px; color: #999; margin-top: 1px; }
.cart-toast__btn {
  flex-shrink: 0; background: #8b7355; color: #fff;
  border: none; border-radius: 8px; padding: 7px 13px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  font-family: inherit; white-space: nowrap;
}
.cart-toast__btn:hover { background: #7a6248; }

/* ── SEO anchor overlay on product cards ──
   Invisible <a href="/produs/slug"> that lets Googlebot discover
   product pages without breaking the SPA click-to-preview UX.
   Buttons (favourite, desc-toggle, etc.) sit above it via z-index. */
.card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-decoration: none;
  color: transparent;
  font-size: 0;
  overflow: hidden;
  border-radius: inherit;
}
.card__link:focus { outline: none; }
.card__favourite { z-index: 2; } /* already position:absolute above */
.card__desc-toggle { position: relative; z-index: 2; }


/* ── Variant swap transitions ──────────────────────────────────────────
   When the customer picks a different yin-yang, the image and title fade
   briefly so the change feels gentle rather than instant. */
.card__image img,
.preview-item__image {
  transition: opacity 0.18s ease, transform 0.3s ease;
}
.card__image img.variant-img-swapping,
.preview-item__image.variant-img-swapping {
  opacity: 0.25;
}
.card__title h3,
.preview-title {
  transition: opacity 0.18s ease;
}
.card__title h3.variant-text-swapping,
.preview-title.variant-text-swapping {
  opacity: 0.4;
}

/* ── Yin-Yang variant markers on listing card ───────────────────────────
   Each variant is shown as a stylized yin-yang where the "yin" curve uses
   the variant color. Click one to swap the card's image, title, price, and
   stock badge to that variant. Selected one gets a green ring + lift. */
.variant-dots {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 10px 0 8px;
  padding: 8px 12px;
  position: relative;
  z-index: 2;
  /* Cozy warm band so the row reads as its own interactive zone, not body text */
  background: rgba(139, 115, 85, 0.07);
  border: 1px solid rgba(139, 115, 85, 0.22);
  border-radius: 12px;
}
.variant-dots__label {
  font-size: 13.5px;
  color: #8b7355;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.variant-dots__spark {
  font-size: 12px;
  line-height: 1;
}
.variant-dots__row {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  min-height: 30px;
}
.variant-dot {
  width: 30px;
  height: 30px;
  border: 2px solid transparent;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, border-color 0.15s ease, filter 0.15s ease;
}
.variant-dot .variant-yy {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  transition: transform 0.4s ease;
}
.variant-dot:hover:not(:disabled) {
  transform: scale(1.15);
}
.variant-dot:hover:not(:disabled) .variant-yy {
  /* Subtle "spin" on hover — gives the yin-yang a sense of motion */
  transform: rotate(15deg);
}
.variant-dot.selected {
  border-color: #5A7A5A;
}
.variant-dot.selected .variant-yy {
  /* The selected one's yin-yang slowly rotates into place */
  transform: rotate(0deg);
}
.variant-dot--oos {
  cursor: not-allowed;
  opacity: 0.45;
}
.variant-dot--oos::after {
  content: '';
  position: absolute;
  top: 50%; left: -2px; right: -2px;
  height: 1.5px;
  background: #888;
  transform: rotate(-30deg);
  transform-origin: center;
  z-index: 2;
}

/* ── Variant picker inside product preview ─────────────────────────────
   Larger interactive swatches under the description in the preview modal.
   Customer clicks one → image swaps, label updates, add-to-cart targets
   the chosen variant. */
.variant-picker {
  margin: 14px 0 18px;
  padding: 12px 0 0;
  border-top: 1px solid #eee2d2;
}
.variant-picker__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}
.variant-picker__label {
  color: #666;
  font-weight: 500;
}
.variant-picker__value {
  color: #1b3816;
  font-weight: 700;
}
.variant-picker__swatches {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  padding: 4px 0 6px;
}
/* Larger yin-yang swatches inside the preview — finger-tappable on mobile,
   with a slow rotate-in on select for a calm/spiritual touch. */
.variant-swatch {
  width: 42px;
  height: 42px;
  border: 2px solid transparent;
  border-radius: 50%;
  padding: 2px;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, border-color 0.15s ease, filter 0.15s ease;
}
.variant-swatch .variant-yy {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  transition: transform 0.5s ease;
}
.variant-swatch:hover:not(:disabled) {
  transform: scale(1.08);
  filter: brightness(1.04);
}
.variant-swatch:hover:not(:disabled) .variant-yy {
  transform: rotate(20deg);
}
.variant-swatch.selected {
  border-color: #5A7A5A;
  border-width: 2.5px;
}
.variant-swatch.selected .variant-yy {
  transform: rotate(0deg);
}
.variant-swatch--oos {
  cursor: not-allowed;
  opacity: 0.4;
}
.variant-swatch--oos::after {
  content: '';
  position: absolute;
  top: 50%; left: 4%; right: 4%;
  height: 2px;
  background: #999;
  transform: rotate(-30deg);
  transform-origin: center;
  z-index: 2;
}

/* ── Blog link in nav: warm "another universe" treatment ──
   Different color than other menu items, soft golden glow on hover,
   subtle constant breathing pulse to draw the eye to the blog universe. */
.menu-item--blog {
  color: #8b7355 !important;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.3px;
  text-shadow: 0 0 10px rgba(139, 115, 85, 0);
  transition: text-shadow 0.3s ease, color 0.2s ease, transform 0.25s ease;
  animation: blog-link-pulse 3.5s ease-in-out infinite;
}
.menu-item--blog .menu-item__icon {
  display: inline-block;
  margin-right: 6px;
  font-size: 0.95em;
  vertical-align: -1px;
  filter: drop-shadow(0 0 4px rgba(139, 115, 85, 0.35));
  transition: transform 0.3s ease;
}
.menu-item--blog:hover {
  color: #6b5440 !important;
  text-shadow: 0 0 14px rgba(139, 115, 85, 0.45);
  transform: translateY(-1px);
}
.menu-item--blog:hover .menu-item__icon {
  transform: rotate(-12deg) scale(1.15);
}
@keyframes blog-link-pulse {
  0%, 100% { text-shadow: 0 0 0 rgba(139, 115, 85, 0); }
  50%      { text-shadow: 0 0 8px rgba(139, 115, 85, 0.25); }
}
@media (prefers-reduced-motion: reduce) {
  .menu-item--blog { animation: none; }
}

/* Footer blog CTA — small invitation badge under the tagline */
.footer__blog-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.18) 0%, rgba(139, 115, 85, 0.08) 100%);
  border: 1px solid rgba(139, 115, 85, 0.4);
  border-radius: 24px;
  color: #d4a574;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-style: italic;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 0 rgba(139, 115, 85, 0);
}
.footer__blog-cta:hover {
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.32) 0%, rgba(139, 115, 85, 0.18) 100%);
  border-color: rgba(212, 165, 116, 0.7);
  color: #f0e0c8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.35);
}
.footer__blog-cta-icon {
  font-size: 1.2em;
  filter: drop-shadow(0 0 6px rgba(212, 165, 116, 0.5));
}
.footer__blog-cta-arrow {
  transition: transform 0.25s ease;
  font-size: 1.1em;
}
.footer__blog-cta:hover .footer__blog-cta-arrow {
  transform: translateX(4px);
}

/* ── Blog promo section (homepage) ──
   Companion to the dōTERRA section but in a slightly different cream tone
   to suggest "another universe" — content rather than products.
   dōTERRA uses #FAF0E6; we use a deeper, more golden gradient. */
.blog-promo-section {
  background: linear-gradient(135deg, #F5EFE2 0%, #EDE3D0 100%) !important;
  position: relative;
  overflow: hidden;
}
/* Soft decorative glow that breathes — gives it the "different universe" feel */
.blog-promo-section::before,
.blog-promo-section::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.16) 0%, transparent 70%);
  pointer-events: none;
  animation: blog-promo-breath 8s ease-in-out infinite;
}
.blog-promo-section::before {
  top: -120px; left: -100px;
}
.blog-promo-section::after {
  bottom: -120px; right: -100px;
  animation-delay: -4s;
}
@keyframes blog-promo-breath {
  0%, 100% { transform: scale(1);   opacity: 0.55; }
  50%      { transform: scale(1.15); opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .blog-promo-section::before,
  .blog-promo-section::after { animation: none; }
}

.blog-promo {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem 5rem !important;
}
.blog-promo h3 {
  color: #5C4A32;
}
.blog-promo h3::after {
  background: linear-gradient(90deg, transparent, #8b7355, transparent) !important;
}
.blog-promo-subtitle {
  font-size: 1.45rem;
  color: var(--color-text);
  max-width: 640px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}
.blog-promo-subtitle em {
  color: #5A7A5A;
  font-style: italic;
  font-weight: 600;
}

/* The CTA button — warm golden glow, lift on hover */
.blog-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2.5rem;
  padding: 1.2rem 2.6rem;
  background: linear-gradient(135deg, #8b7355 0%, #6b5440 100%);
  color: #fff8ea;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  border-radius: 30px;
  letter-spacing: 0.3px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 4px 16px rgba(139, 115, 85, 0.3),
              0 0 0 0 rgba(212, 165, 116, 0);
}
.blog-promo-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 8px 24px rgba(139, 115, 85, 0.4),
              0 0 22px rgba(212, 165, 116, 0.45);
}
.blog-promo-cta__icon {
  font-size: 1.15em;
  filter: drop-shadow(0 0 5px rgba(255, 248, 234, 0.5));
}
.blog-promo-cta__arrow {
  transition: transform 0.25s ease;
  font-size: 1.05em;
}
.blog-promo-cta:hover .blog-promo-cta__arrow {
  transform: translateX(5px);
}

@media (max-width: 600px) {
  .blog-promo { padding: 4rem 1.5rem !important; }
  .blog-promo-subtitle { font-size: 1.3rem; }
  .blog-promo-cta { font-size: 1.4rem; padding: 1rem 2rem; }
  .blog-promo-section::before,
  .blog-promo-section::after { width: 180px; height: 180px; }
}
