/* ============================================================
   Kim's Shea Butter Creations — Design System
   kimsheabutter.store
   Handmade Shea Butter & Natural Body Care E-Commerce
   ============================================================ */

/* ============================================================
   1. CSS RESET + CUSTOM PROPERTIES
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--charcoal);
  background-color: var(--ivory);
}

:root {
  /* ---- Brand Colors ---- */
  --honey:           #D4A056;
  --honey-light:     #E8C48A;
  --honey-dark:      #B5863A;
  --espresso:        #3C2415;
  --espresso-light:  #5A3E2B;
  --espresso-dark:   #2A1A0E;
  --ivory:           #FDF8F0;
  --ivory-dark:      #F3EBDC;
  --latte:           #C4A882;
  --sage:            #7B8F6A;
  --sage-light:      #96A987;
  --blush:           #D4A5A5;
  --charcoal:        #2D2D2D;

  /* ---- Semantic Colors ---- */
  --color-success:   #5E9A5E;
  --color-warning:   #D4A056;
  --color-error:     #C25757;
  --color-info:      #5B8DB8;

  /* ---- Overlay / Alpha ---- */
  --overlay-light:   rgba(253, 248, 240, 0.92);
  --overlay-dark:    rgba(42, 26, 14, 0.65);
  --overlay-medium:  rgba(60, 36, 21, 0.45);
  --shadow-color:    rgba(60, 36, 21, 0.12);

  /* ---- Typography ---- */
  --font-heading:    'Poppins', sans-serif;
  --font-body:       'Inter', sans-serif;
  --font-accent:     'Poppins', sans-serif;

  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.875rem;   /* 14px */
  --text-base:  1rem;       /* 16px */
  --text-md:    1.125rem;   /* 18px */
  --text-lg:    1.25rem;    /* 20px */
  --text-xl:    1.5rem;     /* 24px */
  --text-2xl:   1.875rem;   /* 30px */
  --text-3xl:   2.25rem;    /* 36px */
  --text-4xl:   3rem;       /* 48px */
  --text-5xl:   3.75rem;    /* 60px */

  --leading-tight:   1.2;
  --leading-snug:    1.35;
  --leading-normal:  1.6;
  --leading-relaxed: 1.75;

  --tracking-tight:  -0.025em;
  --tracking-normal:  0;
  --tracking-wide:    0.025em;
  --tracking-wider:   0.05em;
  --tracking-widest:  0.1em;

  /* ---- Spacing Scale ---- */
  --space-0:   0;
  --space-1:   0.25rem;   /* 4px */
  --space-2:   0.5rem;    /* 8px */
  --space-3:   0.75rem;   /* 12px */
  --space-4:   1rem;      /* 16px */
  --space-5:   1.25rem;   /* 20px */
  --space-6:   1.5rem;    /* 24px */
  --space-8:   2rem;      /* 32px */
  --space-10:  2.5rem;    /* 40px */
  --space-12:  3rem;      /* 48px */
  --space-16:  4rem;      /* 64px */
  --space-20:  5rem;      /* 80px */
  --space-24:  6rem;      /* 96px */
  --space-32:  8rem;      /* 128px */

  /* ---- Border Radius ---- */
  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;

  /* ---- Shadows ---- */
  --shadow-xs:    0 1px 2px var(--shadow-color);
  --shadow-sm:    0 2px 4px var(--shadow-color);
  --shadow-md:    0 4px 12px var(--shadow-color);
  --shadow-lg:    0 8px 24px var(--shadow-color);
  --shadow-xl:    0 12px 40px rgba(60, 36, 21, 0.18);
  --shadow-inner: inset 0 2px 4px var(--shadow-color);
  --shadow-honey: 0 4px 16px rgba(212, 160, 86, 0.3);
  --shadow-card:  0 2px 8px rgba(60, 36, 21, 0.08), 0 1px 3px rgba(60, 36, 21, 0.06);

  /* ---- Transitions ---- */
  --ease-default:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-in:       cubic-bezier(0.4, 0, 1, 1);
  --ease-out:      cubic-bezier(0, 0, 0.2, 1);
  --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast:   150ms;
  --duration-normal: 300ms;
  --duration-slow:   500ms;
  --transition-base: all var(--duration-normal) var(--ease-default);
  --transition-fast: all var(--duration-fast) var(--ease-default);
  --transition-slow: all var(--duration-slow) var(--ease-default);

  /* ---- Z-Index Scale ---- */
  --z-behind:     -1;
  --z-base:       0;
  --z-dropdown:   100;
  --z-sticky:     200;
  --z-header:     300;
  --z-overlay:    400;
  --z-drawer:     500;
  --z-modal:      600;
  --z-toast:      700;
  --z-tooltip:    800;
  --z-max:        999;

  /* ---- Container ---- */
  --container-sm:  640px;
  --container-md:  768px;
  --container-lg:  1024px;
  --container-xl:  1280px;
  --container-2xl: 1440px;
  --container-pad: var(--space-4);
}

/* --- Base element resets --- */

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
}

/* Remove default focus for mouse users, keep for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 2px;
}

::selection {
  background-color: var(--honey-light);
  color: var(--espresso-dark);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--ivory-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--latte);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--honey);
}


/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--espresso);
}

h1 {
  font-size: var(--text-3xl);
  font-weight: 700;
}

h2 {
  font-size: var(--text-2xl);
}

h3 {
  font-size: var(--text-xl);
}

h4 {
  font-size: var(--text-lg);
}

h5 {
  font-size: var(--text-md);
}

h6 {
  font-size: var(--text-base);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

p {
  margin-bottom: var(--space-4);
  line-height: var(--leading-normal);
}

p:last-child {
  margin-bottom: 0;
}

.text-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--espresso-light);
}

.text-caption {
  font-size: var(--text-sm);
  color: var(--latte);
  letter-spacing: var(--tracking-wide);
}

.text-overline {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--honey-dark);
}

.text-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--espresso);
}

.text-price--sale {
  color: var(--color-error);
}

.text-price--original {
  text-decoration: line-through;
  color: var(--latte);
  font-weight: 400;
}

.text-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--honey-dark);
}

strong, b {
  font-weight: 600;
}

em, i {
  font-style: italic;
}

small {
  font-size: var(--text-sm);
}

blockquote {
  border-left: 4px solid var(--honey);
  padding: var(--space-4) var(--space-6);
  margin: var(--space-6) 0;
  background: var(--ivory-dark);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--espresso-light);
}

mark {
  background: var(--honey-light);
  padding: 0 var(--space-1);
  border-radius: var(--radius-sm);
}

hr {
  border: none;
  border-top: 1px solid var(--ivory-dark);
  margin: var(--space-8) 0;
}

@media (min-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
  h4 { font-size: var(--text-xl); }
}

@media (min-width: 1024px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
}


/* ============================================================
   3. LAYOUT — CONTAINER, GRID, FLEX UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.container--narrow {
  max-width: var(--container-md);
}

.container--wide {
  max-width: var(--container-2xl);
}

.container--full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid--2 { grid-template-columns: repeat(1, 1fr); }
.grid--3 { grid-template-columns: repeat(1, 1fr); }
.grid--4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 768px) {
  .container { --container-pad: var(--space-6); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .container { --container-pad: var(--space-8); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Flex */
.flex              { display: flex; }
.flex--wrap        { flex-wrap: wrap; }
.flex--col         { flex-direction: column; }
.flex--center      { align-items: center; justify-content: center; }
.flex--between     { justify-content: space-between; }
.flex--start       { align-items: flex-start; }
.flex--end         { justify-content: flex-end; }
.flex--align-center { align-items: center; }
.flex--gap-2       { gap: var(--space-2); }
.flex--gap-4       { gap: var(--space-4); }
.flex--gap-6       { gap: var(--space-6); }
.flex--gap-8       { gap: var(--space-8); }

/* Section spacing */
.section {
  padding: var(--space-16) 0;
}

.section--sm {
  padding: var(--space-10) 0;
}

.section--lg {
  padding: var(--space-24) 0;
}

.section--ivory {
  background-color: var(--ivory);
}

.section--ivory-dark {
  background-color: var(--ivory-dark);
}

.section--espresso {
  background-color: var(--espresso);
  color: var(--ivory);
}

.section--espresso h1,
.section--espresso h2,
.section--espresso h3,
.section--espresso h4,
.section--espresso h5,
.section--espresso h6 {
  color: var(--honey-light);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section__header .text-overline {
  display: block;
  margin-bottom: var(--space-3);
}

.section__header p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--espresso-light);
}


/* ============================================================
   4. HEADER / NAVIGATION
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background-color: var(--overlay-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 168, 130, 0.15);
  transition: var(--transition-base);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--espresso);
  color: var(--honey-light);
  text-align: center;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
}

.announcement-bar a {
  color: var(--honey);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-bar a:hover {
  color: var(--honey-light);
}

/* Nav container */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--container-pad);
  max-width: var(--container-2xl);
  margin: 0 auto;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--espresso);
  white-space: nowrap;
  z-index: calc(var(--z-header) + 1);
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__logo-text span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--honey-dark);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-top: -2px;
}

/* Desktop links */
.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--espresso-light);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--duration-fast) var(--ease-default);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--honey);
  transition: width var(--duration-normal) var(--ease-default);
}

.nav__link:hover,
.nav__link--active {
  color: var(--honey-dark);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3) 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-fast) var(--ease-default),
              transform var(--duration-fast) var(--ease-default),
              visibility var(--duration-fast);
  pointer-events: none;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav__dropdown-item {
  display: block;
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  color: var(--espresso-light);
  transition: var(--transition-fast);
  text-transform: none;
  letter-spacing: 0;
}

.nav__dropdown-item:hover {
  background: var(--ivory-dark);
  color: var(--honey-dark);
}

/* Nav actions (search, cart, account) */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--espresso-light);
  transition: var(--transition-fast);
}

.nav__action-btn:hover {
  background: var(--ivory-dark);
  color: var(--honey-dark);
}

.nav__action-btn svg {
  width: 22px;
  height: 22px;
}

/* Cart count badge */
.nav__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  background: var(--honey);
  color: var(--espresso-dark);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 4px;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  z-index: calc(var(--z-header) + 2);
}

.nav__hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--espresso);
  border-radius: 2px;
  transition: var(--transition-base);
  transform-origin: center;
}

/* Hamburger open state */
.nav__hamburger--open .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger--open .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--open .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.nav__mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--ivory);
  z-index: var(--z-header);
  padding: calc(64px + var(--space-8)) var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transform: translateX(-100%);
  transition: transform var(--duration-normal) var(--ease-default);
  overflow-y: auto;
}

.nav__mobile--open {
  transform: translateX(0);
}

.nav__mobile-link {
  display: block;
  padding: var(--space-4) 0;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--espresso);
  border-bottom: 1px solid var(--ivory-dark);
  transition: color var(--duration-fast) var(--ease-default);
}

.nav__mobile-link:hover,
.nav__mobile-link--active {
  color: var(--honey-dark);
}

.nav__mobile-cta {
  margin-top: auto;
  padding-top: var(--space-6);
}

/* Search overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  z-index: var(--z-overlay);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

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

.search-overlay__inner {
  width: 90%;
  max-width: 600px;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-xl);
  transform: translateY(-20px);
  transition: transform var(--duration-normal) var(--ease-out);
}

.search-overlay--open .search-overlay__inner {
  transform: translateY(0);
}

.search-overlay__input {
  width: 100%;
  padding: var(--space-4) var(--space-6);
  border: 2px solid var(--ivory-dark);
  border-radius: var(--radius-full);
  font-size: var(--text-lg);
  background: var(--ivory);
  transition: var(--transition-fast);
}

.search-overlay__input:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: var(--shadow-honey);
}

@media (min-width: 768px) {
  .nav { height: 72px; }
  .nav__logo { font-size: var(--text-xl); }
}

@media (min-width: 1024px) {
  .nav__hamburger { display: none; }
  .nav__links { display: flex; }
  .nav__mobile { display: none; }
  .nav { height: 80px; }
}


/* ============================================================
   5. HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--espresso);
}

.hero--full {
  min-height: 100vh;
  min-height: 100dvh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-base);
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 26, 14, 0.75) 0%,
    rgba(60, 36, 21, 0.45) 50%,
    rgba(42, 26, 14, 0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: var(--space-20) var(--container-pad);
  color: var(--ivory);
}

.hero__overline {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--honey-light);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-6);
  max-width: 700px;
  line-height: var(--leading-tight);
}

.hero__subtitle {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-8);
  max-width: 520px;
  line-height: var(--leading-relaxed);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Decorative badge on hero */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(212, 160, 86, 0.2);
  border: 1px solid rgba(212, 160, 86, 0.4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--honey-light);
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .hero { min-height: 80vh; }
  .hero__title { font-size: var(--text-4xl); }
  .hero__subtitle { font-size: var(--text-lg); }
}

@media (min-width: 1024px) {
  .hero__title { font-size: var(--text-5xl); }
}


/* ============================================================
   6. CATEGORY CARDS
   ============================================================ */

.categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.category-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  group: true;
}

.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-default);
}

.category-card:hover .category-card__img {
  transform: scale(1.08);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 26, 14, 0.7) 0%,
    rgba(42, 26, 14, 0.1) 50%,
    transparent 100%
  );
  transition: var(--transition-base);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(
    to top,
    rgba(42, 26, 14, 0.8) 0%,
    rgba(42, 26, 14, 0.2) 60%,
    transparent 100%
  );
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  color: white;
  transform: translateY(8px);
  transition: transform var(--duration-normal) var(--ease-default);
}

.category-card:hover .category-card__content {
  transform: translateY(0);
}

.category-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-1);
}

.category-card__count {
  font-size: var(--text-sm);
  color: var(--honey-light);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition-base);
}

.category-card:hover .category-card__count {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .categories { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
  .category-card__title { font-size: var(--text-xl); }
}

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


/* ============================================================
   7. PRODUCT CARDS
   ============================================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
}

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

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ivory-dark);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-default);
}

.product-card:hover .product-card__image {
  transform: scale(1.06);
}

/* Secondary image on hover */
.product-card__image--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-default);
}

.product-card:hover .product-card__image--hover {
  opacity: 1;
}

/* Badge on product card */
.product-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 2;
}

/* Wishlist button */
.product-card__wishlist {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(-4px);
  transition: var(--transition-base);
  z-index: 2;
}

.product-card:hover .product-card__wishlist {
  opacity: 1;
  transform: translateY(0);
}

.product-card__wishlist:hover {
  background: white;
  color: var(--color-error);
}

.product-card__wishlist svg {
  width: 18px;
  height: 18px;
}

/* Quick add overlay */
.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3);
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-default);
  z-index: 2;
}

.product-card:hover .product-card__quick-add {
  transform: translateY(0);
}

/* Card body */
.product-card__body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__category {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--sage);
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: var(--space-2);
  line-height: var(--leading-snug);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--duration-fast) var(--ease-default);
}

.product-card__name:hover {
  color: var(--honey-dark);
}

/* Rating */
.product-card__rating {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.product-card__stars {
  display: flex;
  gap: 1px;
  color: var(--honey);
}

.product-card__stars svg {
  width: 14px;
  height: 14px;
}

.product-card__stars--empty {
  color: var(--ivory-dark);
}

.product-card__review-count {
  font-size: var(--text-xs);
  color: var(--latte);
}

/* Price */
.product-card__price {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
}

.product-card__price-current {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--espresso);
}

.product-card__price-original {
  font-size: var(--text-sm);
  color: var(--latte);
  text-decoration: line-through;
}

/* Size variants on card */
.product-card__variants {
  display: flex;
  gap: var(--space-1);
  margin-top: var(--space-2);
}

.product-card__variant {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  border: 2px solid var(--ivory-dark);
  transition: var(--transition-fast);
}

.product-card__variant:hover {
  border-color: var(--honey);
}

/* Horizontal product card variant */
.product-card--horizontal {
  flex-direction: row;
}

.product-card--horizontal .product-card__image-wrap {
  width: 120px;
  min-width: 120px;
  aspect-ratio: auto;
}

.product-card--horizontal .product-card__body {
  padding: var(--space-3);
}


/* ============================================================
   8. PRODUCT DETAIL PAGE
   ============================================================ */

.product-detail {
  padding: var(--space-8) 0;
}

.product-detail__layout {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .product-detail__layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

/* Image gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.product-gallery__main {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ivory-dark);
}

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

.product-gallery__zoom {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.product-gallery__zoom:hover {
  background: white;
  box-shadow: var(--shadow-md);
}

.product-gallery__thumbs {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  padding-bottom: var(--space-2);
  -webkit-overflow-scrolling: touch;
}

.product-gallery__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  opacity: 0.6;
}

.product-gallery__thumb--active,
.product-gallery__thumb:hover {
  border-color: var(--honey);
  opacity: 1;
}

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

/* Product info */
.product-info {
  display: flex;
  flex-direction: column;
}

.product-info__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--latte);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.product-info__breadcrumb a:hover {
  color: var(--honey-dark);
}

.product-info__breadcrumb-sep {
  color: var(--ivory-dark);
}

.product-info__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.product-info__rating {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.product-info__rating-stars {
  display: flex;
  gap: 2px;
  color: var(--honey);
}

.product-info__rating-stars svg {
  width: 18px;
  height: 18px;
}

.product-info__rating-text {
  font-size: var(--text-sm);
  color: var(--latte);
}

.product-info__rating-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-info__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--ivory-dark);
}

.product-info__price-current {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--espresso);
}

.product-info__price-original {
  font-size: var(--text-lg);
  color: var(--latte);
  text-decoration: line-through;
}

.product-info__price-save {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-error);
  background: rgba(194, 87, 87, 0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.product-info__description {
  margin-bottom: var(--space-6);
  color: var(--espresso-light);
  line-height: var(--leading-relaxed);
}

/* Variant selector */
.product-options {
  margin-bottom: var(--space-6);
}

.product-option {
  margin-bottom: var(--space-5);
}

.product-option__label {
  display: block;
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
  color: var(--espresso);
}

.product-option__values {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.product-option__value {
  padding: var(--space-2) var(--space-4);
  border: 2px solid var(--ivory-dark);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-option__value:hover {
  border-color: var(--honey);
}

.product-option__value--selected {
  border-color: var(--honey);
  background: var(--honey);
  color: white;
}

.product-option__value--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Color swatches */
.product-option__swatch {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 3px solid var(--ivory-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-option__swatch:hover,
.product-option__swatch--selected {
  border-color: var(--honey);
  box-shadow: 0 0 0 2px var(--honey);
}

/* Quantity selector */
.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--ivory-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.quantity-selector__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: var(--text-lg);
  color: var(--espresso-light);
  transition: var(--transition-fast);
}

.quantity-selector__btn:hover {
  background: var(--ivory-dark);
  color: var(--honey-dark);
}

.quantity-selector__input {
  width: 52px;
  height: 44px;
  text-align: center;
  font-weight: 600;
  font-size: var(--text-base);
  border: none;
  border-left: 1px solid var(--ivory-dark);
  border-right: 1px solid var(--ivory-dark);
  background: transparent;
  -moz-appearance: textfield;
}

.quantity-selector__input::-webkit-inner-spin-button,
.quantity-selector__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* Add to cart area */
.product-info__add-to-cart {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-6);
}

/* Product meta (SKU, tags, sharing) */
.product-meta {
  padding-top: var(--space-6);
  border-top: 1px solid var(--ivory-dark);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--latte);
}

.product-meta__item span {
  color: var(--espresso-light);
  font-weight: 500;
}

/* Product tabs */
.product-tabs {
  margin-top: var(--space-16);
}

.product-tabs__nav {
  display: flex;
  border-bottom: 2px solid var(--ivory-dark);
  gap: var(--space-8);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.product-tabs__tab {
  padding: var(--space-4) 0;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--latte);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition-fast);
}

.product-tabs__tab:hover {
  color: var(--espresso);
}

.product-tabs__tab--active {
  color: var(--espresso);
  border-bottom-color: var(--honey);
}

.product-tabs__content {
  padding: var(--space-8) 0;
}

.product-tabs__panel {
  display: none;
}

.product-tabs__panel--active {
  display: block;
  animation: fadeIn var(--duration-normal) var(--ease-default);
}

/* Ingredients list */
.ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.ingredient-tag {
  padding: var(--space-2) var(--space-4);
  background: var(--ivory-dark);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--sage);
  font-weight: 500;
}


/* ============================================================
   9. CART PAGE
   ============================================================ */

.cart-page {
  padding: var(--space-12) 0;
}

.cart-page__layout {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .cart-page__layout {
    grid-template-columns: 1fr 380px;
    align-items: start;
  }
}

.cart-page__title {
  margin-bottom: var(--space-8);
}

.cart-page__count {
  font-weight: 400;
  color: var(--latte);
  font-size: var(--text-lg);
}

/* Cart empty state */
.cart-empty {
  text-align: center;
  padding: var(--space-20) var(--space-4);
}

.cart-empty__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  color: var(--latte);
}

.cart-empty__title {
  margin-bottom: var(--space-3);
}

.cart-empty__text {
  color: var(--latte);
  margin-bottom: var(--space-8);
}

/* Cart line items */
.cart-items {
  display: flex;
  flex-direction: column;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--ivory-dark);
  align-items: start;
}

@media (min-width: 768px) {
  .cart-item {
    grid-template-columns: 120px 1fr auto auto;
    align-items: center;
  }
}

.cart-item__image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ivory-dark);
}

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

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.cart-item__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--espresso);
}

.cart-item__variant {
  font-size: var(--text-sm);
  color: var(--latte);
}

.cart-item__price {
  font-weight: 600;
  color: var(--espresso);
}

.cart-item__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-3);
}

@media (min-width: 768px) {
  .cart-item__actions {
    margin-top: 0;
  }
}

.cart-item__remove {
  font-size: var(--text-sm);
  color: var(--latte);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--duration-fast) var(--ease-default);
}

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

.cart-item__total {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--espresso);
  text-align: right;
}

/* Cart summary */
.cart-summary {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 100px;
}

.cart-summary__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--ivory-dark);
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  font-size: var(--text-base);
}

.cart-summary__row--total {
  border-top: 2px solid var(--ivory-dark);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--espresso);
}

.cart-summary__label {
  color: var(--espresso-light);
}

.cart-summary__value {
  font-weight: 600;
}

.cart-summary__value--free {
  color: var(--sage);
}

/* Promo code */
.cart-promo {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--ivory-dark);
}

.cart-promo__form {
  display: flex;
  gap: var(--space-2);
}

.cart-promo__input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--ivory-dark);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  background: var(--ivory);
  transition: var(--transition-fast);
}

.cart-promo__input:focus {
  outline: none;
  border-color: var(--honey);
}

.cart-summary__checkout {
  margin-top: var(--space-6);
  width: 100%;
}

.cart-summary__note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--latte);
  margin-top: var(--space-4);
}

/* Free shipping progress */
.cart-shipping-progress {
  margin: var(--space-6) 0;
  padding: var(--space-4);
  background: var(--ivory);
  border-radius: var(--radius-md);
}

.cart-shipping-progress__text {
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
  color: var(--espresso-light);
}

.cart-shipping-progress__text strong {
  color: var(--sage);
}

.cart-shipping-progress__bar {
  height: 6px;
  background: var(--ivory-dark);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.cart-shipping-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  border-radius: var(--radius-full);
  transition: width var(--duration-slow) var(--ease-default);
}


/* ============================================================
   10. CART DRAWER / SIDEBAR
   ============================================================ */

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-dark);
  z-index: var(--z-drawer);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  height: 100dvh;
  background: white;
  z-index: calc(var(--z-drawer) + 1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-normal) var(--ease-default);
  box-shadow: var(--shadow-xl);
}

.cart-drawer--open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  border-bottom: 1px solid var(--ivory-dark);
  flex-shrink: 0;
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--espresso);
}

.cart-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--espresso-light);
  transition: var(--transition-fast);
}

.cart-drawer__close:hover {
  background: var(--ivory-dark);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
}

.cart-drawer__item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--ivory-dark);
}

.cart-drawer__item-image {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

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

.cart-drawer__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.cart-drawer__item-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--espresso);
}

.cart-drawer__item-variant {
  font-size: var(--text-xs);
  color: var(--latte);
}

.cart-drawer__item-price {
  font-weight: 600;
  font-size: var(--text-sm);
}

.cart-drawer__item-remove {
  font-size: var(--text-xs);
  color: var(--latte);
  text-decoration: underline;
  margin-top: auto;
}

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

/* Drawer footer */
.cart-drawer__footer {
  padding: var(--space-6);
  border-top: 1px solid var(--ivory-dark);
  flex-shrink: 0;
  background: var(--ivory);
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
}

.cart-drawer__subtotal-label {
  font-weight: 500;
  color: var(--espresso-light);
}

.cart-drawer__subtotal-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--espresso);
}

.cart-drawer__shipping-note {
  font-size: var(--text-xs);
  color: var(--latte);
  text-align: center;
  margin-bottom: var(--space-4);
}

.cart-drawer__checkout-btn {
  width: 100%;
  margin-bottom: var(--space-3);
}

.cart-drawer__continue {
  display: block;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--latte);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-drawer__continue:hover {
  color: var(--honey-dark);
}


/* ============================================================
   11. CHECKOUT PAGE
   ============================================================ */

.checkout {
  padding: var(--space-12) 0;
  min-height: 100vh;
  background: var(--ivory);
}

.checkout__layout {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .checkout__layout {
    grid-template-columns: 1fr 400px;
    align-items: start;
  }
}

/* Checkout steps indicator */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--latte);
}

.checkout-step__number {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--ivory-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-xs);
}

.checkout-step--active .checkout-step__number {
  background: var(--honey);
  color: white;
}

.checkout-step--completed .checkout-step__number {
  background: var(--sage);
  color: white;
}

.checkout-step--active {
  color: var(--espresso);
  font-weight: 600;
}

.checkout-step__line {
  width: 40px;
  height: 2px;
  background: var(--ivory-dark);
}

.checkout-step--completed + .checkout-step__line {
  background: var(--sage);
}

/* Checkout form sections */
.checkout-section {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-card);
}

.checkout-section__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--ivory-dark);
}

.checkout-section__title span {
  color: var(--latte);
  font-weight: 400;
  font-size: var(--text-sm);
  margin-left: var(--space-2);
}

/* Form grid inside checkout */
.checkout-form-grid {
  display: grid;
  gap: var(--space-4);
}

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

.checkout-form-grid--full {
  grid-column: 1 / -1;
}

/* Payment method options */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.payment-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border: 2px solid var(--ivory-dark);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-fast);
}

.payment-method:hover {
  border-color: var(--latte);
}

.payment-method--selected {
  border-color: var(--honey);
  background: rgba(212, 160, 86, 0.05);
}

.payment-method__radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--latte);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-method--selected .payment-method__radio {
  border-color: var(--honey);
}

.payment-method--selected .payment-method__radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--honey);
}

.payment-method__label {
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--espresso);
}

.payment-method__icons {
  display: flex;
  gap: var(--space-2);
  margin-left: auto;
}

.payment-method__icons img {
  height: 24px;
  width: auto;
}

/* Card fields */
.card-fields {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--ivory-dark);
}

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

  .card-fields__number {
    grid-column: 1 / -1;
  }
}

/* Order summary in checkout */
.checkout-summary {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 100px;
}

.checkout-summary__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

.checkout-summary__items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--ivory-dark);
  padding-bottom: var(--space-4);
}

.checkout-summary__item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3) 0;
}

.checkout-summary__item-image {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: var(--ivory-dark);
}

.checkout-summary__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-summary__item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: var(--espresso);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-summary__item-info {
  flex: 1;
}

.checkout-summary__item-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--espresso);
}

.checkout-summary__item-variant {
  font-size: var(--text-xs);
  color: var(--latte);
}

.checkout-summary__item-price {
  font-weight: 600;
  font-size: var(--text-sm);
  white-space: nowrap;
}

/* Checkout totals */
.checkout-totals {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.checkout-totals__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-base);
}

.checkout-totals__row--total {
  border-top: 2px solid var(--ivory-dark);
  padding-top: var(--space-4);
  margin-top: var(--space-2);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--espresso);
}

.checkout-totals__label {
  color: var(--espresso-light);
}

.checkout-totals__value {
  font-weight: 600;
}

/* Checkout trust badges */
.checkout-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--ivory-dark);
}

.checkout-trust__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--latte);
}

.checkout-trust__item svg {
  width: 16px;
  height: 16px;
  color: var(--sage);
}


/* ============================================================
   12. ABOUT PAGE
   ============================================================ */

/* Story section */
.about-story {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .about-story {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.about-story__image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.about-story__quote {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--honey-dark);
  line-height: var(--leading-snug);
  margin: var(--space-4) 0;
  padding-left: var(--space-6);
  border-left: 3px solid var(--honey);
}

.about-story__signature {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--espresso);
  margin-top: var(--space-2);
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

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

.value-card {
  text-align: center;
  padding: var(--space-8);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
}

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

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  background: var(--ivory);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--honey-dark);
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
}

.value-card__title {
  font-size: var(--text-md);
  margin-bottom: var(--space-3);
}

.value-card__text {
  font-size: var(--text-sm);
  color: var(--espresso-light);
  line-height: var(--leading-relaxed);
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

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

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

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto var(--space-5);
  border: 4px solid var(--honey-light);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.team-card__role {
  font-size: var(--text-sm);
  color: var(--honey-dark);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.team-card__bio {
  font-size: var(--text-sm);
  color: var(--espresso-light);
  line-height: var(--leading-relaxed);
}

/* Timeline / milestones */
.timeline {
  position: relative;
  padding-left: var(--space-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--honey-light);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-8);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-8) + 6px);
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background: var(--honey);
  border: 3px solid var(--ivory);
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--honey-dark);
  margin-bottom: var(--space-2);
}

.timeline__title {
  font-size: var(--text-md);
  margin-bottom: var(--space-2);
}

.timeline__text {
  font-size: var(--text-sm);
  color: var(--espresso-light);
}


/* ============================================================
   13. CONTACT PAGE
   ============================================================ */

.contact-layout {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* Contact info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--honey-dark);
}

.contact-info-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-card__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: var(--space-1);
}

.contact-info-card__text {
  font-size: var(--text-sm);
  color: var(--espresso-light);
  line-height: var(--leading-relaxed);
}

.contact-info-card__text a {
  color: var(--honey-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Social links */
.contact-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.contact-social__link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--espresso-light);
  transition: var(--transition-fast);
}

.contact-social__link:hover {
  background: var(--honey);
  color: white;
}

.contact-social__link svg {
  width: 20px;
  height: 20px;
}

/* FAQ Accordion */
.faq {
  margin-top: var(--space-16);
}

.faq__list {
  max-width: var(--container-md);
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--ivory-dark);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) 0;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--espresso);
  text-align: left;
  transition: color var(--duration-fast) var(--ease-default);
}

.faq__question:hover {
  color: var(--honey-dark);
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-default);
  color: var(--latte);
}

.faq__item--open .faq__icon {
  transform: rotate(180deg);
  color: var(--honey);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-default),
              padding var(--duration-normal) var(--ease-default);
}

.faq__item--open .faq__answer {
  max-height: 500px;
  padding-bottom: var(--space-6);
}

.faq__answer-text {
  font-size: var(--text-base);
  color: var(--espresso-light);
  line-height: var(--leading-relaxed);
}

/* Map embed */
.contact-map {
  margin-top: var(--space-12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 350px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* ============================================================
   14. FOOTER
   ============================================================ */

.footer {
  background: var(--espresso);
  color: var(--latte);
  padding-top: var(--space-16);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
}

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

@media (min-width: 1024px) {
  .footer__top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Footer brand column */
.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--honey-light);
  margin-bottom: var(--space-4);
}

.footer__tagline {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--latte);
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--latte);
  transition: var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--honey);
  color: var(--espresso-dark);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

/* Footer link columns */
.footer__column-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--honey-light);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--latte);
  transition: color var(--duration-fast) var(--ease-default);
}

.footer__link:hover {
  color: var(--honey);
}

/* Newsletter in footer */
.footer__newsletter {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__newsletter {
    flex-direction: row;
    text-align: left;
    gap: var(--space-8);
  }
}

.footer__newsletter-content {
  flex: 1;
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .footer__newsletter-content {
    margin-bottom: 0;
  }
}

.footer__newsletter-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--honey-light);
  margin-bottom: var(--space-2);
}

.footer__newsletter-text {
  font-size: var(--text-sm);
  color: var(--latte);
}

.footer__newsletter-form {
  display: flex;
  gap: var(--space-2);
  width: 100%;
  max-width: 400px;
}

.footer__newsletter-input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: var(--text-sm);
  transition: var(--transition-fast);
}

.footer__newsletter-input::placeholder {
  color: var(--latte);
}

.footer__newsletter-input:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 2px rgba(212, 160, 86, 0.2);
}

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-6) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright {
  font-size: var(--text-sm);
  color: var(--latte);
}

.footer__payment-icons {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.footer__payment-icons img {
  height: 24px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--duration-fast) var(--ease-default);
}

.footer__payment-icons img:hover {
  opacity: 1;
}

.footer__legal-links {
  display: flex;
  gap: var(--space-4);
}

.footer__legal-link {
  font-size: var(--text-xs);
  color: var(--latte);
  transition: color var(--duration-fast) var(--ease-default);
}

.footer__legal-link:hover {
  color: var(--honey);
}


/* ============================================================
   15. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* Sizes */
.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn--xl {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-md);
  border-radius: var(--radius-lg);
}

.btn--full {
  width: 100%;
}

.btn--rounded {
  border-radius: var(--radius-full);
}

/* Primary — Honey */
.btn--primary {
  background: var(--honey);
  color: var(--espresso-dark);
  border-color: var(--honey);
}

.btn--primary:hover {
  background: var(--honey-dark);
  border-color: var(--honey-dark);
  box-shadow: var(--shadow-honey);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Secondary — Espresso */
.btn--secondary {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
}

.btn--secondary:hover {
  background: var(--espresso-light);
  border-color: var(--espresso-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary:active {
  transform: translateY(0);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--honey-dark);
  border-color: var(--honey);
}

.btn--outline:hover {
  background: var(--honey);
  color: var(--espresso-dark);
  box-shadow: var(--shadow-honey);
}

/* Outline Espresso */
.btn--outline-espresso {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}

.btn--outline-espresso:hover {
  background: var(--espresso);
  color: var(--ivory);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--espresso-light);
  border-color: transparent;
}

.btn--ghost:hover {
  background: var(--ivory-dark);
  color: var(--espresso);
}

/* White (for dark backgrounds) */
.btn--white {
  background: white;
  color: var(--espresso);
  border-color: white;
}

.btn--white:hover {
  background: var(--ivory);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Outline White */
.btn--outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Sage / Success */
.btn--sage {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
}

.btn--sage:hover {
  background: var(--sage-light);
  border-color: var(--sage-light);
}

/* Danger */
.btn--danger {
  background: var(--color-error);
  color: white;
  border-color: var(--color-error);
}

.btn--danger:hover {
  background: #A84B4B;
  border-color: #A84B4B;
}

/* Link style */
.btn--link {
  background: none;
  border: none;
  padding: 0;
  color: var(--honey-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.btn--link:hover {
  color: var(--espresso);
}

/* Disabled */
.btn:disabled,
.btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Loading state */
.btn--loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn--loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: var(--radius-full);
  animation: spin 0.6s linear infinite;
}

.btn--primary.btn--loading::after {
  border-color: var(--espresso-dark);
  border-right-color: transparent;
}


/* ============================================================
   16. FORMS
   ============================================================ */

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: var(--space-2);
}

.form-label--required::after {
  content: ' *';
  color: var(--color-error);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  color: var(--charcoal);
  background: white;
  border: 2px solid var(--ivory-dark);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  appearance: none;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: var(--latte);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(212, 160, 86, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--latte);
}

/* Textarea */
.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Select */
.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23C4A882'%3e%3cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3e%3c/svg%3e");
  background-position: right var(--space-3) center;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-right: var(--space-10);
}

/* Checkbox / Radio */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.form-check__input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  appearance: none;
  border: 2px solid var(--ivory-dark);
  background: white;
  transition: var(--transition-fast);
  margin-top: 2px;
}

.form-check__input[type="checkbox"] {
  border-radius: var(--radius-sm);
}

.form-check__input[type="radio"] {
  border-radius: var(--radius-full);
}

.form-check__input:checked {
  background: var(--honey);
  border-color: var(--honey);
}

.form-check__input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3e%3cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}

.form-check__input[type="radio"]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3e%3ccircle cx='10' cy='10' r='4'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.form-check__input:focus {
  box-shadow: 0 0 0 3px rgba(212, 160, 86, 0.2);
}

.form-check__label {
  font-size: var(--text-sm);
  color: var(--espresso-light);
  line-height: var(--leading-normal);
}

/* Validation states */
.form-input--error,
.form-select--error,
.form-textarea--error {
  border-color: var(--color-error);
}

.form-input--error:focus,
.form-select--error:focus,
.form-textarea--error:focus {
  box-shadow: 0 0 0 3px rgba(194, 87, 87, 0.2);
}

.form-input--success,
.form-select--success {
  border-color: var(--color-success);
}

.form-error {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-1);
}

.form-hint {
  display: block;
  font-size: var(--text-xs);
  color: var(--latte);
  margin-top: var(--space-1);
}

/* Toggle / Switch */
.form-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.form-toggle__input {
  opacity: 0;
  width: 0;
  height: 0;
}

.form-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--ivory-dark);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
}

.form-toggle__slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.form-toggle__input:checked + .form-toggle__slider {
  background: var(--honey);
}

.form-toggle__input:checked + .form-toggle__slider::before {
  transform: translateX(22px);
}

/* Input with icon */
.form-input-icon {
  position: relative;
}

.form-input-icon .form-input {
  padding-left: var(--space-10);
}

.form-input-icon__icon {
  position: absolute;
  left: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--latte);
  pointer-events: none;
}


/* ============================================================
   17. BADGES
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  border-radius: var(--radius-sm);
  line-height: 1.4;
}

.badge--bestseller {
  background: var(--honey);
  color: var(--espresso-dark);
}

.badge--new {
  background: var(--sage);
  color: white;
}

.badge--sale {
  background: var(--color-error);
  color: white;
}

.badge--limited {
  background: var(--blush);
  color: var(--espresso);
}

.badge--organic {
  background: var(--sage-light);
  color: white;
}

.badge--handmade {
  background: var(--latte);
  color: var(--espresso-dark);
}

.badge--out-of-stock {
  background: var(--charcoal);
  color: white;
}

.badge--lg {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

/* Pill badge with dot */
.badge--dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: currentColor;
}


/* ============================================================
   18. TOAST / NOTIFICATION
   ============================================================ */

.toast-container {
  position: fixed;
  top: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 400px;
  width: calc(100% - var(--space-12));
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--honey);
  pointer-events: auto;
  animation: slideInRight var(--duration-normal) var(--ease-out);
  transition: var(--transition-base);
}

.toast--success {
  border-left-color: var(--color-success);
}

.toast--error {
  border-left-color: var(--color-error);
}

.toast--info {
  border-left-color: var(--color-info);
}

.toast--warning {
  border-left-color: var(--honey);
}

.toast--exiting {
  opacity: 0;
  transform: translateX(100%);
}

.toast__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.toast--success .toast__icon { color: var(--color-success); }
.toast--error .toast__icon   { color: var(--color-error); }
.toast--info .toast__icon    { color: var(--color-info); }
.toast--warning .toast__icon { color: var(--honey); }

.toast__content {
  flex: 1;
}

.toast__title {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--espresso);
  margin-bottom: var(--space-1);
}

.toast__message {
  font-size: var(--text-sm);
  color: var(--espresso-light);
  line-height: var(--leading-normal);
}

.toast__close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--latte);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.toast__close:hover {
  background: var(--ivory-dark);
  color: var(--espresso);
}

/* Added-to-cart toast variant */
.toast--cart {
  border-left-color: var(--sage);
}

.toast--cart .toast__image {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

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

/* Progress bar on toast (auto-dismiss) */
.toast__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--honey);
  border-radius: 0 0 0 var(--radius-lg);
  animation: toastProgress 4s linear forwards;
}


/* ============================================================
   19. MODAL / OVERLAY
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-dark);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

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

.modal {
  background: white;
  border-radius: var(--radius-2xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(20px);
  transition: transform var(--duration-normal) var(--ease-out);
}

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

.modal--lg {
  max-width: 720px;
}

.modal--sm {
  max-width: 400px;
}

.modal--full {
  max-width: 95vw;
  max-height: 95vh;
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  border-bottom: 1px solid var(--ivory-dark);
}

.modal__title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--espresso);
}

.modal__close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--latte);
  transition: var(--transition-fast);
}

.modal__close:hover {
  background: var(--ivory-dark);
  color: var(--espresso);
}

.modal__body {
  padding: var(--space-6);
}

.modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--ivory-dark);
}

/* Image preview modal */
.modal--gallery {
  background: transparent;
  box-shadow: none;
  max-width: 90vw;
}

.modal--gallery img {
  border-radius: var(--radius-lg);
}

/* Quick view modal */
.modal--quickview .modal__body {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .modal--quickview .modal__body {
    grid-template-columns: 1fr 1fr;
  }
}

/* Confirm dialog */
.modal--confirm .modal__body {
  text-align: center;
  padding: var(--space-8);
}

.modal--confirm .modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-5);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal--confirm .modal__icon--warning {
  background: rgba(212, 160, 86, 0.15);
  color: var(--honey-dark);
}

.modal--confirm .modal__icon--danger {
  background: rgba(194, 87, 87, 0.15);
  color: var(--color-error);
}

.modal--confirm .modal__footer {
  justify-content: center;
}


/* ============================================================
   20. NEWSLETTER POPUP
   ============================================================ */

.newsletter-popup-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-dark);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

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

.newsletter-popup {
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9) translateY(30px);
  transition: transform var(--duration-normal) var(--ease-bounce);
  display: flex;
  flex-direction: column;
}

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

@media (min-width: 768px) {
  .newsletter-popup {
    max-width: 700px;
    flex-direction: row;
  }
}

.newsletter-popup__image {
  aspect-ratio: 1;
  overflow: hidden;
  display: none;
}

@media (min-width: 768px) {
  .newsletter-popup__image {
    display: block;
    width: 45%;
    flex-shrink: 0;
  }
}

.newsletter-popup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-popup__content {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.newsletter-popup__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--latte);
  background: rgba(255, 255, 255, 0.9);
  transition: var(--transition-fast);
  z-index: 1;
}

.newsletter-popup__close:hover {
  background: white;
  color: var(--espresso);
}

.newsletter-popup__icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.newsletter-popup__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.newsletter-popup__text {
  font-size: var(--text-sm);
  color: var(--espresso-light);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

.newsletter-popup__offer {
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: var(--ivory);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--honey-dark);
  margin-bottom: var(--space-6);
}

.newsletter-popup__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.newsletter-popup__input {
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--ivory-dark);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  text-align: center;
  transition: var(--transition-fast);
}

.newsletter-popup__input:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(212, 160, 86, 0.2);
}

.newsletter-popup__disclaimer {
  font-size: var(--text-xs);
  color: var(--latte);
  margin-top: var(--space-4);
}

.newsletter-popup__no-thanks {
  font-size: var(--text-sm);
  color: var(--latte);
  text-decoration: underline;
  margin-top: var(--space-3);
  cursor: pointer;
}

.newsletter-popup__no-thanks:hover {
  color: var(--espresso-light);
}


/* ============================================================
   21. TRUST BADGES SECTION
   ============================================================ */

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  padding: var(--space-10) 0;
}

@media (min-width: 768px) {
  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.trust-badge__icon {
  width: 52px;
  height: 52px;
  margin-bottom: var(--space-4);
  color: var(--honey-dark);
}

.trust-badge__icon svg {
  width: 100%;
  height: 100%;
}

.trust-badge__title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: var(--space-1);
}

.trust-badge__text {
  font-size: var(--text-xs);
  color: var(--latte);
  line-height: var(--leading-normal);
}

/* Inline trust bar (often below add-to-cart) */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--ivory-dark);
  border-bottom: 1px solid var(--ivory-dark);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--espresso-light);
}

.trust-bar__item svg {
  width: 16px;
  height: 16px;
  color: var(--sage);
}


/* ============================================================
   22. TESTIMONIAL CARDS
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

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

.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--honey);
  margin-bottom: var(--space-4);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--espresso-light);
  line-height: var(--leading-relaxed);
  font-style: italic;
  flex: 1;
  margin-bottom: var(--space-6);
}

.testimonial-card__text::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--honey-light);
  line-height: 0;
  vertical-align: sub;
  margin-right: var(--space-1);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--ivory-dark);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--ivory-dark);
  flex-shrink: 0;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Initial avatar when no image */
.testimonial-card__avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--honey-light);
  color: var(--espresso-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-md);
}

.testimonial-card__author-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--espresso);
}

.testimonial-card__author-detail {
  font-size: var(--text-xs);
  color: var(--latte);
}

/* Verified purchase badge */
.testimonial-card__verified {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--sage);
  font-weight: 500;
}

.testimonial-card__verified svg {
  width: 14px;
  height: 14px;
}

/* Featured / large testimonial */
.testimonial-featured {
  background: var(--espresso);
  color: var(--ivory);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  text-align: center;
}

.testimonial-featured__text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  line-height: var(--leading-relaxed);
  max-width: 700px;
  margin: 0 auto var(--space-6);
}

.testimonial-featured__stars {
  display: flex;
  justify-content: center;
  gap: var(--space-1);
  color: var(--honey);
  margin-bottom: var(--space-6);
}

.testimonial-featured__author {
  color: var(--honey-light);
  font-weight: 600;
}

@media (min-width: 768px) {
  .testimonial-featured__text {
    font-size: var(--text-2xl);
  }
}


/* ============================================================
   23. LOADING STATES / SKELETON
   ============================================================ */

@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}

.skeleton {
  background: linear-gradient(
    90deg,
    var(--ivory-dark) 0%,
    var(--ivory) 50%,
    var(--ivory-dark) 100%
  );
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: var(--radius-md);
}

.skeleton--text {
  height: 16px;
  margin-bottom: var(--space-2);
}

.skeleton--text-lg {
  height: 24px;
  width: 60%;
  margin-bottom: var(--space-3);
}

.skeleton--title {
  height: 32px;
  width: 80%;
  margin-bottom: var(--space-4);
}

.skeleton--image {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
}

.skeleton--avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
}

.skeleton--badge {
  width: 80px;
  height: 24px;
  border-radius: var(--radius-sm);
}

.skeleton--btn {
  height: 44px;
  width: 140px;
  border-radius: var(--radius-md);
}

.skeleton--card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Skeleton product card */
.skeleton-product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.skeleton-product-card__image {
  aspect-ratio: 1;
}

.skeleton-product-card__body {
  padding: var(--space-4);
}

/* Spinner */
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--ivory-dark);
  border-top-color: var(--honey);
  border-radius: var(--radius-full);
  animation: spin 0.7s linear infinite;
}

.spinner--sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.spinner--lg {
  width: 48px;
  height: 48px;
  border-width: 4px;
}

.spinner--white {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: white;
}

/* Full-page loading overlay */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-light);
  z-index: var(--z-max);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.loading-overlay__text {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: var(--espresso-light);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

/* Dots loading */
.loading-dots {
  display: flex;
  gap: var(--space-2);
}

.loading-dots__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--honey);
  animation: loadingDots 1.2s ease-in-out infinite;
}

.loading-dots__dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dots__dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes loadingDots {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Content placeholder while loading */
.placeholder-line {
  height: 14px;
  background: var(--ivory-dark);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-2);
}

.placeholder-line:last-child {
  width: 70%;
}


/* ============================================================
   24. RESPONSIVE BREAKPOINTS (375, 768, 1024, 1440)
   ============================================================ */

/* Extra small (up to 375px — small phones) */
@media (max-width: 375px) {
  :root {
    --container-pad: var(--space-3);
  }

  h1 { font-size: var(--text-2xl); }
  h2 { font-size: var(--text-xl); }
  h3 { font-size: var(--text-lg); }

  .hero { min-height: 60vh; }
  .hero__title { font-size: var(--text-2xl); }
  .hero__subtitle { font-size: var(--text-base); }

  .section { padding: var(--space-10) 0; }
  .section--lg { padding: var(--space-16) 0; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }

  .product-card__body { padding: var(--space-3); }
  .product-card__name { font-size: var(--text-sm); }

  .btn--lg { padding: var(--space-3) var(--space-6); }
  .btn--xl { padding: var(--space-4) var(--space-8); }

  .cart-drawer { max-width: 100%; }
}

/* Small (376px - 767px) */
@media (min-width: 376px) and (max-width: 767px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* Medium breakpoint (768px) — tablets */
/* Already handled above in component sections */

/* Large breakpoint (1024px) — small desktops / landscape tablets */
/* Already handled above in component sections */

/* Extra large (1440px+) */
@media (min-width: 1440px) {
  :root {
    --container-pad: var(--space-10);
  }

  .container {
    max-width: var(--container-2xl);
  }

  .hero { min-height: 85vh; }

  .section--lg {
    padding: var(--space-32) 0;
  }
}


/* ============================================================
   25. ANIMATIONS
   ============================================================ */

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleUp {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(-6px);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes toastProgress {
  from { width: 100%; }
  to   { width: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Animation utility classes */
.animate-fade-in       { animation: fadeIn var(--duration-normal) var(--ease-default) both; }
.animate-slide-up      { animation: slideUp var(--duration-normal) var(--ease-out) both; }
.animate-slide-down    { animation: slideDown var(--duration-normal) var(--ease-out) both; }
.animate-slide-left    { animation: slideInLeft var(--duration-normal) var(--ease-out) both; }
.animate-slide-right   { animation: slideInRight var(--duration-normal) var(--ease-out) both; }
.animate-scale-in      { animation: scaleIn var(--duration-normal) var(--ease-out) both; }
.animate-pulse         { animation: pulse 2s var(--ease-default) infinite; }
.animate-bounce        { animation: bounce 1s infinite; }
.animate-float         { animation: float 3s ease-in-out infinite; }
.animate-spin          { animation: spin 1s linear infinite; }

/* Stagger delays */
.animate-delay-1 { animation-delay: 100ms; }
.animate-delay-2 { animation-delay: 200ms; }
.animate-delay-3 { animation-delay: 300ms; }
.animate-delay-4 { animation-delay: 400ms; }
.animate-delay-5 { animation-delay: 500ms; }
.animate-delay-6 { animation-delay: 600ms; }

/* Intersection Observer reveal (JS adds .is-visible) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-30px);
}

.reveal--left.is-visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(30px);
}

.reveal--right.is-visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.9);
}

.reveal--scale.is-visible {
  transform: scale(1);
}

/* Hover animations */
.hover-lift {
  transition: transform var(--duration-fast) var(--ease-default),
              box-shadow var(--duration-fast) var(--ease-default);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hover-glow:hover {
  box-shadow: var(--shadow-honey);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   26. UTILITY CLASSES
   ============================================================ */

/* --- Display --- */
.d-none          { display: none !important; }
.d-block         { display: block !important; }
.d-flex          { display: flex !important; }
.d-inline        { display: inline !important; }
.d-inline-block  { display: inline-block !important; }
.d-inline-flex   { display: inline-flex !important; }
.d-grid          { display: grid !important; }

@media (min-width: 768px) {
  .d-md-none         { display: none !important; }
  .d-md-block        { display: block !important; }
  .d-md-flex         { display: flex !important; }
  .d-md-inline-flex  { display: inline-flex !important; }
  .d-md-grid         { display: grid !important; }
}

@media (min-width: 1024px) {
  .d-lg-none         { display: none !important; }
  .d-lg-block        { display: block !important; }
  .d-lg-flex         { display: flex !important; }
  .d-lg-inline-flex  { display: inline-flex !important; }
  .d-lg-grid         { display: grid !important; }
}

/* --- Text Alignment --- */
.text-left     { text-align: left !important; }
.text-center   { text-align: center !important; }
.text-right    { text-align: right !important; }

@media (min-width: 768px) {
  .text-md-left   { text-align: left !important; }
  .text-md-center { text-align: center !important; }
  .text-md-right  { text-align: right !important; }
}

/* --- Text Colors --- */
.text-honey      { color: var(--honey) !important; }
.text-honey-dark { color: var(--honey-dark) !important; }
.text-espresso   { color: var(--espresso) !important; }
.text-sage       { color: var(--sage) !important; }
.text-blush      { color: var(--blush) !important; }
.text-latte      { color: var(--latte) !important; }
.text-white      { color: white !important; }
.text-muted      { color: var(--latte) !important; }
.text-error      { color: var(--color-error) !important; }
.text-success    { color: var(--color-success) !important; }

/* --- Background Colors --- */
.bg-ivory       { background-color: var(--ivory) !important; }
.bg-ivory-dark  { background-color: var(--ivory-dark) !important; }
.bg-white       { background-color: white !important; }
.bg-espresso    { background-color: var(--espresso) !important; }
.bg-honey       { background-color: var(--honey) !important; }
.bg-honey-light { background-color: var(--honey-light) !important; }

/* --- Font Weight --- */
.fw-normal  { font-weight: 400 !important; }
.fw-medium  { font-weight: 500 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold    { font-weight: 700 !important; }

/* --- Font Size --- */
.fs-xs    { font-size: var(--text-xs) !important; }
.fs-sm    { font-size: var(--text-sm) !important; }
.fs-base  { font-size: var(--text-base) !important; }
.fs-md    { font-size: var(--text-md) !important; }
.fs-lg    { font-size: var(--text-lg) !important; }
.fs-xl    { font-size: var(--text-xl) !important; }
.fs-2xl   { font-size: var(--text-2xl) !important; }

/* --- Spacing Margin --- */
.m-0  { margin: 0 !important; }
.m-1  { margin: var(--space-1) !important; }
.m-2  { margin: var(--space-2) !important; }
.m-4  { margin: var(--space-4) !important; }
.m-auto { margin: auto !important; }

.mt-0  { margin-top: 0 !important; }
.mt-2  { margin-top: var(--space-2) !important; }
.mt-4  { margin-top: var(--space-4) !important; }
.mt-6  { margin-top: var(--space-6) !important; }
.mt-8  { margin-top: var(--space-8) !important; }
.mt-10 { margin-top: var(--space-10) !important; }
.mt-12 { margin-top: var(--space-12) !important; }
.mt-16 { margin-top: var(--space-16) !important; }

.mb-0  { margin-bottom: 0 !important; }
.mb-2  { margin-bottom: var(--space-2) !important; }
.mb-4  { margin-bottom: var(--space-4) !important; }
.mb-6  { margin-bottom: var(--space-6) !important; }
.mb-8  { margin-bottom: var(--space-8) !important; }
.mb-10 { margin-bottom: var(--space-10) !important; }
.mb-12 { margin-bottom: var(--space-12) !important; }
.mb-16 { margin-bottom: var(--space-16) !important; }

.ml-auto { margin-left: auto !important; }
.mr-auto { margin-right: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* --- Spacing Padding --- */
.p-0  { padding: 0 !important; }
.p-2  { padding: var(--space-2) !important; }
.p-4  { padding: var(--space-4) !important; }
.p-6  { padding: var(--space-6) !important; }
.p-8  { padding: var(--space-8) !important; }

.pt-0  { padding-top: 0 !important; }
.pt-4  { padding-top: var(--space-4) !important; }
.pt-8  { padding-top: var(--space-8) !important; }
.pt-16 { padding-top: var(--space-16) !important; }

.pb-0  { padding-bottom: 0 !important; }
.pb-4  { padding-bottom: var(--space-4) !important; }
.pb-8  { padding-bottom: var(--space-8) !important; }
.pb-16 { padding-bottom: var(--space-16) !important; }

.px-4  { padding-left: var(--space-4) !important; padding-right: var(--space-4) !important; }
.px-6  { padding-left: var(--space-6) !important; padding-right: var(--space-6) !important; }
.px-8  { padding-left: var(--space-8) !important; padding-right: var(--space-8) !important; }

.py-4  { padding-top: var(--space-4) !important; padding-bottom: var(--space-4) !important; }
.py-6  { padding-top: var(--space-6) !important; padding-bottom: var(--space-6) !important; }
.py-8  { padding-top: var(--space-8) !important; padding-bottom: var(--space-8) !important; }

/* --- Width/Height --- */
.w-full  { width: 100% !important; }
.h-full  { height: 100% !important; }
.min-h-screen { min-height: 100vh !important; }

/* --- Border --- */
.rounded       { border-radius: var(--radius-md) !important; }
.rounded-lg    { border-radius: var(--radius-lg) !important; }
.rounded-xl    { border-radius: var(--radius-xl) !important; }
.rounded-2xl   { border-radius: var(--radius-2xl) !important; }
.rounded-full  { border-radius: var(--radius-full) !important; }

.border        { border: 1px solid var(--ivory-dark) !important; }
.border-0      { border: none !important; }
.border-honey  { border-color: var(--honey) !important; }

/* --- Shadows --- */
.shadow-none   { box-shadow: none !important; }
.shadow-sm     { box-shadow: var(--shadow-sm) !important; }
.shadow-md     { box-shadow: var(--shadow-md) !important; }
.shadow-lg     { box-shadow: var(--shadow-lg) !important; }
.shadow-xl     { box-shadow: var(--shadow-xl) !important; }

/* --- Overflow --- */
.overflow-hidden  { overflow: hidden !important; }
.overflow-auto    { overflow: auto !important; }
.overflow-x-auto  { overflow-x: auto !important; }

/* --- Position --- */
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.fixed    { position: fixed !important; }
.sticky   { position: sticky !important; }

/* --- Flexbox Utilities --- */
.items-center    { align-items: center !important; }
.items-start     { align-items: flex-start !important; }
.items-end       { align-items: flex-end !important; }
.justify-center  { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-end     { justify-content: flex-end !important; }
.flex-1          { flex: 1 !important; }
.flex-shrink-0   { flex-shrink: 0 !important; }
.flex-wrap       { flex-wrap: wrap !important; }
.gap-2           { gap: var(--space-2) !important; }
.gap-3           { gap: var(--space-3) !important; }
.gap-4           { gap: var(--space-4) !important; }
.gap-6           { gap: var(--space-6) !important; }
.gap-8           { gap: var(--space-8) !important; }

/* --- Cursor --- */
.cursor-pointer { cursor: pointer !important; }

/* --- Visibility --- */
.invisible { visibility: hidden !important; }
.visible   { visibility: visible !important; }
.opacity-0   { opacity: 0 !important; }
.opacity-50  { opacity: 0.5 !important; }
.opacity-100 { opacity: 1 !important; }

/* --- Object Fit --- */
.object-cover   { object-fit: cover !important; }
.object-contain { object-fit: contain !important; }

/* --- Aspect Ratio --- */
.aspect-square  { aspect-ratio: 1 !important; }
.aspect-video   { aspect-ratio: 16 / 9 !important; }
.aspect-portrait { aspect-ratio: 3 / 4 !important; }

/* --- Text Utilities --- */
.truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.line-clamp-2 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.line-clamp-3 {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.uppercase     { text-transform: uppercase !important; }
.lowercase     { text-transform: lowercase !important; }
.capitalize    { text-transform: capitalize !important; }
.no-underline  { text-decoration: none !important; }
.underline     { text-decoration: underline !important; text-underline-offset: 3px; }

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

/* --- Dividers --- */
.divider {
  border: none;
  border-top: 1px solid var(--ivory-dark);
  margin: var(--space-8) 0;
}

.divider--honey {
  border-top-color: var(--honey-light);
}

.divider--thick {
  border-top-width: 2px;
}

/* --- Decorative --- */
.honey-underline {
  position: relative;
  display: inline-block;
}

.honey-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--honey);
  border-radius: 2px;
}

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, var(--honey), var(--honey-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Container for decorative leaf/botanical patterns */
.deco-leaf::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--honey);
  margin-bottom: var(--space-4);
}

.deco-leaf--center::before {
  margin-left: auto;
  margin-right: auto;
}

/* Scrollbar gutter prevent layout shift */
.stable-gutter {
  scrollbar-gutter: stable;
}


/* ============================================================
   SHOP PAGE — Filters & Sort Bar
   ============================================================ */

.shop-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.shop-header__count {
  font-size: var(--text-sm);
  color: var(--latte);
}

.shop-header__controls {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.shop-sort {
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--espresso-light);
  background: white;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23C4A882'%3e%3cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3e%3c/svg%3e");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: var(--space-8);
}

.shop-view-toggle {
  display: flex;
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.shop-view-toggle__btn {
  padding: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--latte);
  transition: var(--transition-fast);
}

.shop-view-toggle__btn:not(:last-child) {
  border-right: 1px solid var(--ivory-dark);
}

.shop-view-toggle__btn--active,
.shop-view-toggle__btn:hover {
  background: var(--honey);
  color: var(--espresso-dark);
}

.shop-view-toggle__btn svg {
  width: 18px;
  height: 18px;
}

/* Sidebar filters */
.shop-layout {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .shop-layout {
    grid-template-columns: 260px 1fr;
  }
}

.shop-filters {
  display: none;
}

@media (min-width: 1024px) {
  .shop-filters { display: block; }
}

.shop-filters__section {
  margin-bottom: var(--space-8);
}

.shop-filters__title {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--espresso);
  margin-bottom: var(--space-4);
}

.shop-filters__option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--espresso-light);
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-default);
}

.shop-filters__option:hover {
  color: var(--honey-dark);
}

.shop-filters__count {
  margin-left: auto;
  font-size: var(--text-xs);
  color: var(--latte);
}

/* Price range slider */
.price-range {
  margin-top: var(--space-4);
}

.price-range__values {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--espresso-light);
  margin-bottom: var(--space-3);
}

.price-range__slider {
  width: 100%;
  height: 4px;
  background: var(--ivory-dark);
  border-radius: var(--radius-full);
  appearance: none;
  outline: none;
}

.price-range__slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--honey);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

/* Active filter tags */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: var(--ivory-dark);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--espresso-light);
}

.active-filter-tag__remove {
  display: flex;
  align-items: center;
  color: var(--latte);
  transition: color var(--duration-fast) var(--ease-default);
}

.active-filter-tag__remove:hover {
  color: var(--color-error);
}

.active-filter-tag__remove svg {
  width: 14px;
  height: 14px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-12);
}

.pagination__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--espresso-light);
  transition: var(--transition-fast);
}

.pagination__btn:hover {
  background: var(--ivory-dark);
}

.pagination__btn--active {
  background: var(--honey);
  color: var(--espresso-dark);
  font-weight: 700;
}

.pagination__btn--disabled {
  opacity: 0.3;
  pointer-events: none;
}

.pagination__ellipsis {
  color: var(--latte);
  font-size: var(--text-sm);
}


/* ============================================================
   RELATED PRODUCTS / CROSS-SELL
   ============================================================ */

.related-products {
  padding: var(--space-16) 0;
  border-top: 1px solid var(--ivory-dark);
}

.related-products__scroll {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  padding-bottom: var(--space-4);
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.related-products__scroll .product-card {
  flex-shrink: 0;
  width: 260px;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .related-products__scroll .product-card {
    width: 280px;
  }
}


/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  font-size: var(--text-sm);
  color: var(--latte);
}

.breadcrumb__link {
  color: var(--latte);
  transition: color var(--duration-fast) var(--ease-default);
}

.breadcrumb__link:hover {
  color: var(--honey-dark);
}

.breadcrumb__separator {
  color: var(--ivory-dark);
  font-size: var(--text-xs);
}

.breadcrumb__current {
  color: var(--espresso);
  font-weight: 500;
}


/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */

.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--honey);
  color: var(--espresso-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-sticky);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition-base);
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--honey-dark);
  box-shadow: var(--shadow-honey);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}


/* ============================================================
   COOKIE CONSENT BAR
   ============================================================ */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--espresso);
  color: var(--latte);
  padding: var(--space-4) var(--space-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-default);
}

.cookie-bar--visible {
  transform: translateY(0);
}

.cookie-bar__text {
  font-size: var(--text-sm);
  text-align: center;
  line-height: var(--leading-relaxed);
}

.cookie-bar__text a {
  color: var(--honey);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-bar__actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .cookie-bar {
    flex-direction: row;
    padding: var(--space-4) var(--space-8);
  }

  .cookie-bar__text {
    text-align: left;
  }
}


/* ============================================================
   PROMO BANNER STRIP (above hero)
   ============================================================ */

.promo-banner {
  background: linear-gradient(90deg, var(--honey), var(--honey-dark));
  color: var(--espresso-dark);
  text-align: center;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
}

.promo-banner a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.promo-banner__close {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--espresso-dark);
  opacity: 0.7;
}

.promo-banner__close:hover {
  opacity: 1;
}


/* ============================================================
   FEATURE HIGHLIGHTS STRIP
   ============================================================ */

.features-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--ivory-dark);
}

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

.features-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.features-strip__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--ivory-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--honey-dark);
}

.features-strip__icon svg {
  width: 20px;
  height: 20px;
}

.features-strip__text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--espresso);
  line-height: var(--leading-snug);
}

.features-strip__subtext {
  font-size: var(--text-xs);
  color: var(--latte);
  font-weight: 400;
}


/* ============================================================
   INSTAGRAM FEED / SOCIAL PROOF GRID
   ============================================================ */

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

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

.instagram-grid__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.instagram-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-default);
}

.instagram-grid__item:hover img {
  transform: scale(1.08);
}

.instagram-grid__overlay {
  position: absolute;
  inset: 0;
  background: rgba(60, 36, 21, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-default);
}

.instagram-grid__item:hover .instagram-grid__overlay {
  opacity: 1;
}

.instagram-grid__overlay svg {
  width: 28px;
  height: 28px;
  color: white;
}


/* ============================================================
   REVIEWS SECTION
   ============================================================ */

.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-8);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  text-align: center;
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .reviews-summary {
    flex-direction: row;
    text-align: left;
    gap: var(--space-10);
  }
}

.reviews-summary__score {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1;
}

.reviews-summary__stars {
  display: flex;
  gap: 2px;
  color: var(--honey);
  margin: var(--space-2) 0;
}

.reviews-summary__count {
  font-size: var(--text-sm);
  color: var(--latte);
}

.reviews-summary__bars {
  flex: 1;
  width: 100%;
  max-width: 320px;
}

.review-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.review-bar__label {
  font-size: var(--text-sm);
  color: var(--espresso-light);
  width: 24px;
  text-align: right;
}

.review-bar__track {
  flex: 1;
  height: 8px;
  background: var(--ivory-dark);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.review-bar__fill {
  height: 100%;
  background: var(--honey);
  border-radius: var(--radius-full);
}

.review-bar__count {
  font-size: var(--text-xs);
  color: var(--latte);
  width: 28px;
}

/* Individual review card */
.review-card {
  padding: var(--space-6);
  border-bottom: 1px solid var(--ivory-dark);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--honey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--espresso-dark);
  flex-shrink: 0;
}

.review-card__author {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--espresso);
}

.review-card__date {
  font-size: var(--text-xs);
  color: var(--latte);
}

.review-card__stars {
  display: flex;
  gap: 1px;
  color: var(--honey);
  margin-bottom: var(--space-3);
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
}

.review-card__title {
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--espresso);
}

.review-card__text {
  font-size: var(--text-base);
  color: var(--espresso-light);
  line-height: var(--leading-relaxed);
}

.review-card__helpful {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--latte);
}

.review-card__helpful-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--latte);
  transition: color var(--duration-fast) var(--ease-default);
}

.review-card__helpful-btn:hover {
  color: var(--honey-dark);
}


/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  a, a:visited {
    text-decoration: underline;
  }

  .header,
  .footer,
  .nav,
  .announcement-bar,
  .cart-drawer,
  .modal-overlay,
  .newsletter-popup-overlay,
  .toast-container,
  .back-to-top,
  .cookie-bar {
    display: none !important;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }
}
