/* ==========================================================================
   VICTORIA ROSE PARK - DESIGN SYSTEM & STYLESHEET
   Accurate clone inspired by Shopify Impact theme
   ========================================================================== */

:root {
  /* Color Palette */
  --color-primary: 118, 139, 124;         /* #768b7c Sage Green */
  --color-primary-rgb: 118, 139, 124;
  --color-accent: 222, 167, 131;          /* #dea783 Warm Terracotta */
  --color-accent-badge: 174, 88, 64;      /* #ae5840 Rich Clay */
  --color-dark: 48, 48, 48;               /* #303030 Charcoal */
  --color-light-bg: 247, 247, 247;        /* #f7f7f7 Gallery Gray */
  --color-white: 255, 255, 255;
  --color-border: rgba(48, 48, 48, 0.12);

  /* Typography */
  --font-heading: 'Halant', Georgia, serif;
  --font-body: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container-max-width: 1600px;
  --container-gutter: 2rem;
  --section-spacing: 5rem;
  --radius-pill: 9999px;
  --radius-card: 0.75rem;
  --radius-button: 3.75rem;

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

  /* Sticky Announcement Bar Height */
  --announcement-height: 46px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--announcement-height) + 75px);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: rgb(var(--color-dark));
  background-color: rgb(var(--color-white));
  line-height: 1.6;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

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

.container {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-gutter);
  padding-right: var(--container-gutter);
}

/* ==========================================================================
   FLOATING REVIEWS TAB (LEFT EDGE - OKENDO STYLE)
   ========================================================================== */
.floating-reviews-tab {
  position: fixed;
  left: 0;
  top: 32%;
  z-index: 80;
  background-color: #aabaa3;
  color: #ffffff;
  padding: 8px 14px 10px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 0 0 6px 6px;
  transform-origin: 0 0;
  transform: rotate(-90deg) translate(-100%, 0);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, background-color 0.25s ease;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.floating-reviews-tab:hover {
  background-color: #9cb094;
  transform: rotate(-90deg) translate(-100%, 4px);
}

.reviews-tab__content {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

@media (max-width: 699px) {
  .floating-reviews-tab {
    display: none;
  }
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background-color: rgb(96, 122, 111);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  padding: 0.8rem 1.5rem;
  position: relative;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.announcement-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: var(--container-max-width);
  margin: 0 auto;
  position: relative;
}

.announcement-bar__message {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  transition: opacity var(--transition-fast);
}

.announcement-bar__message:hover {
  opacity: 0.88;
}

.announcement-bar__right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  padding: 2px;
  gap: 2px;
}

.lang-btn {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  outline: none;
}

.lang-btn.active {
  background-color: #ffffff;
  color: rgb(96, 122, 111);
  font-weight: 700;
}

.lang-btn:hover:not(.active) {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   HEADER & NAVIGATION (TRANSPARENT OVER HERO)
   ========================================================================== */
.header {
  position: absolute;
  top: var(--announcement-height);
  left: 0;
  width: 100%;
  z-index: 70;
  background: transparent;
  color: #ffffff;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.25s ease,
              padding 0.3s ease;
  padding: 1.5rem 0;
}

/* Sticky scrolled state */
.header.header--scrolled {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #557366;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.85rem 0;
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: var(--container-gutter);
  padding-right: var(--container-gutter);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  flex-wrap: wrap;
  line-height: 1.35;
}

.nav-item {
  position: relative;
}

.header__nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0;
  transition: color var(--transition-fast), opacity var(--transition-fast);
  white-space: nowrap;
}

.header.header--scrolled .header__nav-link {
  color: #557366;
}

.header.header--scrolled .header__nav-link:hover {
  color: #354940;
}

.nav-chevron {
  transition: transform 0.2s ease;
  color: inherit;
}

.header.header--scrolled .nav-chevron {
  stroke: #557366;
}

.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

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

/* Dropdown Menu */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 0.75rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  color: rgb(48, 48, 48);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.45rem 1.25rem;
  font-size: 0.875rem;
  color: rgb(48, 48, 48);
  font-weight: 400;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-link:hover {
  background: rgba(118, 139, 124, 0.08);
  color: rgb(118, 139, 124);
}

.dropdown-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin: 0.5rem 0;
}

.dropdown-title {
  padding: 0.25rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(48, 48, 48, 0.45);
}

/* Header Logo */
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1.15;
  text-align: center;
  transition: opacity var(--transition-fast);
}

.header__brand-link:hover {
  opacity: 0.85;
}

.header__brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.header__brand-tagline {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 3px;
  transition: color var(--transition-base);
}

.header.header--scrolled .header__brand-name {
  color: rgb(var(--color-dark));
}

.header.header--scrolled .header__brand-tagline {
  color: rgba(48, 48, 48, 0.6);
}

.header__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.header__logo-img--white {
  display: block;
}

.header__logo-img--dark {
  display: none;
}

.header.header--scrolled .header__logo-img--white {
  display: none;
}

.header.header--scrolled .header__logo-img--dark {
  display: block;
  height: 38px;
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.header__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  position: relative;
  padding: 0.4rem;
  border-radius: 50%;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.header__action-btn:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

.header__cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  background-color: #aabaa3;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.header.header--scrolled .header__cart-count {
  background-color: rgb(var(--color-primary));
}

/* Mobile Hamburger Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: inherit;
  border-radius: 50%;
  transition: background-color var(--transition-fast);
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header.header--scrolled .mobile-menu-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Mobile Nav Overlay & Drawer */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 86vw;
  max-width: 360px;
  background: #ffffff;
  color: #1a1a1a;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.mobile-nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav-drawer__brand {
  display: flex;
  flex-direction: column;
}

.mobile-brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgb(var(--color-dark));
}

.mobile-brand-tagline {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(48, 48, 48, 0.6);
  margin-top: 2px;
}

.mobile-nav-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.04);
  color: #333;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.mobile-nav-drawer__close:hover {
  background: rgba(0, 0, 0, 0.08);
}

.mobile-nav-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.mobile-search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f4f6f4;
  border-radius: 0.625rem;
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
}

.mobile-nav-group {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background: transparent;
  border: none;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  text-align: left;
}

.mobile-chevron {
  transition: transform 0.25s ease;
  color: #777;
}

.mobile-nav-group.open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  padding: 0 0 0.85rem 1rem;
  gap: 0.35rem;
}

.mobile-nav-group.open .mobile-submenu {
  display: flex;
}

.mobile-submenu__heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(48, 48, 48, 0.45);
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.mobile-sublink {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.9375rem;
  color: #444;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-sublink:hover {
  color: rgb(118, 139, 124);
}

.mobile-nav-direct {
  display: block;
  padding: 1rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color var(--transition-fast);
}

.mobile-nav-direct:hover {
  color: rgb(118, 139, 124);
}

.mobile-nav-drawer__footer {
  padding: 1.25rem 1.5rem;
  background: #fafbfa;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-lang-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-lang-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
}

.mobile-social-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #555;
  text-decoration: none;
}

.mobile-social-link:hover {
  color: #1a1a1a;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius-button);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: rgb(var(--color-primary));
  color: #fff;
  border: 1.5px solid transparent;
}

.btn-primary:hover {
  background-color: transparent;
  color: rgb(var(--color-primary));
  border-color: rgb(var(--color-primary));
  box-shadow: inset 0 0 0 1px rgb(var(--color-primary));
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.9);
  color: rgb(var(--color-dark));
  backdrop-filter: blur(8px);
  border: 1.5px solid transparent;
}

.btn-outline-white:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background-color: transparent;
  color: rgb(var(--color-primary));
  border: 1.5px solid rgb(var(--color-primary));
}

.btn-outline:hover {
  background-color: rgb(var(--color-primary));
  color: #fff;
}

/* ==========================================================================
   HERO VIDEO SECTION (HIDEAWAY COLLECTION)
   ========================================================================== */
.hero-video {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 620px;
  max-height: 980px;
  overflow: hidden;
  background-color: #0d1410;
}

.hero-video__player {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.09);
  opacity: 0.98;
  will-change: transform;
  pointer-events: none;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.04) 40%, rgba(0, 0, 0, 0.28) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
}

.hero-video__content {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s ease;
  will-change: transform;
}

.hero-signature-img {
  width: clamp(280px, 42vw, 560px);
  max-width: 90vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.8)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
  user-select: none;
  pointer-events: none;
  margin-bottom: 2rem;
  animation: heroTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.btn-hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2.25rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: rgba(22, 28, 25, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-hero-pill:hover {
  background: #ffffff;
  color: #1a1a1a;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hero-signature-img {
    width: clamp(220px, 78vw, 360px);
    margin-bottom: 1.25rem;
  }
}

/* ==========================================================================
   FEATURED COLLECTION (BEST-SELLER PRINTS)
   ========================================================================== */
.featured-collection {
  padding: var(--section-spacing) 0;
  background-color: rgb(var(--color-white));
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 400;
  color: #2b2e2c;
  letter-spacing: -0.015em;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2b2e2c;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.section-link__arrow {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #e7eae7;
  color: #4a544f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  padding-left: 1px;
  transition: all var(--transition-fast);
}

.section-link:hover {
  color: #111111;
}

.section-link:hover .section-link__arrow {
  background: #607a6f;
  color: #ffffff;
  transform: translateX(3px);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.product-card__figure {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-card);
  background-color: rgb(var(--color-light-bg));
  margin-bottom: 1rem;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.product-card__img--secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover .product-card__img--primary {
  opacity: 0;
}

.product-card:hover .product-card__img--secondary {
  opacity: 1;
  transform: scale(1.03);
}

.product-card__quick-add {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: rgb(var(--color-dark));
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: all var(--transition-fast);
  pointer-events: none;
}

.product-card:hover .product-card__quick-add {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.product-card__quick-add:hover {
  background-color: rgb(var(--color-primary));
  color: #fff;
}

.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: rgb(var(--color-dark));
}

.product-card__price {
  font-size: 0.9375rem;
  color: rgb(var(--color-primary));
  font-weight: 600;
}

/* ==========================================================================
   COLLECTION HIGHLIGHT / STORY
   ========================================================================== */
.story-banner {
  background-color: rgb(var(--color-light-bg));
  padding: 5.5rem 0 0 0;
  overflow: hidden;
}

.story-banner__inner {
  text-align: center;
  max-width: 1050px;
  margin: 0 auto 3.5rem auto;
  padding: 0 1.5rem;
}

.story-banner__quote {
  font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(1.75rem, 3vw, 2.85rem);
  font-weight: 400;
  color: #242424;
  margin: 0 0 0.85rem 0;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.story-banner__subtitle {
  font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2.85rem, 5.5vw, 5rem);
  letter-spacing: -0.015em;
  text-transform: none;
  color: #111111;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}

/* ==========================================================================
   COLLECTIONS CAROUSEL (FULL-BLEED EDITORIAL SLIDER)
   ========================================================================== */
.collections-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background-color: #111111;
  user-select: none;
}

.collections-carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  cursor: none; /* Replaced by custom follower cursor */
}

.collections-carousel__track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.collections-carousel__track.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.collections-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: clamp(850px, 95vh, 1250px);
  position: relative;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.collections-carousel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  pointer-events: none;
  border-radius: 0;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.collections-carousel__slide:hover .collections-carousel__img {
  transform: scale(1.02);
}

.collections-carousel__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.46) 90%);
  z-index: 2;
  gap: 1.5rem;
}

.collections-carousel__title {
  font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

/* White Pill Button (matching user reference screenshot) */
.collections-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #0d0d0d;
  font-family: var(--font-body, 'Mulish', -apple-system, sans-serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 1.1rem 3rem;
  border-radius: 9999px;
  border: none;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  z-index: 10;
}

.collections-pill-btn:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
}

.collections-pill-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Dynamic Follower Cursor indicating Left / Right (Screen Half Aware) */
.collections-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity 0.2s ease, transform 0.1s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.collections-cursor.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.collections-cursor.is-clicking {
  transform: translate(-50%, -50%) scale(0.85);
}

.collections-cursor.is-hidden {
  opacity: 0 !important;
  transform: translate(-50%, -50%) scale(0.4);
}

.collections-cursor__icon {
  display: none !important;
  pointer-events: none;
}

.collections-cursor.is-left .collections-cursor__icon--left {
  display: block !important;
}

.collections-cursor.is-right .collections-cursor__icon--right {
  display: block !important;
}

/* Dots Pagination */
.collections-carousel__dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 8;
  cursor: pointer;
}

.collections-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.collections-carousel__dot:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

.collections-carousel__dot.is-active {
  background-color: #ffffff;
  width: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

@media (hover: none), (max-width: 768px) {
  .collections-cursor {
    display: none !important;
  }

  .collections-carousel__track {
    cursor: auto !important;
  }

  .story-banner__quote {
    font-size: clamp(1.3rem, 4.4vw, 1.75rem);
  }

  .story-banner__subtitle {
    font-size: clamp(2.1rem, 7.2vw, 3rem);
  }

  .collections-carousel__slide {
    height: clamp(550px, 80vh, 720px);
  }

  .collections-pill-btn {
    padding: 0.95rem 2.4rem;
    font-size: 1.05rem;
  }

  .collections-carousel__dots {
    bottom: 18px;
  }
}

/* ==========================================================================
   MEET THE ARTIST (SPLIT EDITORIAL)
   ========================================================================== */
.meet-artist {
  padding: var(--section-spacing) 0;
  background-color: #fff;
}

.meet-artist__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.meet-artist__image-wrap {
  position: relative;
  border-radius: 1rem;
}

.meet-artist__main-img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.meet-artist__image-wrap:hover .meet-artist__main-img {
  transform: scale(1.02);
}

.meet-artist__video-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 200px;
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  border: 3px solid #ffffff;
  background: #000;
  z-index: 5;
  transition: transform 0.3s ease;
}

.meet-artist__video-card:hover {
  transform: scale(1.06) translateY(-4px);
}

.meet-artist__process-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.meet-artist__video-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

@media (max-width: 768px) {
  .meet-artist__video-card {
    right: 10px;
    bottom: -15px;
    width: 110px;
    height: 160px;
  }
}

.meet-artist__content {
  padding-right: 2rem;
}

.meet-artist__tag {
  color: rgb(var(--color-primary));
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.meet-artist__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 400;
  color: rgb(var(--color-dark));
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.meet-artist__desc {
  font-size: 1.0625rem;
  color: rgba(48, 48, 48, 0.88);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.meet-artist__desc p {
  margin-bottom: 0.9rem;
}

.meet-artist__desc p:last-child {
  margin-bottom: 0;
}

.meet-artist__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  background-color: rgba(48, 48, 48, 0.05);
  border: 1px solid rgba(48, 48, 48, 0.1);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgb(var(--color-dark));
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
}

.skill-tag:hover {
  background-color: rgb(var(--color-dark));
  color: #ffffff;
  border-color: rgb(var(--color-dark));
  transform: translateY(-1px);
}

.meet-artist__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  color: rgb(var(--color-dark));
  border: 1.5px solid rgb(var(--color-dark));
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-outline:hover {
  background: rgb(var(--color-dark));
  color: #ffffff;
  transform: translateY(-1px);
}

/* ==========================================================================
   CUSTOMER REVIEWS (OKENDO STYLE)
   ========================================================================== */
.reviews-section {
  padding: var(--section-spacing) 0;
  background-color: rgb(var(--color-light-bg));
}

.reviews-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reviews-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: rgb(var(--color-primary));
  margin-bottom: 0.5rem;
}

.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.reviews-badge-text {
  font-size: 0.875rem;
  color: rgba(48, 48, 48, 0.7);
}

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

.review-card {
  background: #fff;
  padding: 2.25rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--color-border);
}

.review-card__stars {
  color: #f59e0b;
  margin-bottom: 1rem;
}

.review-card__text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgb(var(--color-dark));
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-card__author {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgb(var(--color-primary));
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-card__verified {
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 600;
}

/* ==========================================================================
   INSTAGRAM GRID
   ========================================================================== */
.insta-section {
  padding: var(--section-spacing) 0 2rem 0;
  text-align: center;
}

.insta-header {
  margin-bottom: 2rem;
}

.insta-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: rgb(var(--color-dark));
  margin-bottom: 0.25rem;
}

.insta-handle {
  color: rgb(var(--color-primary));
  font-weight: 600;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.insta-tile {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.insta-tile:hover img {
  transform: scale(1.08);
}

.insta-tile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(118, 139, 124, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.insta-tile:hover .insta-tile__overlay {
  opacity: 1;
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.newsletter-section {
  padding: 5rem 0;
  background-color: #f1f4f2;
  text-align: center;
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: rgb(var(--color-dark));
  margin-bottom: 0.75rem;
}

.newsletter-desc {
  font-size: 1rem;
  color: rgba(48, 48, 48, 0.8);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 0.9375rem;
  background-color: #fff;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-input:focus {
  border-color: rgb(var(--color-primary));
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: rgb(var(--color-light-bg));
  color: rgb(var(--color-dark));
  padding: 4.5rem 0 2.25rem 0;
  border-top: 1px solid var(--color-border);
}

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

.footer__brand-title,
.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
  color: rgb(var(--color-primary));
  line-height: 1.2;
}

.footer__brand-sub {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(48, 48, 48, 0.55);
  margin-top: 3px;
  margin-bottom: 0.75rem;
}

.footer__brand p,
.footer__desc,
.footer__brand-desc {
  margin-top: 0.75rem;
  color: rgba(48, 48, 48, 0.75);
  font-size: 0.9375rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgb(var(--color-primary));
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.footer__list a {
  font-size: 0.9375rem;
  color: rgba(48, 48, 48, 0.75);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
  padding: 0.15rem 0;
}

.footer__list a:hover {
  color: rgb(var(--color-primary));
  transform: translateX(3px);
}

.footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  background: rgba(var(--color-primary), 0.04);
  border: 1px solid rgba(var(--color-primary), 0.16);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgb(var(--color-primary));
  text-decoration: none;
  transition: all var(--transition-fast);
  width: fit-content;
}

.footer__social-pill:hover,
.footer__social-pill:active {
  background: rgb(var(--color-primary));
  color: #ffffff;
  border-color: rgb(var(--color-primary));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 74, 62, 0.16);
}

.footer__social-pill svg {
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem;
  color: rgba(48, 48, 48, 0.6);
}

.footer__payments {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.8125rem;
}

.footer__payments svg, .footer__payments img {
  height: 22px;
  width: auto;
  opacity: 0.85;
}

/* ==========================================================================
   SLIDE-OVER CART DRAWER
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background-color: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

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

.cart-drawer__header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
}

.cart-drawer__close {
  padding: 0.5rem;
  color: rgb(var(--color-dark));
  transition: transform var(--transition-fast);
}

.cart-drawer__close:hover {
  transform: rotate(90deg);
}

.cart-drawer__shipping-bar {
  padding: 1rem 1.5rem;
  background-color: rgb(var(--color-light-bg));
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
}

.shipping-bar__progress {
  height: 6px;
  background-color: rgba(48, 48, 48, 0.1);
  border-radius: 3px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.shipping-bar__fill {
  height: 100%;
  background-color: rgb(var(--color-primary));
  width: 70%;
  border-radius: 3px;
  transition: width var(--transition-smooth);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-empty-message {
  text-align: center;
  margin: auto;
  color: rgba(48, 48, 48, 0.6);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-item__img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
  background-color: var(--color-light-bg);
}

.cart-item__details h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.cart-item__variant {
  font-size: 0.8125rem;
  color: rgba(48, 48, 48, 0.65);
  margin-bottom: 0.5rem;
}

.cart-item__qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.5rem;
  gap: 0.5rem;
  font-size: 0.8125rem;
}

.cart-item__price {
  font-weight: 700;
  font-size: 0.9375rem;
  color: rgb(var(--color-primary));
}

.cart-drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background-color: #fafafa;
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cart-drawer__checkout-btn {
  width: 100%;
}

/* ==========================================================================
   QUICK VIEW / PRODUCT MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

.modal-content {
  background-color: #fff;
  border-radius: 1rem;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-gallery {
  padding: 2rem;
  background-color: rgb(var(--color-light-bg));
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.5rem;
}

.modal-thumbs {
  display: flex;
  gap: 0.5rem;
}

.modal-thumb {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
}

.modal-thumb.active {
  border-color: rgb(var(--color-primary));
  opacity: 1;
}

.modal-details {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.modal-price {
  font-size: 1.35rem;
  color: rgb(var(--color-primary));
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.variant-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

.modal-variant-groups {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.modal-option-row .option-label-row {
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.modal-option-row .option-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.modal-option-row .swatch-btn {
  padding: 0.45rem 0.95rem;
  font-size: 0.8125rem;
}

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

.variant-option-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.variant-option-btn.selected {
  background-color: rgb(var(--color-primary));
  color: #fff;
  border-color: rgb(var(--color-primary));
}

/* ==========================================================================
   SEARCH DRAWER / MODAL
   ========================================================================== */
.search-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

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

.search-modal__close {
  align-self: flex-end;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.search-modal__input-wrap {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  border-bottom: 2px solid rgb(var(--color-primary));
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-modal__input {
  width: 100%;
  border: none;
  font-family: var(--font-heading);
  font-size: 2rem;
  outline: none;
  background: transparent;
}

.search-results-grid {
  max-width: 1000px;
  width: 100%;
  margin: 2.5rem auto 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  overflow-y: auto;
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 850px) {
  html {
    font-size: 14.5px;
    -webkit-text-size-adjust: 100%;
  }

  :root {
    --container-gutter: 1rem;
    --section-spacing: 2.5rem;
  }

  /* Global overflow guard */
  html, body {
    overflow-x: hidden;
    overflow-x: clip;
  }

  .announcement-bar {
    padding: 0.55rem 1rem;
  }

  .announcement-bar__message {
    font-size: 0.78rem;
    padding-right: 65px;
  }

  .header {
    top: var(--announcement-height);
    padding: 0.75rem 0;
  }

  .header.header--scrolled,
  .header.header--solid {
    top: 0 !important;
    padding: 0.6rem 0;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
  }

  .header__nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header__brand-name {
    font-size: 1.05rem;
    letter-spacing: 0.14em;
  }

  .header__brand-tagline {
    font-size: 0.48rem;
    letter-spacing: 0.18em;
  }

  .header__actions {
    gap: 0.75rem;
  }

  .header__action-btn--account {
    display: none;
  }

  /* Floating reviews tab hidden on small screens to avoid obstructing touch */
  .floating-reviews-tab {
    display: none;
  }

  .hero-video {
    height: 58vh;
    min-height: 380px;
    max-height: 500px;
  }

  .hero-signature-img {
    width: clamp(180px, 62vw, 270px);
    margin-bottom: 1rem;
  }

  .btn-hero-pill {
    padding: 0.65rem 1.6rem;
    font-size: 0.85rem;
    min-height: 40px;
  }

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

  .section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .section-link {
    font-size: 0.85rem;
    gap: 0.35rem;
  }

  .section-link__arrow {
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
  }

  .meet-artist__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .meet-artist__video-card {
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 140px;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 3.5rem 0 2rem 0;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
    margin-bottom: 2.5rem;
  }

  .footer__brand,
  .footer__brand-col,
  .footer__col--brand {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
  }

  .footer__brand p,
  .footer__desc,
  .footer__brand-desc {
    margin: 0.65rem auto 0 auto;
    max-width: 380px;
  }

  .footer__connect {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
  }

  .footer__connect .footer__social-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 1.75rem;
  }
}

@media (max-width: 550px) {
  html {
    font-size: 13.5px;
    -webkit-text-size-adjust: 100%;
  }

  :root {
    --container-gutter: 0.75rem;
    --section-spacing: 2rem;
  }

  .announcement-bar {
    padding: 0.45rem 0.75rem;
  }

  .announcement-bar__message {
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    padding-right: 58px;
  }

  .lang-switcher .lang-btn {
    font-size: 0.65rem;
    padding: 2px 6px;
  }

  .header {
    padding: 0.65rem 0;
  }

  .header.header--scrolled,
  .header.header--solid {
    top: 0 !important;
    padding: 0.5rem 0;
  }

  .header__brand-name {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
  }

  .header__brand-tagline {
    font-size: 0.44rem;
    letter-spacing: 0.16em;
  }

  .mobile-menu-btn {
    width: 38px;
    height: 38px;
  }

  .hero-video {
    height: 52vh;
    min-height: 330px;
    max-height: 440px;
  }

  .hero-signature-img {
    width: clamp(160px, 58vw, 230px);
    margin-bottom: 0.8rem;
  }

  .btn-hero-pill {
    padding: 0.55rem 1.35rem;
    font-size: 0.8rem;
    min-height: 36px;
  }

  .section-header {
    margin-bottom: 1.15rem;
  }

  .section-title {
    font-size: clamp(1.2rem, 4.8vw, 1.45rem);
  }

  .section-link {
    font-size: 0.8rem;
  }

  /* Two-column mobile catalog with balanced spacing */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }

  .product-card {
    padding: 0.35rem;
    border-radius: 0.65rem;
  }

  .product-card__figure {
    margin-bottom: 0.4rem;
    border-radius: 0.45rem;
  }

  .product-card__title {
    font-size: 0.82rem;
    line-height: 1.25;
    margin-bottom: 0.2rem;
  }

  .product-card__price {
    font-size: 0.78rem;
  }

  .product-card__options {
    font-size: 0.65rem;
  }

  .btn-quick-add {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
  }

  .meet-artist__actions {
    flex-direction: column;
    gap: 0.65rem;
  }

  .meet-artist__actions .btn {
    width: 100%;
    justify-content: center;
  }

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

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

  .modal-content {
    width: 95vw;
    max-height: 90vh;
    padding: 1.25rem 1rem;
    border-radius: 1rem;
  }

  .footer {
    padding: 2.75rem 0 1.75rem 0;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.25rem;
    margin-bottom: 2rem;
  }

  .footer__brand,
  .footer__brand-col,
  .footer__col--brand {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
  }

  .footer__brand-title,
  .footer__logo {
    font-size: 1.2rem;
    letter-spacing: 0.16em;
  }

  .footer__brand-sub {
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    margin-bottom: 0.4rem;
  }

  .footer__brand p,
  .footer__desc,
  .footer__brand-desc {
    font-size: 0.84rem;
    line-height: 1.55;
    max-width: 320px;
    margin: 0.45rem auto 0 auto;
    color: rgba(48, 48, 48, 0.72);
  }

  .footer__heading {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
  }

  .footer__list {
    gap: 0.55rem;
  }

  .footer__list a {
    font-size: 0.84rem;
    padding: 0.2rem 0;
    color: rgba(48, 48, 48, 0.72);
  }

  .footer__connect {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 1.35rem;
    border-top: 1px solid var(--color-border);
  }

  .footer__connect .footer__social-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.5rem;
  }

  .footer__social-pill {
    padding: 0.48rem 0.85rem;
    font-size: 0.76rem;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding-top: 1.25rem;
    font-size: 0.75rem;
  }

  .footer__payments {
    font-size: 0.72rem;
    line-height: 1.45;
    padding: 0.45rem 0.75rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    max-width: 92%;
    margin: 0 auto;
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-box {
    padding: 2.25rem 1.25rem;
  }
}

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

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

/* ==========================================================================
   PRODUCT DETAIL PAGE STYLES (Shopify Impact Theme Visual Match)
   ========================================================================== */
body.product-page {
  background-color: #ffffff;
  color: #2b2e2c;
}

.header.header--solid {
  position: sticky;
  top: 0;
  background: #ffffff;
  color: #2b2e2c;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  z-index: 70;
}

.header.header--solid .header__logo-img--white {
  display: none !important;
}

.header.header--solid .header__logo-img--dark {
  display: block !important;
}

.header.header--solid .header__nav-link,
.header.header--solid .header__action-btn {
  color: #2b2e2c;
}

.header.header--solid .hamburger-line {
  background-color: #2b2e2c;
}

/* Breadcrumb */
.breadcrumb-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 1.25rem 2rem 0.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #767b79;
}

.breadcrumb__link {
  color: #767b79;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: #2b2e2c;
}

.breadcrumb__separator {
  color: #c0c4c2;
  font-size: 0.75rem;
}

.breadcrumb__current {
  color: #2b2e2c;
  font-weight: 500;
}

/* Main Layout */
.product-page-main {
  padding: 1rem 0 4rem;
}

.product-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Left Column: Gallery */
.product-media-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.gallery-main-wrapper {
  position: relative;
  background-color: #fbfaf8;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.gallery-main-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.gallery-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.4s ease;
}

.gallery-zoom-trigger {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b2e2c;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gallery-zoom-trigger:hover {
  background: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

/* Thumbnails Strip */
.gallery-thumbnails {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.gallery-thumbnails::-webkit-scrollbar {
  height: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.gallery-thumb {
  flex: 0 0 74px;
  height: 74px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  padding: 0;
  background: #fbfaf8;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition-fast);
  opacity: 0.65;
}

.gallery-thumb:hover {
  opacity: 0.95;
}

.gallery-thumb.active {
  opacity: 1;
  border-color: #2b2e2c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Column: Info & Buy Box */
.product-info-column {
  position: relative;
}

.product-info-sticky {
  position: sticky;
  top: 85px;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

/* Star Rating */
.product-reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
  font-size: 0.875rem;
}

.stars-row {
  color: #768b7c;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.rating-number {
  font-weight: 700;
  color: #2b2e2c;
}

.reviews-count {
  color: #767b79;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Title */
.product-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1.2;
  color: #2b2e2c;
  margin: 0;
}

/* Price Box */
.product-price-box {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.product-current-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2b2e2c;
  letter-spacing: -0.01em;
}

.product-tax-note {
  font-size: 0.8125rem;
  color: #767b79;
  margin: 0;
}

.tax-link {
  color: #2b2e2c;
  text-decoration: underline;
}

/* Installments */
.product-installments-badge {
  background-color: #f7f9f7;
  border: 1px solid #e2e8e4;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.8125rem;
  color: #3e4a42;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.installments-logo {
  font-weight: 700;
  color: #2b2e2c;
  background: #eef3f0;
  padding: 2px 6px;
  border-radius: 4px;
}

.product-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0.25rem 0;
}

/* Variant Selectors */
.product-variant-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.option-label-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
}

.option-label {
  color: #767b79;
}

.option-selected-value {
  font-weight: 600;
  color: #2b2e2c;
}

.option-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.swatch-btn {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: #2b2e2c;
  cursor: pointer;
  transition: all var(--transition-fast);
  outline: none;
  user-select: none;
}

.swatch-btn:hover:not(.active):not(.is-disabled) {
  border-color: #2b2e2c;
}

.swatch-btn.active {
  background: #2b2e2c;
  color: #ffffff;
  border-color: #2b2e2c;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.swatch-btn.is-disabled {
  opacity: 0.7;
  color: #767b79;
  border-style: dashed;
  cursor: pointer;
}

.swatch-btn:active {
  transform: scale(0.97);
}

/* Quantity Counter */
.product-qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qty-counter {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--radius-pill);
  overflow: hidden;
  height: 42px;
}

.qty-btn {
  width: 38px;
  height: 100%;
  border: none;
  background: transparent;
  color: #2b2e2c;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.qty-btn:hover {
  background: rgba(0, 0, 0, 0.04);
}

.qty-counter input {
  width: 40px;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2b2e2c;
  background: transparent;
  outline: none;
}

/* Action Buttons */
.product-actions-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.btn-product-buy {
  width: 100%;
  height: 52px;
  background-color: rgb(118, 139, 124);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(118, 139, 124, 0.28);
}

.btn-product-buy:hover {
  background-color: #647b6d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(118, 139, 124, 0.35);
}

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

.btn-product-outline {
  width: 100%;
  height: 48px;
  background-color: transparent;
  color: #2b2e2c;
  border: 1.5px solid #2b2e2c;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.btn-product-outline:hover {
  background-color: #2b2e2c;
  color: #ffffff;
}

/* Perks list */
.product-perks-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: #555c58;
}

.perk-item svg {
  color: #768b7c;
  flex-shrink: 0;
}

/* Accordions */
.product-accordions {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  color: #2b2e2c;
  transition: color var(--transition-fast);
}

.accordion-header:hover {
  color: #768b7c;
}

.accordion-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.accordion-icon {
  font-size: 1.25rem;
  color: #768b7c;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}

.accordion-item.is-open .accordion-content {
  max-height: 800px;
  opacity: 1;
}

.accordion-inner {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #5d6360;
}

.accordion-inner p {
  margin: 0 0 0.75rem;
}

.accordion-specs {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.accordion-specs li {
  margin-bottom: 0.4rem;
}

/* Reviews Section (Okendo Visual Match) */
.reviews-section {
  padding: 5rem 0;
  background-color: #faf9f6;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
}

.reviews-container {
  max-width: var(--container-narrow-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.reviews-section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  color: #2b2e2c;
  margin: 0;
}

.reviews-meta-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-score-big {
  font-size: 3rem;
  font-weight: 700;
  color: #2b2e2c;
  line-height: 1;
}

.stars-row-lg {
  color: #768b7c;
  font-size: 1.25rem;
  letter-spacing: 3px;
}

.reviews-count-text {
  font-size: 0.875rem;
  color: #767b79;
}

/* Rating Breakdown */
.rating-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 3rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
}

.star-level {
  width: 50px;
  color: #555c58;
}

.rating-progress {
  flex: 1;
  height: 6px;
  background: #ebeeee;
  border-radius: 4px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: #768b7c;
  border-radius: 4px;
}

.rating-percent {
  width: 32px;
  text-align: right;
  color: #767b79;
  font-weight: 600;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.review-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-date {
  font-size: 0.75rem;
  color: #999e9c;
}

.review-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2b2e2c;
  margin: 0;
}

.review-card__body {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #555c58;
  margin: 0;
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.verified-badge {
  color: #487858;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Related Products */
.related-products-section {
  padding: 5rem 0;
}

.related-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.related-card__media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f6f4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}

.related-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.related-card__img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.related-card:hover .related-card__img-hover {
  opacity: 1;
}

.related-card:hover .related-card__img {
  transform: scale(1.03);
}

.related-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.related-card__title {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.related-card__title a {
  color: #2b2e2c;
  text-decoration: none;
}

.related-card__title a:hover {
  text-decoration: underline;
}

.related-card__price {
  font-size: 0.875rem;
  color: #767b79;
}

/* Sticky Buy Bar */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 95;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-buy-bar.is-visible {
  transform: translateY(0);
}

.sticky-buy-bar__inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-buy-bar__product {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-thumb {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
  background: #f7f6f4;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.sticky-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sticky-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #2b2e2c;
}

.sticky-variant-label {
  font-size: 0.75rem;
  color: #767b79;
}

.sticky-buy-bar__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.sticky-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2b2e2c;
}

.btn-sticky-buy {
  background: rgb(118, 139, 124);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.btn-sticky-buy:hover {
  background: #647b6d;
}

/* Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.lightbox-overlay.is-open {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-title {
    font-size: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .sticky-details {
    display: none;
  }
}

@media (max-width: 600px) {
  .product-container {
    padding: 0 1rem;
  }

  .breadcrumb-container {
    padding: 1rem 1rem 0.25rem;
  }

  .gallery-thumb {
    flex: 0 0 62px;
    height: 62px;
  }

  .swatch-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.8125rem;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ARTIST BIO MODAL
   ========================================================================== */
.bio-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(18, 26, 22, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

.bio-modal {
  background: #ffffff;
  border-radius: 1.25rem;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

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

.bio-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bio-modal__tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #768b7c;
  font-weight: 700;
}

.bio-modal__close {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: #666;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.bio-modal__close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #111;
}

.bio-modal__body {
  padding: 1.75rem;
}

.bio-modal__profile-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.bio-modal__avatar {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #768b7c;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.bio-modal__name {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 600;
  color: #1f2421;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.bio-modal__role {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #607567;
  font-weight: 500;
}

.bio-modal__desc {
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.65;
  color: #3b423d;
  margin-bottom: 1.25rem;
}

.bio-modal__desc p {
  margin-bottom: 0.75rem;
}

.bio-modal__desc p:last-child {
  margin-bottom: 0;
}

.bio-modal__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.bio-modal__skills .skill-tag {
  background: #f1f4f2;
  color: #354940;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-weight: 500;
  border: 1px solid rgba(85, 115, 102, 0.15);
}

.bio-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bio-modal__actions .btn {
  flex: 1 1 auto;
  min-width: 130px;
  text-align: center;
  justify-content: center;
}

/* ==========================================================================
   COURSE PLACEHOLDER PAGES
   ========================================================================== */
.course-hero {
  padding: 9rem 1.5rem 6rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fbfcfb 0%, #f1f4f2 100%);
  text-align: center;
}

.course-hero__card {
  max-width: 620px;
  background: #ffffff;
  padding: 3.5rem 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.course-hero__badge {
  display: inline-block;
  background: rgba(118, 139, 124, 0.12);
  color: #557366;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.course-hero__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #1f2421;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.course-hero__desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #556058;
  margin-bottom: 2rem;
}

.course-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


