/* ═══════════════════════════════════════════════════
   HS LUXURY — STYLESHEET
   Color Palette:
     --dark-bg:     #0a1a14   (deep forest black-green)
     --dark-panel:  #0d1f18   (slightly lighter panel)
     --dark-card:   #111f18   (card backgrounds)
     --gold-primary:#b8922e   (rich gold)
     --gold-light:  #d4af5a   (highlight gold)
     --gold-muted:  #8a6d23   (muted gold)
     --white:       #f5f0e8   (warm off-white)
     --text-muted:  #9a9a8a   (muted body text)
     --border:      rgba(180,140,50,0.2)
═══════════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark-bg:       #0a1a14;
  --dark-panel:    #0d2018;
  --dark-card:     #0f1f18;
  --dark-section:  #0c1c15;
  --gold-primary:  #b8922e;
  --gold-light:    #d4af5a;
  --gold-muted:    #8a6d23;
  --gold-border:   rgba(180,140,50,0.25);
  --white:         #f5f0e8;
  --text-muted:    #9a9a8a;
  --text-body:     #c8c4b8;
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Montserrat', sans-serif;
  --nav-height:    68px;
  --radius-sm:     4px;
  --radius-md:     8px;
  --transition:    0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;    /* Firefox */
}
html::-webkit-scrollbar {
  display: none;            /* Chrome, Safari, Opera */
}

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

body.loading {
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════
   LOADING ANIMATION
══════════════════════════════════════════════════════ */
#loader-wrapper {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-image: radial-gradient(circle at 50% 50%, #123022 0%, var(--dark-bg) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.logo-container {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.brand-logo {
  width: 140px;
  height: auto;
  z-index: 2;
  animation: pulse-glow 3s infinite alternate ease-in-out;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}

.ring-outer {
  width: 100%;
  height: 100%;
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  animation: spin 4s linear infinite;
}

.ring-inner {
  width: 85%;
  height: 85%;
  border: 1px dashed rgba(212, 175, 55, 0.6);
  animation: spin-reverse 8s linear infinite;
}

.ring-middle {
  width: 92%;
  height: 92%;
  border-right: 2px solid var(--gold-light);
  border-left: 2px solid transparent;
  opacity: 0.5;
  animation: spin 6s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loading-text {
  margin-top: 30px;
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: fade-text 2s infinite alternate ease-in-out;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes pulse-glow {
  0% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2)); transform: scale(0.98); }
  100% { filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8)); transform: scale(1.02); }
}

@keyframes fade-text {
  0% { opacity: 0.4; }
  100% { opacity: 1; filter: drop-shadow(0 0 5px var(--gold-light)); }
}

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

ul { list-style: none; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── PLACEHOLDER STYLES (remove when adding real images) ─ */
.placeholder-img-wrap {
  background: linear-gradient(135deg, #0f2a1e 0%, #1a3828 50%, #0f2a1e 100%);
  border: 1px dashed rgba(180,140,50,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.placeholder-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(180,140,50,0.03) 20px,
      rgba(180,140,50,0.03) 40px
    );
}

.placeholder-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(180,140,50,0.45);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 8px;
  position: relative;
  z-index: 1;
}

.placeholder-label small {
  display: block;
  font-size: 0.55rem;
  color: rgba(180,140,50,0.25);
  margin-top: 2px;
}

/* ── TYPOGRAPHY HELPERS ───────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.section-title--light { color: var(--white); }
.section-title--gold  { color: var(--gold-light); }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  transition: var(--transition);
}

.btn--outline {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn--outline:hover {
  background: var(--white);
  color: var(--dark-bg);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: var(--dark-bg);
  border: none;
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--white), var(--gold-light));
  color: var(--dark-bg);
}

.btn--outline-sm {
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  background: transparent;
  font-size: 0.65rem;
}
.btn--outline-sm:hover {
  background: var(--gold-light);
  color: var(--dark-bg);
}

.btn--discover {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
  padding: 0.35rem 0.9rem;
  background: transparent;
  transition: var(--transition);
}
.btn--discover:hover {
  background: var(--gold-light);
  color: var(--dark-bg);
}

/* ══════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(10, 26, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  transition: background 0.4s ease;
}

.nav--scrolled {
  background: rgba(10, 26, 20, 0.97);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 1.5rem;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.05em;
}

/* Logo image */
.nav__logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-body);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--gold-light);
}
.nav__link--active::after,
.nav__link:hover::after {
  width: 100%;
}

/* Nav action icons */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Animated Search */
.nav__search {
  display: flex;
  align-items: center;
  position: relative;
  background: transparent;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all var(--transition);
}

.nav__search.active {
  background: rgba(20, 45, 30, 0.6);
  border-color: var(--gold-border);
}

.nav__search-input {
  width: 0;
  opacity: 0;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  padding: 0;
  transition: width 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  outline: none;
}

.nav__search-input::placeholder {
  color: rgba(154, 154, 138, 0.5);
}

.nav__search.active .nav__search-input {
  width: 150px;
  opacity: 1;
  padding: 0.4rem 0.5rem 0.4rem 1rem;
}

.nav__icon-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  transition: color var(--transition);
  background: transparent;
  border: none;
}
.nav__icon-btn svg {
  width: 18px;
  height: 18px;
}
.nav__icon-btn:hover { color: var(--gold-light); }

/* Hamburger (mobile) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text-body);
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════════
   SECTION 1 — HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--nav-height) 0 0;
  overflow: hidden;
  background: linear-gradient(135deg, #071210 0%, #0d2018 40%, #061510 100%);
}

/* Subtle radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(30, 100, 60, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,18,14,0.85) 30%, rgba(7,18,14,0.1) 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 0 3.5rem;
  max-width: 46%;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero__text {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 340px;
}

.hero__media-full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.hero__image-placeholder--main {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #071511 0%, #0f2820 60%, #071511 100%);
  border: none;
}

/* ══════════════════════════════════════════════════════
   SECTION 2 — COLLECTIONS + ABOUT (split row)
══════════════════════════════════════════════════════ */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh;
  border-top: 1px solid var(--gold-border);
}

.split-row__half {
  padding: 3rem;
}

/* Collections side */
.split-row__collections {
  background: var(--dark-bg);
  border-right: 1px solid var(--gold-border);
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.collection-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0.7rem;
}

.collection-card__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.collection-card__desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* About side */
.split-row__about {
  background: var(--dark-panel);
}

.about__text {
  font-size: 0.75rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-top: 1rem;
}

.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about__img-wrap {
  aspect-ratio: 3/4;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════
   SECTION 3 — OUR PHILOSOPHY / FRAGRANCE JOURNEY
══════════════════════════════════════════════════════ */
.philosophy {
  background: var(--dark-bg);
  padding: 4rem 3rem;
  border-top: 1px solid var(--gold-border);
}

.philosophy__header {
  text-align: center;
  margin-bottom: 2rem;
}

.philosophy__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  margin-top: 0.4rem;
}

/* Showcase strip — 4 tall images */
.philosophy__showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.philosophy__showcase-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.philosophy__showcase-img.tall {
  aspect-ratio: 2/3;
}

/* Product cards row */
.philosophy__products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
}

.product-card__desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

/* ══════════════════════════════════════════════════════
   SECTION 4 — TIMELESS CRAFTSMANSHIP
══════════════════════════════════════════════════════ */
.craftsmanship {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  border-top: 1px solid var(--gold-border);
  background: var(--dark-section);
}

.craftsmanship__image-side {
  position: relative;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.craftsmanship__img-wrap {
  width: 100%;
  height: 100%;
}

.craftsmanship__img-wrap.large-square {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

/* Decorative gold frame lines */
.craftsmanship__frame {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(180,140,50,0.25);
  border-radius: var(--radius-sm);
  z-index: 1;
  pointer-events: none;
}

.craftsmanship__text-side {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.craftsmanship__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
  line-height: 1.1;
}

.craftsmanship__subheading {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.craftsmanship__body {
  font-size: 0.78rem;
  color: var(--text-body);
  line-height: 1.8;
}

.craftsmanship__spacer {
  margin-top: 0.4rem;
}

/* ══════════════════════════════════════════════════════
   SECTION 5 — LOWER SPLIT (Timepieces + Right Panel)
══════════════════════════════════════════════════════ */
.lower-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--gold-border);
  background: var(--dark-bg);
}

/* ── Curated Timepieces ───────────────────── */
.timepieces {
  padding: 3rem;
  border-right: 1px solid var(--gold-border);
  background: var(--dark-card);
}

.timepieces__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.timepieces__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.timepiece-card { border-radius: var(--radius-sm); overflow: hidden; }

.timepiece-card--large .timepiece-card__img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  grid-row: span 2;
}

.timepiece-card__img {
  width: 100%;
}

.timepieces__right-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timepiece-card--small {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(15, 35, 25, 0.6);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.timepiece-card--small .timepiece-card__img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.timepiece-card__info {
  padding: 0.9rem;
}

.timepiece-card__info h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.timepiece-card__info p {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.timepieces__cta {
  margin-top: 1.5rem;
  text-align: center;
}

/* ── Right Panel ──────────────────────────── */
.right-panel {
  display: flex;
  flex-direction: column;
  background: var(--dark-bg);
}

/* Shop the Look */
.shop-look {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--gold-border);
}

.shop-look__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
}

.shop-look__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0.6rem;
}

.shop-look__main {
  aspect-ratio: 3/4;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.shop-look__thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.shop-look__thumb {
  flex: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 60px;
}

/* Contact & Newsletter */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--gold-border);
}

.info-card {
  padding: 1.5rem;
  border-right: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.info-card:last-child {
  border-right: none;
}

.info-card__icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.info-card__icon svg {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
}

.info-card__title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
}

.info-card__text {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.newsletter-form {
  margin-top: 0.4rem;
}

.newsletter-input {
  width: 100%;
  padding: 0.45rem 0.7rem;
  background: rgba(20, 45, 30, 0.6);
  border: 1px solid var(--gold-border);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  outline: none;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(154, 154, 138, 0.5);
}

.newsletter-input:focus {
  border-color: var(--gold-light);
}

/* ── FOOTER ───────────────────────────────── */
.footer {
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.8rem 1.5rem;
  align-items: center;
  border-top: 1px solid var(--gold-border);
  background: var(--dark-card);
}

.footer__logo {
  grid-column: 1;
  grid-row: 1;
}

.footer__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer__nav {
  grid-column: 2;
  grid-row: 1;
}

.footer__nav ul {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold-light); }

.footer__actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  gap: 0.3rem;
}

.footer__icon-btn {
  width: 26px;
  height: 26px;
}
.footer__icon-btn svg {
  width: 14px;
  height: 14px;
}

.footer__copy {
  grid-column: 1 / -1;
  grid-row: 2;
  text-align: center;
  font-size: 0.6rem;
  color: rgba(154, 154, 138, 0.4);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE & MOBILE PWA UX
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .philosophy__showcase,
  .philosophy__products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 900px) {
  .split-row,
  .craftsmanship,
  .lower-split {
    grid-template-columns: 1fr;
  }

  .split-row__collections, .timepieces {
    border-right: none;
    border-bottom: 1px solid var(--gold-border);
  }

  .hero__content { 
    max-width: 100%; 
    padding: 2rem; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Center Nav Logo and Streamline Nav */
  .nav {
    padding: 0 1.5rem;
    position: relative;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav__actions {
    gap: 0.15rem;
  }
  .nav__icon-btn {
    width: 28px;
    height: 28px;
  }
  .nav__hamburger { 
    display: flex; 
    z-index: 10; 
    order: -1; /* Move to far left */
  }
  .nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    gap: 0;
  }
  .nav__logo-text { display: none; }
  .nav__links { display: none; }
  
  /* Hamburger Menu Slide-down */
  .nav__links.nav__links--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10, 26, 20, 0.98);
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
  }

  /* Hero Mobile Layout */
  .hero {
    align-items: stretch;
  }
  .hero__content {
    justify-content: center;
    padding-top: 25vh;
    padding-bottom: 15vh;
  }
  .hero__title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    text-transform: uppercase;
    line-height: 1.1;
  }
  .hero__text {
    font-size: 1rem;
    margin-top: 1rem;
    max-width: 90%;
  }
  /* Push button near bottom */
  #shopNowBtn {
    margin-top: 6rem;
  }

  /* Product Grids & Touch Targets */
  .collections-grid {
    grid-template-columns: 1fr; /* Single column stack for elegance */
    gap: 1.5rem;
  }
  .timepieces__grid { 
    grid-template-columns: repeat(2, 1fr); /* Tightly spaced 2-column for watches */
    gap: 0.5rem; 
  }
  .collection-card, .timepiece-card {
    padding: 1.2rem;
  }
  .collection-card__brand { font-size: 0.7rem; letter-spacing: 0.1em; }
  .collection-card__name { font-size: 1.1rem; margin-bottom: 1rem; }
  
  /* UX Minimum Touch Target heights (44px) */
  .btn, .btn--discover, .btn--outline-sm {
    font-size: 0.75rem;
    padding: 0.8rem 1.2rem;
    min-height: 44px;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Structural Adjustments */
  .section-title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .philosophy { padding: 3rem 1.2rem; }
  .philosophy__showcase { grid-template-columns: 1fr; gap: 2rem; }
  .philosophy__products { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  
  .about__images { grid-template-columns: 1fr; }
  .shop-look__grid { grid-template-columns: 1fr; }
  .shop-look__thumbs { flex-direction: row; }
  .info-cards { grid-template-columns: 1fr; }

  /* Forms & Footer */
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 3rem 1.5rem;
    gap: 1.5rem;
  }
  .footer__logo, .footer__nav, .footer__actions {
    grid-column: 1;
    grid-row: auto;
  }
  .footer__nav ul {
    justify-content: center;
    gap: 1rem;
  }
}

/* ══════════════════════════════════════════════════════
   SUBSCRIPTION POPUP
══════════════════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 8, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.popup-content {
  position: relative;
  width: 90%;
  max-width: 540px;
  background: #0e2017;
  border: 1px solid var(--gold-border);
  padding: 3.5rem 4.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-content::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold-light);
  pointer-events: none;
}

.popup-overlay.active .popup-content {
  transform: translateY(0) scale(1);
}

.popup-logo {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--gold-light);
  background: transparent;
  width: 32px;
  height: 32px;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s;
}

.popup-close svg {
  width: 24px;
  height: 24px;
}

.popup-close:hover {
  transform: scale(1.1);
  color: var(--white);
}

.popup-inner {
  text-align: center;
  margin-top: 1rem;
}

.popup-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.popup-desc {
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.6;
  margin: 0 auto 2.5rem;
  max-width: 380px;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 380px;
  margin: 0 auto;
}

.popup-input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--gold-light);
  color: var(--white);
  padding: 1rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-align: left;
  outline: none;
  transition: background 0.3s;
}

.popup-input:focus {
  background: rgba(212, 175, 55, 0.05);
}

.popup-input::placeholder {
  color: var(--gold-light);
  opacity: 0.8;
}

.popup-btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #0c1a14;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--white), var(--gold-light));
}

.popup-dismiss {
  margin-top: 2rem;
  color: var(--gold-light);
  font-size: 0.8rem;
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color 0.3s;
  display: inline-block;
}

.popup-dismiss:hover {
  text-decoration-color: var(--gold-light);
}

@media (max-width: 600px) {
  .popup-content { padding: 3rem 1.5rem; }
  .popup-title { font-size: 1.8rem; }
  .popup-logo { top: 1.2rem; left: 1.2rem; width: 24px; height: 24px; }
  .popup-close { top: 1.2rem; right: 0.8rem; width: 28px; height: 28px; }
}

/* =========================================
   SVG Overlay for Ribbon & Butterfly
========================================= */
#animation-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
#animation-canvas.active {
  opacity: 1;
  visibility: visible;
}

.ribbon-line {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
  stroke-linecap: round;
}

.left-wing {
  transform-origin: 0 0;
  animation: flap-left 0.12s infinite alternate ease-in-out;
}
.right-wing {
  transform-origin: 0 0;
  animation: flap-right 0.12s infinite alternate ease-in-out;
}

@keyframes flap-left {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0.2); }
}
@keyframes flap-right {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0.2); }
}

.butterfly-glow {
  fill: url(#glow-gradient);
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════════
   GLOBAL IMAGE CONSTRAINT FIX
══════════════════════════════════════════════════════ */
.product-card__img-wrap,
.timepiece-card__img,
.shop-look__main,
.shop-look__thumb,
.craftsmanship__img-wrap,
.philosophy__showcase-img,
.collection-card__img-wrap,
.about__img-wrap {
  position: relative;
  overflow: hidden;
}

.product-card__img-wrap img,
.timepiece-card__img img,
.shop-look__main img,
.shop-look__thumb img,
.craftsmanship__img-wrap img,
.philosophy__showcase-img img,
.collection-card__img-wrap img,
.about__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}

/* ══════════════════════════════════════════════════════
   PRODUCT PAGE STYLES
══════════════════════════════════════════════════════ */

.product-page {
  padding-top: var(--nav-height);
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-height));
  background: var(--dark-bg);
  border-bottom: 1px solid var(--gold-border);
}

/* Gallery Side */
.product-hero__gallery {
  padding: 3rem;
  border-right: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  align-self: start;
}

.product-hero__main-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--dark-panel);
}

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

.product-hero__thumbnails {
  display: flex;
  gap: 1rem;
}

.thumbnail-btn {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
  padding: 0;
}

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

.thumbnail-btn.active, .thumbnail-btn:hover {
  border-color: var(--gold-light);
}

/* Details Side */
.product-hero__details {
  padding: 4rem 4rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.product-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.badge {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.badge--heritage {
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  background: rgba(184, 146, 46, 0.05);
}

.badge-inline {
  font-size: 0.55rem;
  background: var(--gold-light);
  color: var(--dark-bg);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.product-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
}

.product-social-proof {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.product-social-proof svg {
  width: 16px;
  height: 16px;
}

.social-proof-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold-light);
  font-style: italic;
  margin-left: 0.5rem;
}

.product-price {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-top: 0.5rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 90%;
}

/* Interactive Swatches */
.product-interactive {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.interactive-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.interactive-label span {
  color: var(--white);
  font-weight: 600;
}

.swatch-group {
  display: flex;
  gap: 1rem;
}

.swatch-item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.swatch-item:hover {
  transform: scale(1.1);
}

.swatch-item.active {
  outline-color: var(--gold-light);
}

/* Tooltip */
.sensory-tooltip {
  position: fixed;
  background: rgba(10, 26, 20, 0.95);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transform: translate(-50%, -10px);
}
.sensory-tooltip.visible {
  opacity: 1;
}

/* Purchase Options */
.product-purchase {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.purchase-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.purchase-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.purchase-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.purchase-card__content {
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  background: rgba(15, 31, 24, 0.4);
  transition: var(--transition);
}

.purchase-card:hover .purchase-card__content {
  border-color: rgba(212, 175, 90, 0.5);
}

.purchase-card.active .purchase-card__content {
  border-color: var(--gold-light);
  background: rgba(212, 175, 90, 0.05);
}

.purchase-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.purchase-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.purchase-card__price {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--gold-light);
}
.purchase-card__price small {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.purchase-card__desc {
  font-size: 0.75rem;
  color: var(--text-body);
  line-height: 1.6;
}

.purchase-card--gold .purchase-card__content {
  background: linear-gradient(135deg, rgba(184, 146, 46, 0.1), rgba(10, 26, 20, 0.8));
  border-color: rgba(212, 175, 90, 0.4);
}

.gifting-suite {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--gold-border);
  display: none; /* controlled by JS */
}

.gifting-suite.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.gifting-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.gifting-addon {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  margin-bottom: 0.8rem;
}
.gifting-addon:last-child {
  margin-bottom: 0;
}

.gifting-addon input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.addon-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid var(--text-muted);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: var(--transition);
}

.gifting-addon input[type="checkbox"]:checked + .addon-checkbox {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.gifting-addon input[type="checkbox"]:checked + .addon-checkbox::after {
  content: '✓';
  color: var(--dark-bg);
  font-size: 12px;
  font-weight: bold;
}

.addon-details {
  display: flex;
  flex-direction: column;
}

.addon-name {
  font-size: 0.8rem;
  color: var(--white);
}

.addon-price {
  font-size: 0.75rem;
  color: var(--gold-light);
}

.btn--full {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

/* Accordion */
.product-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.product-accordion details {
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 1rem;
}

.product-accordion summary {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.product-accordion summary::after {
  content: '+';
  color: var(--gold-light);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.product-accordion details[open] summary::after {
  transform: rotate(45deg);
}

.accordion-content {
  padding-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.8;
  animation: fadeIn 0.4s ease;
}

/* Trust Badges Section */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem 3rem;
  background: var(--dark-panel);
  border-bottom: 1px solid var(--gold-border);
}

.trust-badge {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 40px;
  height: 40px;
}

.trust-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
}

.trust-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 250px;
}

/* Parallax Story Section */
.the-story {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,26,20,0.9) 0%, rgba(10,26,20,0.3) 100%);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 4rem 2rem;
}

.story-content {
  max-width: 600px;
  text-align: center;
  margin-bottom: 2rem;
}

.story-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.story-text {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.8;
}

/* Responsive Product Page */
@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr;
  }
  .product-hero__details {
    padding: 3rem;
  }
  .trust-badges {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ══════════════════════════════════════════════════════
   SHOP PAGE STYLES
══════════════════════════════════════════════════════ */
.shop-page {
  padding-top: var(--nav-height);
  min-height: 100vh;
  background: var(--dark-bg);
}

.shop-header {
  position: relative;
  height: 35vh;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--gold-border);
}

.shop-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.shop-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-header__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 20, 0.85);
}

.shop-header__content {
  position: relative;
  z-index: 1;
}

.shop-layout {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
}

/* Sidebar */
.shop-sidebar {
  width: 280px;
  flex-shrink: 0;
  padding: 3rem 2rem;
  border-right: 1px solid var(--gold-border);
  background: var(--dark-panel);
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.filter-header h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
}

.filter-clear {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.filter-clear:hover {
  color: var(--gold-light);
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
}

.filter-checkbox input {
  position: absolute;
  opacity: 0;
}

.custom-check {
  width: 16px;
  height: 16px;
  border: 1px solid var(--text-muted);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.filter-checkbox input:checked + .custom-check {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.filter-checkbox input:checked + .custom-check::after {
  content: '✓';
  color: var(--dark-bg);
  font-size: 10px;
  font-weight: bold;
}

.filter-label {
  font-size: 0.85rem;
  color: var(--text-body);
  transition: var(--transition);
}
.filter-checkbox:hover .filter-label,
.filter-checkbox input:checked ~ .filter-label {
  color: var(--white);
}

/* Shop Grid */
.shop-grid {
  flex-grow: 1;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.shop-card {
  display: flex;
  flex-direction: column;
  background: var(--dark-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid transparent;
  transition: var(--transition);
}

.shop-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
}

.shop-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  background: #0f1f18;
  position: relative;
  overflow: hidden;
}
.shop-card__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}

.shop-card__info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.shop-card__badge {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  background: rgba(184, 146, 46, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.shop-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.shop-card__price {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.shop-card__btn {
  width: 100%;
  text-align: center;
  padding: 0.8rem;
  font-size: 0.75rem;
  margin-top: auto;
}

@media (max-width: 900px) {
  .shop-layout {
    flex-direction: column;
  }
  .shop-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--gold-border);
  }
}

/* ══════════════════════════════════════════════════════
   PRODUCT TABS SECTION
══════════════════════════════════════════════════════ */
.product-tabs-section {
  padding: 4rem 3rem;
  background: var(--dark-bg);
  border-bottom: 1px solid var(--gold-border);
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 3rem;
}

.tab-btn {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 0;
  position: relative;
  transition: var(--transition);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  color: var(--gold-light);
}
.tab-btn.active::after, .tab-btn:hover::after {
  width: 100%;
}

.tabs-content {
  max-width: 1000px;
  margin: 0 auto;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

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

.text-pane h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.text-pane p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Reviews */
.reviews-pane {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-card {
  background: var(--dark-panel);
  border: 1px solid var(--gold-border);
  padding: 2rem;
  border-radius: var(--radius-sm);
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--white);
}

.review-stars {
  color: var(--gold-primary);
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
}

  }
}

/* ══════════════════════════════════════════════════════
   RELATED PRODUCTS FOOTER
══════════════════════════════════════════════════════ */
.related-products-footer {
  padding: 5rem 3rem;
  background: var(--dark-bg);
  border-top: 1px solid var(--gold-border);
}

.related-header {
  text-align: center;
  margin-bottom: 3rem;
}

.related-header h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--white);
}

.related-products-footer .shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════
   CART PAGE — IMPROVED
══════════════════════════════════════════════════════ */
.cart-page {
  background: var(--dark-bg);
  min-height: 80vh;
  padding-bottom: 6rem;
}

.cart-page-header {
  padding: 6rem 2rem 3rem;
  background: linear-gradient(to bottom, rgba(10,26,20,0.95), var(--dark-bg));
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
}

.cart-page-header__inner { max-width: 1200px; margin: 0 auto; }
.cart-page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-top: 0.5rem;
}

/* Progress */
.cart-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2.5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.cart-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.cart-step--active { color: var(--gold-primary); }
.cart-step__circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-muted);
}
.cart-step--active .cart-step__circle {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #000;
  font-weight: 700;
}
.cart-progress__line {
  flex: 1;
  height: 1px;
  background: var(--gold-border);
  margin: 0 0.5rem;
  margin-bottom: 1.5rem;
}

/* Layout */
.cart-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 4rem;
}
@media (max-width: 960px) { .cart-layout { grid-template-columns: 1fr; } }

/* Items Panel */
.cart-items-panel {
  background: var(--dark-panel);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  overflow: hidden;
}
.cart-items-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-items-header h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
}
.cart-items-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-primary);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-left: 0.5rem;
  font-family: var(--font-sans);
}
.cart-clear-btn {
  background: transparent;
  border: 1px solid rgba(255,100,100,0.3);
  color: rgba(255,100,100,0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
}
.cart-clear-btn:hover { border-color: #ff6b6b; color: #ff6b6b; }

/* Items */
.cart-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.cart-item:hover { background: rgba(255,255,255,0.02); }
.cart-item:last-child { border-bottom: none; }
.cart-item__img {
  width: 90px;
  height: 110px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--gold-border);
  flex-shrink: 0;
}
.cart-item__details { flex: 1; display: flex; flex-direction: column; }
.cart-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.4rem;
}
.cart-item__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
}
.cart-item__price {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--gold-primary);
  font-size: 1.1rem;
}
.cart-item__variant {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: auto;
  padding-bottom: 1rem;
}
.cart-item__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  overflow: hidden;
}
.qty-btn {
  background: transparent;
  color: var(--white);
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.qty-btn:hover { background: rgba(184,146,46,0.15); color: var(--gold-primary); }
.qty-input {
  width: 36px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-sans);
  pointer-events: none;
}
.remove-btn {
  background: transparent;
  color: var(--text-muted);
  border: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.remove-btn:hover { color: #ff6b6b; }

/* Empty state */
.cart-empty {
  padding: 5rem 2rem;
  text-align: center;
}
.cart-empty__icon { margin-bottom: 2rem; opacity: 0.3; }
.cart-empty__icon svg { width: 64px; height: 64px; }
.cart-empty h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.cart-empty p { color: var(--text-muted); margin-bottom: 2rem; }

.cart-continue {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cart-continue__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.cart-continue__link svg { width: 16px; height: 16px; }
.cart-continue__link:hover { color: var(--gold-primary); }

/* Summary Panel */
.cart-summary-panel {
  background: var(--dark-panel);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 2rem;
  position: sticky;
  top: 90px;
}
.cart-summary-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Promo */
.cart-promo {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.cart-promo__input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--gold-border);
  color: var(--white);
  padding: 0.6rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
}
.cart-promo__input:focus { border-color: var(--gold-primary); }
.cart-promo__btn {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
  white-space: nowrap;
}
.cart-promo__btn:hover { background: var(--gold-primary); color: #000; border-color: var(--gold-primary); }
.cart-promo__msg { font-size: 0.8rem; color: var(--gold-primary); margin-bottom: 1rem; min-height: 1.1rem; }

/* Summary rows */
.cart-summary-lines { margin-bottom: 1rem; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  color: var(--text-body);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cart-shipping-label { font-size: 0.8rem; color: var(--gold-primary); }
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 0;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-light);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.cart-checkout-btn { font-size: 1rem; letter-spacing: 0.15em; padding: 1.1rem; }

.cart-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 1.2rem;
}
.cart-secure svg { width: 14px; height: 14px; }

.cart-payment-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.pay-icon {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.cart-guarantees {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cart-guarantee {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.cart-guarantee svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Upsell */
.cart-upsell { padding: 4rem 0 2rem; }
.cart-upsell__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 2rem;
}
.cart-upsell__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Nav cart */
.nav__cart-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--gold-primary);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════
   COLLECTIONS PAGE — IMPROVED
══════════════════════════════════════════════════════ */
.collections-page { padding-top: 0; background: var(--dark-bg); }

/* Full-height Hero */
.col-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 5rem 5rem;
  overflow: hidden;
}
.col-hero__slides { position: absolute; inset: 0; }
.col-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  animation: colSlideFade 20s infinite;
}
.col-slide--1 { background-image: url('assets/images/images%20for%20web/website%20hero%20image.png'); animation-delay: 0s; }
.col-slide--2 { background-image: url('assets/images/images%20for%20web/perfume%20collection.png'); animation-delay: 5s; }
.col-slide--3 { background-image: url('assets/images/images%20for%20web/perfumes%20displayed.png'); animation-delay: 10s; }
.col-slide--4 { background-image: url('assets/images/images%20for%20web/second%20perfume%20collection.png'); animation-delay: 15s; }
@keyframes colSlideFade {
  0%   { opacity: 0; transform: scale(1.05); }
  8%   { opacity: 1; transform: scale(1.02); }
  25%  { opacity: 1; transform: scale(1.0); }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}
.col-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,26,20,0.97) 0%, rgba(10,26,20,0.5) 50%, rgba(10,26,20,0.2) 100%);
  z-index: 1;
}
.col-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.col-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  color: var(--white);
  line-height: 1.05;
  margin: 0.8rem 0 1.5rem;
}
.col-hero__sub {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.col-hero__nav { display: flex; flex-direction: column; gap: 0.8rem; }
.col-tier-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold-primary);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: gap 0.3s, color 0.2s;
}
.col-tier-link svg { width: 16px; height: 16px; }
.col-tier-link:hover { gap: 1.2rem; color: var(--gold-light); }

.col-hero__scroll-hint {
  position: absolute;
  bottom: 3rem;
  right: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

.col-hero__dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}
.col-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.col-dot--active { background: var(--gold-primary); transform: scale(1.3); }

/* Tier sections */
.col-tier {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.col-tier--classic { padding-top: 0; }

.col-tier__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: 4rem;
}
.col-tier__intro--right { direction: rtl; }
.col-tier__intro--right > * { direction: ltr; }

.col-tier__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.col-tier__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.col-tier__desc {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Gold outline button */
.btn--outline-gold {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  text-decoration: none;
  transition: all 0.3s;
}
.btn--outline-gold:hover { background: var(--gold-primary); color: #000; }

/* Bento grid */
.col-bento {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  height: 700px;
}
.col-bento__item { position: relative; overflow: hidden; border-radius: 4px; background: var(--dark-panel); border: 1px solid var(--gold-border); cursor: pointer; }
.col-bento__item--large { grid-row: 1 / 3; }
.col-bento__link { display: block; height: 100%; text-decoration: none; color: inherit; }
.col-bento__img { position: absolute; inset: 0; }
.col-bento__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.col-bento__item:hover .col-bento__img img { transform: scale(1.06); }
.col-bento__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10,26,20,0.97) 0%, transparent 100%);
}
.col-bento__item--large .col-bento__info { padding: 2.5rem; }
.col-bento__meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.col-bento__tier {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold-primary); border: 1px solid var(--gold-border); padding: 0.2rem 0.6rem; border-radius: 10px;
}
.col-bento__tier--classic { color: var(--text-muted); border-color: rgba(255,255,255,0.2); }
.col-bento__stars { color: var(--gold-primary); font-size: 0.75rem; letter-spacing: 2px; }
.col-bento__name {
  font-family: var(--font-serif);
  color: var(--white);
  margin-bottom: 0.3rem;
}
.col-bento__item--large .col-bento__name { font-size: 2rem; }
.col-bento__price { color: var(--gold-light); font-size: 0.95rem; }

/* Actions on bento items */
.col-bento__actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10;
}
.col-bento__item:hover .col-bento__actions { opacity: 1; transform: translateX(0); }

/* Feature rows for Classic tier */
.col-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.col-feature-card {
  position: relative;
  background: var(--dark-panel);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.col-feature-card:hover { border-color: var(--gold-primary); transform: translateY(-4px); }
.col-feature-card__link { display: block; text-decoration: none; color: inherit; }
.col-feature-card__img { overflow: hidden; height: 260px; }
.col-feature-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.col-feature-card:hover .col-feature-card__img img { transform: scale(1.05); }
.col-feature-card__body { padding: 1.5rem; }
.col-feature-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin: 0.5rem 0;
}
.col-feature-card__desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.8rem; }
.col-feature-card__price { color: var(--gold-primary); font-size: 1rem; font-weight: 500; }

/* Gold band divider */
.col-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 4rem 0;
  max-width: 1400px;
  margin: 0 auto;
}
.col-band__line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold-border), transparent); }
.col-band__text { color: var(--gold-primary); font-size: 0.8rem; letter-spacing: 0.3em; white-space: nowrap; }

/* Old unused css kept minimal */
.collection-divider, .tier-badge, .tier-title, .tier-desc, .tier-grid,
.collection-title, .collection-subtitle, .collection-hero, .slideshow-bg,
.slide, .slide-1, .slide-2, .slide-3, .collection-hero__content { display: none; }

@media (max-width: 1100px) {
  .col-bento { height: auto; grid-template-columns: 1fr 1fr; }
  .col-bento__item--large { grid-row: auto; }
  .col-bento__img { position: relative; height: 260px; }
  .col-bento__info { position: relative; background: transparent; padding: 1.2rem; }
  .col-tier__intro { grid-template-columns: 1fr; }
  .col-tier__intro--right { direction: ltr; }
  .col-hero { padding: 0 2rem 5rem; }
  .col-hero__scroll-hint { right: 2rem; }
}
@media (max-width: 768px) {
  .col-bento, .col-feature-row { grid-template-columns: 1fr; }
  .col-tier { padding: 4rem 1.5rem; }
  .col-hero { align-items: center; text-align: center; }
}


.cart-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cart-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold-light);
  margin-bottom: 3rem;
  text-align: center;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-items {
  background: var(--dark-panel);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 2rem;
}

.empty-cart-message {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-muted);
}
.empty-cart-message p { margin-bottom: 2rem; }

.cart-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 2rem;
}

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

.cart-item__img {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item__details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.cart-item__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
}

.cart-item__price {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--gold-primary);
}

.cart-item__variant {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: auto;
}

.cart-item__actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1rem;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  background: transparent;
}

.qty-btn {
  background: transparent;
  color: var(--white);
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.qty-btn:hover { background: rgba(255,255,255,0.1); }

.qty-input {
  width: 40px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-sans);
  pointer-events: none;
}

.remove-btn {
  background: transparent;
  color: var(--text-muted);
  border: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.3s;
}

.remove-btn:hover { color: #ff6b6b; }

.cart-summary {
  background: var(--dark-panel);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.summary-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--text-body);
}

.summary-total {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 1.5rem;
}

.secure-checkout svg { width: 16px; height: 16px; }

.nav__cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--gold-primary);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════
   COLLECTIONS PAGE
══════════════════════════════════════════════════════ */
.collections-page {
  padding-top: 0;
  background: var(--dark-bg);
}

.collection-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  margin-bottom: 4rem;
  overflow: hidden;
}

.slideshow-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}
.slideshow-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 26, 20, 0.8), var(--dark-bg));
  z-index: 2;
}
.slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideFade 15s infinite;
  z-index: 1;
}
.slide-1 {
  background-image: url('assets/images/images%20for%20web/website%20hero%20image.png');
  animation-delay: 0s;
}
.slide-2 {
  background-image: url('assets/images/images%20for%20web/perfume%20collection.png');
  animation-delay: 5s;
}
.slide-3 {
  background-image: url('assets/images/images%20for%20web/perfumes%20displayed.png');
  animation-delay: 10s;
}

@keyframes slideFade {
  0% { opacity: 0; transform: scale(1.0); }
  10% { opacity: 1; transform: scale(1.02); }
  33% { opacity: 1; transform: scale(1.05); }
  43% { opacity: 0; transform: scale(1.07); }
  100% { opacity: 0; transform: scale(1.0); }
}

.collection-hero__content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.collection-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.collection-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.collection-tier {
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 2rem;
}

.tier-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tier-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.tier-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.tier-desc {
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.collection-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 6rem;
  gap: 1.5rem;
}

.divider-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

.divider-icon {
  width: 24px;
  height: 24px;
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE — REBUILT
══════════════════════════════════════════════════════ */
.about-page {
  background: var(--dark-bg);
  padding-top: 0;
}

/* Hero */
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  transform: scale(1.05);
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark-bg) 10%, rgba(10,26,20,0.6) 60%, rgba(10,26,20,0.3) 100%);
  z-index: 1;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 5rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-hero__sub {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.about-hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.about-stat__num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
}

.about-stat__lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.about-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gold-border);
}

/* Philosophy quote intro */
.about-intro {
  padding: 6rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--gold-border);
}

.about-intro__inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-intro__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-intro__attr {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
}

/* Story Split sections */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  max-width: 1400px;
  margin: 0 auto 2px;
}

.about-split--reverse {
  direction: rtl;
}

.about-split--reverse > * {
  direction: ltr;
}

.about-split__img {
  overflow: hidden;
}

.about-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-split:hover .about-split__img img {
  transform: scale(1.03);
}

.about-split__text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark-panel);
}

.about-split__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  display: block;
}

.about-split__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-split__text p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-split__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-highlight svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Pillars */
.about-pillars {
  padding: 7rem 2rem;
  background: var(--dark-bg);
}

.about-pillars__header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-pillars__header h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--white);
}

.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pillar-card {
  background: var(--dark-panel);
  border: 1px solid var(--gold-border);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pillar-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}

.pillar-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
}

.pillar-card__icon svg {
  width: 100%;
  height: 100%;
}

.pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.pillar-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Process Timeline */
.about-process {
  padding: 7rem 2rem;
  background: var(--dark-panel);
}

.about-process__header {
  text-align: center;
  margin-bottom: 5rem;
}

.about-process__header h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--white);
}

.about-process__timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.about-process__timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.process-step__num {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  background: var(--dark-panel);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.process-step p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* CTA */
.about-cta {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--dark-bg);
}

.about-cta h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.about-cta p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero {
    align-items: center;
    padding-bottom: 3rem;
  }
  .about-hero__content {
    padding: 0 2rem;
    text-align: center;
  }
  .about-hero-stats {
    justify-content: center;
  }
  .about-hero__sub {
    margin: 0 auto 2rem;
  }
  .about-split {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .about-split--reverse {
    direction: ltr;
  }
  .about-split__img {
    height: 320px;
  }
  .about-split__text {
    padding: 3rem 2rem;
  }
}

/* ══════════════════════════════════════════════════════
   SHOP CARD — ICON ACTIONS
══════════════════════════════════════════════════════ */
.shop-card {
  position: relative;
  overflow: hidden;
}

.shop-card__link-area {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.shop-card__actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.shop-card:hover .shop-card__actions {
  opacity: 1;
  transform: translateX(0);
}

.card-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: background 0.25s, transform 0.2s;
}

.card-action-btn svg {
  width: 18px;
  height: 18px;
}

.card-action-btn--cart {
  background: rgba(10, 26, 20, 0.9);
  color: var(--gold-primary);
  backdrop-filter: blur(4px);
  border: 1px solid var(--gold-border);
}

.card-action-btn--cart:hover {
  background: var(--gold-primary);
  color: #000;
  transform: scale(1.1);
}

.card-action-btn--buy {
  background: var(--gold-primary);
  color: #000;
}

.card-action-btn--buy:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

/* Tooltip */
.card-action-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 26, 20, 0.95);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0.35rem 0.7rem;
  border-radius: 3px;
  border: 1px solid var(--gold-border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.card-action-btn:hover::after {
  opacity: 1;
}

/* NEW BUTTONS */
.btn--outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}

.btn--outline:hover {
  background: rgba(184, 146, 46, 0.1);
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.product-actions .btn {
  flex: 1;
  margin-bottom: 0 !important;
}

@media (max-width: 600px) {
  .product-actions {
    flex-direction: column;
  }
}

/* ══════════════════════════════════════════════════════
   PROCESS STEP — ANIMATED (About page)
══════════════════════════════════════════════════════ */
.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

/* Icon circle instead of just the number */
.process-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  background: var(--dark-panel);
  position: relative;
  z-index: 1;
  transition: border-color 0.4s, background 0.4s, transform 0.4s;
}
.process-step__num svg { width: 28px; height: 28px; }
.process-step:hover .process-step__num {
  border-color: var(--gold-primary);
  background: rgba(184,146,46,0.08);
  transform: scale(1.12);
}

.process-step__label {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--gold-primary);
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}
.process-step:hover h3 { color: var(--gold-light); }

.process-step p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Scroll-reveal base state */
.process-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.process-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   COLLECTION HERO — ARROW NAVIGATION
══════════════════════════════════════════════════════ */
.col-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(184,146,46,0.4);
  background: rgba(10,26,20,0.6);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.col-arrow:hover {
  border-color: var(--gold-primary);
  background: rgba(184,146,46,0.15);
  transform: translateY(-50%) scale(1.08);
}
.col-arrow svg { width: 22px; height: 22px; }
.col-arrow--prev { left: 2rem; }
.col-arrow--next { right: 2rem; }

/* Manual slide control — override CSS auto-animation when JS takes over */
.col-slide { transition: opacity 0.8s ease; }
.col-slide.is-active { opacity: 1 !important; animation: none !important; }
.col-slide.is-inactive { opacity: 0 !important; animation: none !important; }

/* ══════════════════════════════════════════════════════
   SHOP PAGE — IMPROVEMENTS
══════════════════════════════════════════════════════ */

/* Animated 2-slide background on shop header */
.shop-header {
  position: relative;
  height: 55vh;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}
.shop-header__slides { position: absolute; inset: 0; }
.shop-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: shopSlideFade 10s infinite;
}
.shop-slide--1 {
  background-image: url('assets/images/images%20for%20web/perfumes%20displayed.png');
  animation-delay: 0s;
}
.shop-slide--2 {
  background-image: url('assets/images/images%20for%20web/second%20perfume%20collection.png');
  animation-delay: 5s;
}
@keyframes shopSlideFade {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  45%  { opacity: 1; }
  55%  { opacity: 0; }
  100% { opacity: 0; }
}
.shop-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,26,20,0.97) 0%, rgba(10,26,20,0.4) 70%, rgba(10,26,20,0.2) 100%);
  z-index: 1;
}
.shop-header__content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 800px;
}
.shop-header__sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.6rem;
  letter-spacing: 0.05em;
}
.shop-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
}

/* Toolbar */
.shop-grid-wrapper { flex: 1; }
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--gold-border);
}
.shop-count {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.shop-count span { color: var(--gold-primary); font-weight: 600; }
.shop-sort { display: flex; align-items: center; gap: 0.8rem; }
.shop-sort__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.shop-sort__select {
  background: var(--dark-panel);
  border: 1px solid var(--gold-border);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.shop-sort__select:focus { border-color: var(--gold-primary); }
.shop-sort__select option { background: var(--dark-panel); }

/* Card entry animation */
.shop-card {
  animation: cardIn 0.5s ease both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.shop-card:nth-child(1) { animation-delay: 0.05s; }
.shop-card:nth-child(2) { animation-delay: 0.10s; }
.shop-card:nth-child(3) { animation-delay: 0.15s; }
.shop-card:nth-child(4) { animation-delay: 0.20s; }
.shop-card:nth-child(5) { animation-delay: 0.25s; }
.shop-card:nth-child(6) { animation-delay: 0.30s; }

@media (max-width: 900px) {
  .shop-header { padding-bottom: 3rem; }
  .shop-header__content { padding: 0 2rem; }
  .shop-toolbar { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .col-arrow--prev { left: 0.8rem; }
  .col-arrow--next { right: 0.8rem; }
}

