/* ==========================================
   BAZAARO BAGS – Design System & Styles
   ========================================== */

/* ---- Design Tokens ---- */
:root {
  /* Colors */
  --surface: #f9f9f9;
  --surface-dim: #dadada;
  --surface-bright: #f9f9f9;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f3f3f4;
  --surface-container: #eeeeee;
  --surface-container-high: #e8e8e8;
  --surface-container-highest: #e2e2e2;
  --on-surface: #1a1c1c;
  --on-surface-variant: #43474e;
  --inverse-surface: #2f3131;
  --inverse-on-surface: #f0f1f1;
  --outline: #74777e;
  --outline-variant: #c4c6ce;
  --surface-tint: #486081;
  --primary: #00040c;
  --on-primary: #ffffff;
  --primary-container: #001e3c;
  --on-primary-container: #6f87aa;
  --inverse-primary: #afc8ee;
  --secondary: #5f5e5e;
  --on-secondary: #ffffff;
  --secondary-container: #e4e2e1;
  --on-secondary-container: #656464;
  --tertiary: #040403;
  --on-tertiary: #ffffff;
  --tertiary-container: #1e1e1b;
  --on-tertiary-container: #878681;
  --error: #ba1a1a;
  --on-error: #ffffff;
  --error-container: #ffdad6;
  --on-error-container: #93000a;
  --background: #f9f9f9;
  --on-background: #1a1c1c;

  /* Spacing */
  --unit: 4px;
  --container-max: 1440px;
  --gutter: 24px;
  --margin-desktop: 64px;
  --margin-mobile: 20px;
  --stack-lg: 80px;
  --stack-md: 40px;
  --stack-sm: 16px;

  /* Border Radius */
  --radius-sm: 0.125rem;
  --radius: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-subtle: 0 1px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-lift: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--on-background);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--primary);
  color: var(--on-primary);
}

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

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

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

ul, ol {
  list-style: none;
}

input {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ---- Typography ---- */
.text-display-lg {
  font-family: 'Noto Serif', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -0.02em;
}

.text-display-lg-mobile {
  font-family: 'Noto Serif', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.01em;
}

.text-headline-md {
  font-family: 'Noto Serif', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.text-headline-sm {
  font-family: 'Noto Serif', serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.text-body-lg {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.text-body-md {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.text-label-caps {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-button {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--margin-mobile);
  padding-right: var(--margin-mobile);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--margin-desktop);
    padding-right: var(--margin-desktop);
  }
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition:
    background-color 800ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 800ms cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 800ms cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-backdrop-filter 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--unit) var(--margin-mobile);
  height: 80px;
}

@media (min-width: 768px) {
  .header__inner {
    padding-left: var(--margin-desktop);
    padding-right: var(--margin-desktop);
  }
}

/* ---- Header elements: default (transparent, white) ---- */
.header__nav-link,
.header__icon,
.header__menu-btn,
.header__back-btn {
  color: var(--on-primary);
  transition: color 800ms cubic-bezier(0.4, 0, 0.2, 1), opacity 250ms ease;
}

.header__logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .header__logo img {
    height: 40px;
  }
}

/* ---- Header scrolled state ---- */
.header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-subtle);
}

.header--scrolled .header__nav-link,
.header--scrolled .header__icon,
.header--scrolled .header__menu-btn,
.header--scrolled .header__back-btn {
  color: var(--on-surface);
}

.header--scrolled .header__nav-link {
  color: var(--secondary);
}

.header--scrolled .header__logo img {
  filter: none;
}

.header--scrolled .header__nav-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ---- Navigation (Desktop) ---- */
.header__nav {
  display: none;
  gap: 32px;
  align-items: center;
  height: 100%;
}

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

.header__nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

.header__nav-link:hover {
  opacity: 0.7;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  width: 0;
  background: currentColor;
  transition: width 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__nav-active {
  border-bottom: 1px solid var(--on-primary);
  padding-bottom: 4px;
  transition: color 800ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 800ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 250ms ease;
}

.header__nav-active::after {
  display: none;
}

.header--scrolled .header__nav-active {
  border-bottom-color: var(--primary);
}

/* ---- Logo (centered) ---- */
.header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* ---- Trailing Icons ---- */
.header__icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.header__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.header__icon:hover {
  opacity: 0.7;
}

.header__icon .material-symbols-outlined {
  font-size: 24px;
}

.header__cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--on-primary);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-subtle 2s ease-in-out infinite;
}

.header--scrolled .header__cart-badge {
  background: var(--primary);
  color: var(--on-primary);
}

/* ---- Header Back Button ---- */
.header__back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-right: 8px;
}

/* ---- Mobile Menu Button ---- */
.header__menu-btn {
  display: flex;
  align-items: center;
  padding: 4px;
}

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

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu--open {
  pointer-events: all;
  visibility: visible;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 400ms ease;
}

.mobile-menu--open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--surface-container-lowest);
  transform: translateX(-100%);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  padding: 32px var(--margin-mobile);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu--open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.mobile-menu__logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-surface);
  border-radius: var(--radius-full);
  transition: background 250ms ease;
}

.mobile-menu__close:hover {
  background: var(--surface-container);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__link {
  font-family: 'Noto Serif', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: var(--on-surface);
  padding: 12px 0;
  border-bottom: 1px solid var(--outline-variant);
  transition: color 250ms ease, padding-left 250ms ease;
}

.mobile-menu__link:last-child {
  border-bottom: none;
}

.mobile-menu__link:hover {
  color: var(--primary);
  padding-left: 8px;
}

.mobile-menu__highlight {
  color: var(--primary);
  font-weight: 500;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-container-low);
}

@media (min-width: 768px) {
  .hero {
    height: 85vh;
    min-height: 650px;
  }
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.92;
}

/* Gradient overlay for text readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.02) 35%,
    rgba(0, 0, 0, 0.04) 65%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  padding: 0 var(--margin-mobile);
}

.hero__title {
  font-family: 'Noto Serif', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.01em;
  color: var(--on-primary);
  margin-bottom: var(--stack-sm);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.02em;
  }
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--on-primary);
  margin-bottom: var(--stack-md);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .hero__actions {
    flex-direction: row;
    gap: 16px;
  }
}
.hero__actions .btn-secondary {
  color: var(--on-primary) !important;
  border-color: var(--on-primary) !important;
}
.hero__actions .btn-secondary:hover {
  background: var(--on-primary) !important;
  color: var(--primary) !important;
  transform: scale(1.02);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--on-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background-color 300ms ease, transform 200ms ease;
}

.btn-primary:hover {
  background: var(--secondary);
  transform: scale(1.05);
}

.btn-primary:active {
  transform: scale(0.96);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: background-color 300ms ease, color 300ms ease, transform 200ms ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--on-primary);
  transform: scale(1.05);
}

.btn-secondary:active {
  transform: scale(0.96);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 4px;
  transition: opacity 250ms ease;
}

.btn-ghost:hover {
  opacity: 0.7;
}

/* ==========================================
   SECTIONS – Shared
   ========================================== */
.section {
  padding-top: var(--stack-lg);
  padding-bottom: var(--stack-lg);
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--stack-md);
}

.section__title {
  font-family: 'Noto Serif', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: var(--on-surface);
}

.section__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondary);
  transition: color 250ms ease;
}

.section__link:hover {
  color: var(--primary);
}

.section__link .material-symbols-outlined {
  font-size: 16px;
}

/* ==========================================
   BENTO GRID – Collections
   ========================================== */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter);
}

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

/* Large feature card */
.bento__feature {
  position: relative;
  overflow: hidden;
  background: var(--surface-container);
  height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  border-radius: 0;
}

@media (min-width: 768px) {
  .bento__feature {
    grid-column: span 8;
    height: 600px;
  }
}

.bento__card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bento__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.bento__feature:hover .bento__card-image img,
.bento__side-image:hover .bento__card-image img {
  transform: scale(1.05);
}

/* Bottom gradient overlay on image cards */
.bento__card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.bento__card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.bento__card-title {
  font-family: 'Noto Serif', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: var(--on-primary);
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.bento__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--on-primary);
  transition: gap 350ms ease;
}

.bento__feature:hover .bento__card-cta,
.bento__side-image:hover .bento__card-cta {
  gap: 12px;
}

.bento__card-cta .material-symbols-outlined {
  font-size: 16px;
}

/* Side column */
.bento__side {
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
}

@media (min-width: 768px) {
  .bento__side {
    grid-column: span 4;
    height: 600px;
  }
}

.bento__side-image {
  position: relative;
  overflow: hidden;
  background: var(--surface-container);
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  min-height: 250px;
}

.bento__side-title {
  position: relative;
  z-index: 2;
  font-family: 'Noto Serif', serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--on-primary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Trending text panel */
.bento__text-panel {
  flex: 1;
  background: var(--surface-container-low);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid rgba(196, 198, 206, 0.3);
  min-height: 200px;
}

.bento__text-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}

.bento__text-title {
  font-family: 'Noto Serif', serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--on-surface);
  margin-bottom: 24px;
}

/* ==========================================
   CATEGORY GRID
   ========================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.category-card {
  display: block;
  text-align: center;
  transition: transform 300ms ease, filter 300ms ease;
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--surface-container);
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-card__image-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--aura-bone);
}

.category-card__image-icon-wrap span {
  font-size: 48px;
  color: var(--aura-onyx);
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-card__image-icon-wrap span {
  transform: scale(1.1);
}

.category-card__title {
  font-family: 'Noto Serif', serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--on-surface);
  transition: color 250ms ease;
}

.category-card:hover .category-card__title {
  color: var(--primary);
}

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

/* ==========================================
   PRODUCT GRID
   ========================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  padding: 8px;
  border-radius: var(--radius-xl);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

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

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--surface-container);
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card__name {
  font-family: 'Noto Serif', serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--on-surface);
}

@media (max-width: 767px) {
  .product-card__name {
    font-size: 16px;
    line-height: 22px;
  }
}

.product-card__material {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--secondary);
}

@media (max-width: 767px) {
  .product-card__material {
    font-size: 13px;
    line-height: 18px;
  }
}

.product-card__price {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 8px;
}

.products__load-more {
  margin-top: var(--stack-lg);
  display: flex;
  justify-content: center;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--surface-container-low);
  border-top: 1px solid var(--outline-variant);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter);
  padding-top: var(--stack-lg);
  padding-bottom: var(--stack-lg);
}

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

/* Brand & Subscribe */
.footer__brand {
  margin-bottom: var(--stack-md);
}

@media (min-width: 768px) {
  .footer__brand {
    grid-column: span 4;
    margin-bottom: 0;
  }
}

.footer__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--stack-sm);
}

@media (min-width: 768px) {
  .footer__logo img {
    height: 48px;
  }
}

.footer__subscribe-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--secondary);
  margin-bottom: 24px;
}

.footer__subscribe-form {
  display: flex;
  gap: 8px;
  max-width: 360px;
}

.footer__subscribe-input {
  flex: 1;
  border-bottom: 1px solid var(--outline-variant);
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--on-surface);
  transition: border-color 250ms ease;
}

.footer__subscribe-input::placeholder {
  color: var(--on-secondary-container);
}

.footer__subscribe-input:focus {
  border-bottom-color: var(--primary);
}

.footer__subscribe-btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
  transition: opacity 250ms ease;
}

.footer__subscribe-btn:hover {
  opacity: 0.7;
}

.footer__terms {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--outline);
  margin-top: 16px;
  max-width: 360px;
}

/* Footer Link Columns */
.footer__links-col {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .footer__links-col {
    grid-column: span 2;
    margin-bottom: 0;
  }
}

.footer__links-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--secondary);
  transition: color 200ms ease;
}

.footer__link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Footer Social / Location */
.footer__social {
  display: flex;
  flex-direction: column;
  margin-top: var(--stack-sm);
}

@media (min-width: 768px) {
  .footer__social {
    grid-column: span 2;
    align-items: flex-end;
    margin-top: 0;
  }
}

.footer__social-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.footer__social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: var(--stack-md);
}

.footer__social-icon {
  color: var(--secondary);
  transition: color 250ms ease;
}

.footer__social-icon:hover {
  color: var(--primary);
}

.footer__location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: auto;
}

.footer__location .material-symbols-outlined {
  font-size: 16px;
}

/* Copyright Bar */
.footer__copyright {
  border-top: 1px solid rgba(196, 198, 206, 0.3);
  padding: 24px var(--margin-mobile);
  text-align: center;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .footer__copyright {
    padding-left: var(--margin-desktop);
    padding-right: var(--margin-desktop);
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--outline);
}

.footer__admin-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--outline);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease;
  margin-top: 8px;
}

.footer__admin-link .material-symbols-outlined {
  font-size: 16px;
}

.footer__admin-link:hover {
  color: var(--on-surface);
  background: rgba(196, 198, 206, 0.15);
  border-color: var(--outline-variant);
}

/* ==========================================
   SHIMMER LOADING
   ========================================== */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer-wrap {
  position: relative;
}

.shimmer-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #f3f3f4 25%, #e8e8e8 50%, #f3f3f4 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite linear;
  border-radius: inherit;
  transition: opacity 500ms ease;
}

.shimmer-wrap.shimmer-loaded::before {
  opacity: 0;
  pointer-events: none;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes pulse-subtle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children > .reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE – Mobile Fine-Tuning
   ========================================== */

/* ---- Mobile-first overrides (max-width: 767px) ---- */
@media (max-width: 767px) {

  /* -- Header -- */
  .header__inner {
    height: 64px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .header__logo img {
    height: 26px;
  }

  .header__icons {
    gap: 8px;
  }

  /* 44px minimum touch targets */
  .header__icon,
  .header__menu-btn {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__cart-badge {
    top: 4px;
    right: 2px;
    width: 14px;
    height: 14px;
    font-size: 9px;
  }

  /* -- Hero -- */
  .hero {
    height: 85svh;
    min-height: 500px;
  }

  .hero__image {
    object-position: center center;
  }

  .hero__content {
    padding: 0 var(--margin-mobile);
    max-width: 100%;
  }

  .hero__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 12px;
  }

  .hero__subtitle {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 28px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 28px;
    font-size: 13px;
    min-height: 44px;
  }

  /* -- Sections -- */
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section__header {
    margin-bottom: 24px;
  }

  .section__title {
    font-size: 20px;
    line-height: 28px;
  }

  .section__link {
    font-size: 12px;
  }

  /* -- Bento Grid -- */
  .bento {
    gap: 16px;
  }

  .bento__feature {
    height: 340px;
    padding: 24px 20px;
  }

  .bento__card-title {
    font-size: 20px;
    line-height: 28px;
  }

  .bento__card-cta {
    font-size: 12px;
  }

  .bento__side-image {
    min-height: 200px;
    padding: 20px;
  }

  .bento__side-title {
    font-size: 18px;
    line-height: 24px;
  }

  .bento__text-panel {
    padding: 24px 20px;
    min-height: 170px;
  }

  .bento__text-label {
    margin-bottom: 12px;
  }

  .bento__text-title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 16px;
  }

  /* -- Categories -- */
  .categories-grid {
    gap: 12px;
  }

  .category-card__image {
    margin-bottom: 10px;
  }

  .category-card__title {
    font-size: 15px;
    line-height: 20px;
  }

  /* -- Products -- */
  .products-grid {
    gap: 10px;
  }

  .product-card {
    padding: 4px;
  }

  .product-card__image {
    margin-bottom: 10px;
    border-radius: var(--radius-lg);
  }

  .product-card__name {
    font-size: 14px;
    line-height: 20px;
  }

  .product-card__material {
    font-size: 12px;
    line-height: 16px;
  }

  .product-card__price {
    font-size: 11px;
    margin-top: 4px;
  }

  .products__load-more {
    margin-top: 40px;
  }

  /* -- Footer -- */
  .footer__grid {
    gap: 0;
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .footer__brand {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--outline-variant);
  }

  .footer__logo img {
    height: 32px;
  }

  .footer__subscribe-label {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .footer__subscribe-form {
    max-width: 100%;
  }

  .footer__subscribe-input {
    font-size: 14px;
    min-height: 44px;
  }

  .footer__subscribe-btn {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer__terms {
    font-size: 11px;
    line-height: 16px;
    max-width: 100%;
  }

  /* 2-column link grid on mobile */
  .footer__links-col {
    margin-bottom: 0;
    padding: 20px 0;
    border-bottom: 1px solid rgba(196, 198, 206, 0.2);
  }

  .footer__links-col:last-of-type {
    border-bottom: none;
  }

  .footer__links-title {
    margin-bottom: 12px;
  }

  .footer__links-list {
    gap: 10px;
  }

  .footer__link {
    font-size: 14px;
    line-height: 20px;
    min-height: 36px;
    display: flex;
    align-items: center;
  }

  .footer__social {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(196, 198, 206, 0.2);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .footer__social-title {
    width: 100%;
    margin-bottom: 12px;
  }

  .footer__social-icons {
    margin-bottom: 0;
  }

  .footer__social-icon {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer__location {
    margin-top: 0;
  }

  .footer__copyright {
    padding: 20px var(--margin-mobile);
  }

  .footer__copyright-text {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .footer__admin-link {
    margin-top: 0;
    font-size: 10px;
  }

  /* -- Mobile Menu tweaks -- */
  .mobile-menu__link {
    font-size: 20px;
    line-height: 28px;
    padding: 14px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  /* -- Disable hover-only effects on touch -- */
  .category-card:hover {
    transform: none;
  }

  .product-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ---- Tablet (768px–1023px) ---- */
@media (min-width: 768px) and (max-width: 1023px) {
  .bento__feature {
    height: 450px;
  }

  .bento__side {
    height: 450px;
  }

  .header__nav {
    gap: 20px;
  }

  .header__nav-link {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}

/* ---- Small phones (≤374px) ---- */
@media (max-width: 374px) {
  .hero__title {
    font-size: 24px;
    line-height: 30px;
  }

  .hero__subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .category-card__title {
    font-size: 13px;
    line-height: 18px;
  }

  .product-card__name {
    font-size: 13px;
    line-height: 18px;
  }

  .bento__feature {
    height: 280px;
  }

  .bento__card-title {
    font-size: 18px;
    line-height: 24px;
  }

  .section__title {
    font-size: 18px;
    line-height: 24px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* ---- Ensure no horizontal overflow ---- */
html, body {
  overflow-x: hidden;
}

main, section, footer, header {
  max-width: 100vw;
}

img {
  max-width: 100%;
}

/* Material Symbols */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ==========================================
   AURA NARRATIVE SYSTEM (Product & Cart)
   ========================================== */
:root {
  --aura-surface: #faf9fc;
  --aura-paper: #ffffff;
  --aura-bone: #f0f0f0;
  --aura-silver: #d1d1d1;
  --aura-onyx: #000000;
  --font-serif: 'Libre Caslon Text', serif;
  --font-sans: 'Hanken Grotesk', sans-serif;
}

/* Header style for solid state pages */
.header--scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-subtle);
}
.header--scrolled .header__nav-link,
.header--scrolled .header__icon,
.header--scrolled .header__menu-btn {
  color: var(--on-surface) !important;
}
.header--scrolled .header__logo img {
  filter: none !important;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans), sans-serif;
  font-size: 11px;
  color: var(--secondary);
  padding-top: 24px;
  padding-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.breadcrumbs a {
  transition: color 250ms ease;
}
.breadcrumbs a:hover {
  color: var(--primary);
}
.breadcrumbs .material-symbols-outlined {
  font-size: 14px;
}

/* Product Detail Main Page */
.product-page-main {
  padding-top: 80px; /* offset for sticky header */
  background-color: var(--aura-surface);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter);
  padding-bottom: var(--stack-lg);
}

@media (min-width: 1024px) {
  .product-detail {
    grid-template-columns: repeat(12, 1fr);
    align-items: start;
  }
}

/* Product Gallery */
.product-gallery {
  display: flex;
  gap: 16px;
  height: 55vh;
  min-height: 360px;
}

@media (min-width: 1024px) {
  .product-gallery {
    grid-column: span 7;
    height: 100vh;
    max-height: 720px;
  }
}

.product-gallery__thumbnails {
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 80px;
  flex-shrink: 0;
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .product-gallery__thumbnails {
    display: flex;
  }
}

.product-gallery__thumb {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid transparent;
  padding: 2px;
  background: var(--aura-paper);
  cursor: pointer;
  transition: border-color 250ms ease;
  border-radius: 0;
}

.product-gallery__thumb:hover {
  border-color: var(--aura-silver);
}

.product-gallery__thumb.active {
  border-color: var(--aura-onyx);
}

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

.product-gallery__display {
  flex-grow: 1;
  position: relative;
  background: var(--aura-paper);
  overflow: hidden;
  border-radius: 0;
}

.product-gallery__slider {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.product-gallery__slider::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.product-gallery__slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
}

.product-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--aura-onyx);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 200ms ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.product-gallery__arrow:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.product-gallery__arrow--prev {
  left: 16px;
}

.product-gallery__arrow--next {
  right: 16px;
}

.product-gallery__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

@media (min-width: 1024px) {
  .product-gallery__dots {
    display: none;
  }
}

.product-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--aura-silver);
  cursor: pointer;
  transition: background-color 250ms ease;
}

.product-gallery__dot.active {
  background-color: var(--aura-onyx);
}

/* Product Info Column */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-sans), sans-serif;
}

@media (min-width: 1024px) {
  .product-info {
    grid-column: span 5;
    position: sticky;
    top: 112px;
    height: fit-content;
    padding-left: 24px;
  }
}

.product-info__header {
  border-bottom: 1px solid var(--aura-silver);
  padding-bottom: 16px;
}

.product-info__title {
  font-family: var(--font-serif), serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  color: var(--aura-onyx);
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .product-info__title {
    font-size: 32px;
    line-height: 40px;
  }
}

.product-info__price {
  font-size: 22px;
  font-weight: 600;
  color: var(--aura-onyx);
  font-family: var(--font-sans), sans-serif;
}

.product-info__section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: var(--aura-onyx);
}

.product-info__selected-value {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
  color: var(--secondary);
}

.color-selectors {
  display: flex;
  gap: 12px;
}

.color-swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid transparent;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: border-color 250ms ease;
}

.color-swatch:hover {
  border-color: var(--aura-silver);
}

.color-swatch.active {
  border-color: var(--aura-onyx);
}

.color-swatch__inner {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.product-info__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-info__actions .btn-primary,
.product-info__actions .btn-secondary {
  border-radius: 0 !important;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  height: 52px;
}

.product-info__actions .btn-secondary {
  border: 1px solid var(--aura-onyx);
  color: var(--aura-onyx);
  background: var(--aura-paper);
  gap: 8px;
}

.product-info__actions .btn-secondary:hover {
  background: var(--aura-surface);
}

/* Product Accordions */
.product-accordions {
  margin-top: 12px;
}

.product-accordion {
  border-bottom: 1px solid var(--aura-silver);
  padding-top: 16px;
  padding-bottom: 16px;
}
.product-accordion:first-child {
  border-top: 1px solid var(--aura-silver);
}

.product-accordion__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--aura-onyx);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-accordion__summary::-webkit-details-marker {
  display: none;
}

.product-accordion__summary span {
  transition: transform 300ms ease;
}

.product-accordion[open] .product-accordion__summary span {
  transform: rotate(180deg);
}

.product-accordion__content {
  margin-top: 12px;
  font-size: 14px;
  line-height: 22px;
  color: var(--on-surface-variant);
}

.product-accordion__content ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Curated Suggestions (You May Also Like) */
.suggestions {
  padding-top: var(--stack-lg);
  padding-bottom: var(--stack-lg);
  margin-top: var(--stack-lg);
  border-top: 1px solid var(--aura-silver);
}

.suggestions__header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

.suggestions__title {
  font-family: var(--font-serif), serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--aura-onyx);
}

.suggestions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.suggestion-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-sans), sans-serif;
}

.suggestion-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--aura-bone);
  overflow: hidden;
  border-radius: 0;
}

.suggestion-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-multiply;
  transition: transform 700ms ease;
}

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

.suggestion-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  color: var(--aura-paper);
  z-index: 10;
}

.bg-navy {
  background-color: var(--primary-container);
}

.bg-red {
  background-color: var(--secondary-container);
}

.suggestion-card__name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--aura-onyx);
}

.suggestion-card:hover .suggestion-card__name {
  text-decoration: underline;
}

.suggestion-card__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.suggestion-card__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--aura-onyx);
}

.text-red {
  color: var(--secondary-container);
}

.suggestion-card__price-original {
  font-size: 12px;
  text-decoration: line-through;
  color: var(--outline);
}

/* ==========================================
   CART PAGE LAYOUT
   ========================================== */
.cart-page-main {
  padding-top: 100px; /* offset for sticky header */
  background-color: var(--aura-surface);
  min-height: 70vh;
}

.cart-title {
  font-family: var(--font-serif), serif;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: var(--stack-lg);
  color: var(--aura-onyx);
}

@media (min-width: 768px) {
  .cart-title {
    font-size: 36px;
    text-align: left;
  }
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .cart-layout {
    grid-template-columns: repeat(12, 1fr);
    align-items: start;
  }
}

.cart-items-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1024px) {
  .cart-items-column {
    grid-column: span 8;
  }
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-item {
  display: flex;
  flex-direction: row; /* Keep horizontal on mobile too */
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--aura-silver);
  font-family: var(--font-sans), sans-serif;
}

@media (min-width: 576px) {
  .cart-item {
    gap: 24px;
  }
}

.cart-item__image-container {
  width: 90px; /* Compact image on mobile */
  aspect-ratio: 3 / 4;
  background-color: var(--aura-bone);
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 576px) {
  .cart-item__image-container {
    width: 120px; /* Slightly larger on desktop */
  }
}

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

.cart-item__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding: 4px 0;
}

.cart-item__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.cart-item__name {
  font-family: var(--font-serif), serif;
  font-size: 15px; /* Slightly smaller for mobile text fit */
  font-weight: 400;
  color: var(--aura-onyx);
  margin-bottom: 4px;
}

@media (min-width: 576px) {
  .cart-item__name {
    font-size: 18px;
    margin-bottom: 6px;
  }
}

.cart-item__meta {
  font-size: 13px;
  color: var(--on-surface-variant);
  margin-bottom: 4px;
}

.cart-item__price {
  font-size: 16px;
  font-weight: 600;
  color: var(--aura-onyx);
  white-space: nowrap;
}

.cart-item__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--aura-silver);
  height: 36px;
  width: 100px;
  background: var(--aura-paper);
}

.qty-btn {
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--secondary);
  transition: color 200ms ease;
}

.qty-btn:hover {
  color: var(--aura-onyx);
}

.qty-btn .material-symbols-outlined {
  font-size: 16px;
}

.qty-input {
  flex-grow: 1;
  width: 0;
  text-align: center;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--aura-onyx);
  background: transparent;
  padding: 0;
}

.cart-remove-btn {
  font-family: var(--font-sans), sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: underline;
  color: var(--secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 200ms ease;
}

.cart-remove-btn:hover {
  color: var(--aura-onyx);
}

/* Empty Cart View */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
  font-family: var(--font-sans), sans-serif;
}

.cart-empty__icon {
  font-size: 48px;
  color: var(--aura-silver);
  margin-bottom: 16px;
}

.cart-empty__title {
  font-family: var(--font-serif), serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--aura-onyx);
}

.cart-empty__text {
  font-size: 14px;
  color: var(--on-surface-variant);
  margin-bottom: 24px;
}

.cart-empty .btn-primary {
  border-radius: 0 !important;
  height: auto;
  padding: 12px 32px;
}

/* Order Summary Column */
.cart-summary-column {
  width: 100%;
}

@media (min-width: 1024px) {
  .cart-summary-column {
    grid-column: span 4;
    position: sticky;
    top: 112px;
  }
}

.cart-summary {
  background-color: var(--surface-container-low);
  padding: 24px;
  font-family: var(--font-sans), sans-serif;
  border-radius: 0;
  border: 1px solid rgba(196, 198, 206, 0.3);
}

.cart-summary__title {
  font-family: var(--font-serif), serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--aura-onyx);
}

.cart-summary__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid var(--aura-silver);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.cart-summary__label {
  color: var(--on-surface-variant);
}

.cart-summary__value {
  font-weight: 600;
  color: var(--aura-onyx);
}

.cart-summary__total-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.cart-summary__total-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--aura-onyx);
}

.cart-summary__total-value {
  font-family: var(--font-serif), serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--aura-onyx);
}

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
  border-radius: 0 !important;
  height: 52px;
  display: flex;
  align-items: center;
}

/* Promo Voucher code */
.cart-promo {
  margin-top: 16px;
}

.cart-promo__details {
  border-top: 1px solid var(--aura-silver);
  padding-top: 16px;
}

.cart-promo__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  cursor: pointer;
  list-style: none;
}

.cart-promo__summary::-webkit-details-marker {
  display: none;
}

.cart-promo__summary span {
  transition: transform 300ms ease;
}

.cart-promo__details[open] .cart-promo__summary span {
  transform: rotate(180deg);
}

.cart-promo__content {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cart-promo__input {
  flex-grow: 1;
  border-bottom: 1px solid var(--aura-silver) !important;
  font-size: 14px;
  color: var(--aura-onyx);
  background: transparent;
  padding: 8px 0;
  border-radius: 0;
}

.cart-promo__input:focus {
  border-bottom-color: var(--aura-onyx) !important;
}

.cart-promo__btn {
  border: 1px solid var(--aura-onyx);
  color: var(--aura-onyx);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 16px;
  cursor: pointer;
  transition: background-color 250ms ease, color 250ms ease;
  border-radius: 0;
  height: 38px;
}

.cart-promo__btn:hover {
  background-color: var(--aura-onyx);
  color: var(--aura-paper);
}

/* Badge bounce animation */
@keyframes badge-bounce {
  0%, 100% { transform: scale(1); }
  30% { transform: scale(1.3); }
  50% { transform: scale(0.95); }
  75% { transform: scale(1.15); }
}

.bounce-animation {
  animation: badge-bounce 500ms ease-out forwards;
}

/* ==========================================
   COLLECTION PAGE STYLING
   ========================================== */
.collection-page-main {
  padding-top: 100px; /* offset for sticky header */
  background-color: var(--aura-surface);
  padding-bottom: var(--stack-lg);
}
.collection-header {
  margin-bottom: var(--stack-lg);
  font-family: var(--font-sans), sans-serif;
}
.collection-title {
  font-family: var(--font-serif), serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--aura-onyx);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .collection-title {
    font-size: 36px;
  }
}
.collection-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--secondary);
  max-width: 800px;
}
.collection-subcategories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.btn-subcategory {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border: 1px solid var(--aura-silver);
  color: var(--aura-onyx);
  transition: all 250ms ease;
  background-color: var(--aura-paper);
}
.btn-subcategory:hover {
  background-color: var(--aura-bone);
  border-color: var(--aura-onyx);
}

.collection-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .collection-content {
    grid-template-columns: 240px 1fr;
  }
}

.collection-filters {
  display: none; /* Hide on mobile/tablet */
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .collection-filters {
    display: flex;
  }
}
.filter-group {
  border-bottom: 1px solid var(--aura-silver);
  padding-bottom: 24px;
}
.filter-title {
  font-family: var(--font-sans), sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--aura-onyx);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-list a {
  font-family: var(--font-sans), sans-serif;
  font-size: 14px;
  color: var(--secondary);
  transition: color 200ms ease;
}
.filter-list a:hover {
  color: var(--aura-onyx);
  text-decoration: underline;
}
.filter-list a.active {
  font-weight: 700;
  color: var(--aura-onyx);
}

.collection-products {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.collection-sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--aura-silver);
  padding-bottom: 12px;
  font-family: var(--font-sans), sans-serif;
  font-size: 13px;
  color: var(--secondary);
}
.sort-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sort-selector select {
  border: none;
  background: transparent;
  font-family: var(--font-sans), sans-serif;
  font-weight: 600;
  color: var(--aura-onyx);
  cursor: pointer;
  outline: none;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter);
}
@media (min-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collection-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-sans), sans-serif;
}
.collection-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  background-color: var(--aura-bone);
  overflow: hidden;
}
.collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.collection-card:hover .collection-card__image img {
  transform: scale(1.05);
}
.collection-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  color: var(--aura-paper);
}
.collection-card__name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--aura-onyx);
}
.collection-card:hover .collection-card__name {
  text-decoration: underline;
}
.collection-card__price-row {
  display: flex;
  align-items: center;
}
.collection-card__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--aura-onyx);
}
.collection-card__price-original {
  font-size: 12px;
  text-decoration: line-through;
  color: var(--outline);
  margin-left: 8px;
}
.collection-load-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.collection-load-more .btn-secondary {
  border-radius: 0 !important;
  padding: 16px 48px;
  border: 1px solid var(--aura-onyx);
  color: var(--aura-onyx);
  background-color: var(--aura-paper);
}
.collection-load-more .btn-secondary:hover {
  background-color: var(--aura-surface);
}

/* ==========================================
   TRENDING SECTION SLIDER
   ========================================== */
.trending-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  /* Hide scrollbar for Chrome, Safari and Opera */
  scrollbar-width: none; /* Firefox */
}
.trending-scroll-container::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.trending-slider {
  display: flex;
  gap: 20px;
}

.trending-card {
  flex: 0 0 240px; /* Fixed width on mobile to enable side scrolling */
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-sans), sans-serif;
  text-decoration: none;
}

@media (min-width: 1024px) {
  /* On desktop, show 4 items neatly across the container */
  .trending-card {
    flex: 0 0 calc(25% - 15px);
  }
}

.trending-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  background-color: var(--aura-bone);
  overflow: hidden;
  border-radius: 0;
}
.trending-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.trending-card:hover .trending-card__image img {
  transform: scale(1.05);
}
.trending-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  color: var(--aura-paper);
}
.trending-card__name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--aura-onyx);
}
.trending-card:hover .trending-card__name {
  text-decoration: underline;
}
.trending-card__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--aura-onyx);
}

/* ==========================================
   SEARCH OVERLAY
   ========================================== */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.search-overlay--open {
  visibility: visible;
  opacity: 1;
}

.search-overlay__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.search-overlay__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  background-color: var(--aura-surface);
  transform: translateY(-20px);
  transition: transform 300ms ease;
  padding: 24px var(--margin-mobile);
  border-bottom: 1px solid var(--aura-silver);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .search-overlay__panel {
    padding: 32px var(--margin-desktop);
  }
}
.search-overlay--open .search-overlay__panel {
  transform: translateY(0);
}

.search-overlay__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.search-overlay__logo {
  font-family: var(--font-serif), serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--aura-onyx);
  text-transform: uppercase;
}
.search-overlay__close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--aura-onyx);
  display: flex;
  align-items: center;
}
.search-overlay__close span {
  font-size: 24px;
}

.search-overlay__content {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-sans), sans-serif;
}

.search-overlay__form {
  margin-bottom: 24px;
}
.search-overlay__input {
  width: 100%;
  border: none !important;
  border-bottom: 1px solid var(--aura-silver) !important;
  background: transparent !important;
  font-family: var(--font-serif), serif;
  font-size: 20px;
  color: var(--aura-onyx) !important;
  padding: 12px 0 !important;
  border-radius: 0;
  outline: none !important;
  box-shadow: none !important;
}
@media (min-width: 768px) {
  .search-overlay__input {
    font-size: 28px;
  }
}
.search-overlay__input:focus {
  border-bottom-color: var(--aura-onyx) !important;
}

.search-overlay__section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 16px;
}

.search-overlay__suggested-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.search-overlay__suggested-links a {
  font-size: 14px;
  color: var(--aura-onyx);
  padding: 8px 16px;
  background-color: var(--aura-paper);
  border: 1px solid var(--aura-silver);
  transition: all 200ms ease;
  text-decoration: none;
}
.search-overlay__suggested-links a:hover {
  background-color: var(--aura-bone);
  border-color: var(--aura-onyx);
}

/* Results section */
.search-overlay__results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .search-overlay__results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.search-result-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none !important;
  color: var(--aura-onyx) !important;
  font-family: var(--font-sans), sans-serif;
  transition: opacity 250ms ease;
}
.search-result-card:hover {
  opacity: 0.9;
}
.search-result-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  background-color: var(--aura-bone);
  overflow: hidden;
  width: 100%;
}
.search-result-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.search-result-card:hover .search-result-card__image img {
  transform: scale(1.05);
}
.search-result-card__name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin: 0;
}
.search-result-card:hover .search-result-card__name {
  text-decoration: underline;
}
.search-result-card__price {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* ==========================================
   B2B WHOLESALE ELEMENTS
   ========================================== */
.product-info__moq {
  font-family: var(--font-sans), sans-serif;
  font-size: 13px;
  color: var(--secondary);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.wholesale-label {
  font-family: var(--font-sans), sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  background-color: var(--aura-bone);
  color: var(--aura-onyx);
  margin-left: 8px;
  vertical-align: middle;
  display: inline-block;
}

/* Wholesale Product Cards Enhancements */
.product-card__meta {
  font-family: var(--font-sans), sans-serif;
  font-size: 12px;
  color: var(--secondary);
  margin-top: 4px;
}
.product-card__stock {
  font-family: var(--font-sans), sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2e7d32; /* Green for in stock */
  margin-top: 4px;
}
.product-card__stock.text-red {
  color: var(--secondary-fixed-dim) !important; /* Red for low stock */
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  color: var(--aura-paper);
  z-index: 10;
}

/* ==========================================
   B2B MOBILE RE-LAYOUTS & TOUCH TARGETS
   ========================================== */
.product-info__b2b-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-info__b2b-specs li {
  font-family: var(--font-sans), sans-serif;
  font-size: 14px;
  color: var(--aura-onyx);
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dotted var(--aura-silver);
}
.product-info__b2b-specs li strong {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.product-info__b2b-specs li span {
  color: var(--secondary);
}
.product-info__b2b-specs li span.status-in-stock {
  color: #2e7d32;
  font-weight: 700;
}
.product-info__b2b-specs li span.status-low-stock {
  color: var(--secondary-fixed-dim);
  font-weight: 700;
}

/* Circular Color Swatches + Names in Filters */
.color-filter-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.color-filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-sans), sans-serif;
  font-size: 14px;
  color: var(--secondary);
  transition: color 250ms ease;
}
.color-filter-item:hover {
  color: var(--aura-onyx);
}
.color-filter-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  transition: transform 250ms ease;
}
.color-filter-item:hover .color-filter-circle {
  transform: scale(1.1);
}
.color-filter-item.active .color-filter-circle::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1.5px solid var(--aura-onyx);
  border-radius: 50%;
}
.color-filter-item.active .color-filter-name {
  font-weight: 700;
  color: var(--aura-onyx);
}

/* Product Card Color Swatches Only */
.product-card__colors,
.collection-card__colors {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  margin-bottom: 4px;
  align-items: center;
}
.product-card__color-circle,
.collection-card__color-circle {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
}
.product-card__color-more,
.collection-card__color-more {
  font-family: var(--font-sans), sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--secondary);
  margin-left: 2px;
}


/* Product Info Buttons */
.product-info__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 24px;
}
.product-info__actions .btn-primary,
.product-info__actions .btn-secondary {
  flex: 1;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius);
}

/* Mobile Specific Collection Sidebar Drawer */
@media (max-width: 1023px) {
  .btn-filter-toggle {
    display: inline-flex !important;
  }
  .collection-filters {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--aura-paper);
    z-index: 2000;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 28px;
    overflow-y: auto;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .collection-filters.active {
    transform: translateX(320px);
  }
  .collection-filters__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease;
  }
  .collection-filters__overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .filter-list li {
    padding: 2px 0;
  }
  .filter-list a {
    display: block;
    padding: 12px 0; /* Touch target 44px+ height */
    font-size: 15px;
  }
}

/* Mobile Specific Product Buttons */
@media (max-width: 767px) {
  .product-info__actions {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .product-info__actions .btn-primary,
  .product-info__actions .btn-secondary {
    width: 100% !important;
    height: 56px !important; /* Increased height */
    padding: 16px 24px !important;
    border-radius: var(--radius-sm) !important; /* Rounded corner matching site design */
    font-size: 14px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
}

/* ============================================================
   BEST SELLING & NEW IN STOCK CAROUSEL STYLES
   ============================================================ */
.best-selling-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.carousel-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  width: 100%;
}

.carousel-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.carousel-track {
  display: flex;
  gap: 20px;
  padding: 12px 0;
}

.carousel-track > * {
  flex: 0 0 calc(50vw - 26px);
  width: calc(50vw - 26px);
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .carousel-track > * {
    flex: 0 0 280px;
    width: 280px;
  }
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--stark-white, #ffffff);
  color: var(--primary, #000000);
  cursor: pointer;
  transition: all 250ms ease;
}

.carousel-arrow:hover {
  background: var(--primary, #000000);
  color: var(--stark-white, #ffffff);
  border-color: var(--primary, #000000);
}

@media (max-width: 767px) {
  .carousel-arrows {
    display: flex !important;
  }
  /* On mobile only show the next (right) arrow as a scroll hint */
  .carousel-arrows .prev {
    display: none;
  }
  .carousel-arrows .next {
    display: inline-flex;
  }
  .carousel-wrapper {
    scroll-snap-type: x mandatory;
  }
}

/* ==========================================
   SHARE MODAL & TOAST STYLES
   ========================================== */
.share-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
  padding: var(--margin-mobile);
}

.share-modal.active {
  opacity: 1;
  visibility: visible;
}

.share-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.share-modal__panel {
  position: relative;
  background: var(--aura-paper, #ffffff);
  border: 1px solid var(--aura-silver, #d1d1d1);
  padding: 24px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lift);
  transform: translateY(20px);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.share-modal.active .share-modal__panel {
  transform: translateY(0);
}

.share-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.share-modal__title {
  font-family: 'Libre Caslon Text', serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--aura-onyx, #000000);
  letter-spacing: 0.05em;
}

.share-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aura-onyx, #000000);
  transition: opacity 200ms;
}

.share-modal__close:hover {
  opacity: 0.7;
}

.share-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.share-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--aura-bone, #f0f0f0);
  border: 1px solid var(--aura-silver, #d1d1d1);
  padding: 16px 8px;
  text-decoration: none;
  color: var(--aura-onyx, #000000);
  transition: all 200ms ease;
  cursor: pointer;
}

.share-item:hover {
  background: var(--aura-surface, #faf9fc);
  border-color: var(--aura-onyx, #000000);
}

.share-item__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.share-copy-field {
  display: flex;
  border: 1px solid var(--aura-silver, #d1d1d1);
  padding: 4px;
  align-items: center;
  background: var(--aura-paper, #ffffff);
}

.share-copy-input {
  border: none;
  background: transparent;
  font-size: 13px;
  color: var(--secondary, #5f5e5e);
  flex: 1;
  outline: none;
  font-family: 'Inter', sans-serif;
  padding: 8px 12px;
}

.share-copy-btn {
  background: var(--aura-onyx, #000000);
  color: var(--aura-paper, #ffffff);
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}

.share-copy-btn:hover {
  background: var(--secondary, #5f5e5e);
}

/* Toast Notification styling */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--aura-onyx, #000000);
  color: var(--aura-paper, #ffffff);
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-lift);
  z-index: 2500;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 300ms;
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 767px) {
  .toast-notification {
    left: 20px;
    right: 20px;
    bottom: 20px;
    text-align: center;
  }
}











