/* ═══════════════════════════════════════════════
   Dorothy Dean Designs — Production Stylesheet
   ═══════════════════════════════════════════════ */

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

:root {
  --gold: #F7D37B;
  --gold-dark: #B27F2C;
  --magenta: #E628CD;
  --purple: #92278F;
  --wine: #9E1F63;
  --black: #000;
  --near-black: #0d0d0d;
  --dark: #1a1a1a;
  --cream: #FFF8F0;
  --white: #fff;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; }
body { margin: 0; background: #faf7f2; font-family: var(--font-display); color: #1a1a1a; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Announcement Bar --- */
.announcement {
  background: linear-gradient(90deg, #E628CD 0%, #DB27DF 30%, #92278F 60%, #9E1F63 100%);
  padding: 12px 20px;
  text-align: center;
}
.announcement p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

/* --- Navigation --- */
.nav {
  background: var(--black);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  position: relative;
}
.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #B27F2C, #F7D37B, #B27F2C);
}
.nav__left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}
.nav__links {
  display: none;
  align-items: center;
  gap: 36px;
  flex: 1;
  list-style: none;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: color .2s;
}
.nav__link:hover,
.nav__link--active {
  color: var(--gold);
  font-weight: 600;
}
.nav__social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .5;
  transition: opacity .2s;
}
.nav__social-icon:hover { opacity: 1; }
.nav__logo {
  text-align: center;
  flex: 0 0 auto;
  margin: 0 40px;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(247,211,123,.6);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
}
.nav__cart {
  position: relative;
  cursor: pointer;
}
.nav__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--magenta);
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui;
  font-weight: 700;
}

/* Hamburger menu */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav__hamburger span {
  height: 2px;
  background: var(--gold);
  transition: transform .3s, opacity .3s;
}
.nav__hamburger span:nth-child(1) { width: 22px; }
.nav__hamburger span:nth-child(2) { width: 16px; }
.nav__hamburger span:nth-child(3) { width: 22px; }
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  background: #111;
  padding: 32px 60px;
  gap: 48px;
  border-bottom: 2px solid rgba(247,211,123,.15);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu__group { position: relative; }
.mobile-menu__group > span {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu__group > span:hover { color: var(--gold); }
.mobile-menu__sub {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0 0 20px;
}
.mobile-menu__group.open .mobile-menu__sub { display: flex; }
.mobile-menu__sub a {
  font-size: 15px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.5);
}
.mobile-menu__sub a:hover { color: var(--gold); }

/* --- Hero --- */
.hero {
  background: var(--black);
  position: relative;
  padding: 100px 60px;
  overflow: hidden;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  opacity: .5;
  pointer-events: none;
  transform: scale(1.35);
  transform-origin: center 25%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.55);
  pointer-events: none;
}
.hero__mute {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.2);
}
.hero__corner {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
}
.hero__corner--tl { top: 24px; left: 24px; border-top: 2px solid rgba(178,127,44,.4); border-left: 2px solid rgba(178,127,44,.4); }
.hero__corner--br { bottom: 24px; right: 24px; border-bottom: 2px solid rgba(178,127,44,.4); border-right: 2px solid rgba(178,127,44,.4); }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}
.hero__pre {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--wine);
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-top: 20px;
  letter-spacing: -2px;
}
.hero__title-gradient {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1;
  margin-top: 4px;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #E628CD, #F7D37B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #E628CD, #F7D37B);
  margin: 32px auto;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 22px;
  color: rgba(0,0,0,.6);
  line-height: 1.5;
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto;
}
.hero__cta {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gold {
  background: var(--gold);
  padding: 16px 44px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 4px;
  text-transform: uppercase;
  border: none;
  transition: background .2s;
}
.btn-gold:hover { background: #f5c94f; }
.btn-outline {
  border: 2px solid var(--dark);
  padding: 16px 44px;
  cursor: pointer;
  background: transparent;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

/* --- REAL Pillars Bar --- */
.pillars {
  background: #faf7f2;
  padding: 28px 60px;
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.pillar__letter {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
}
.pillar__word {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(0,0,0,.4);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.pillar__sep {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,.1);
}

/* --- Section Headers --- */
.section-label {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  margin-top: 6px;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E628CD, #F7D37B);
  margin: 16px auto 0;
}
.gold-line-top {
  position: relative;
}
.gold-line-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,0.06);
}

/* --- Categories --- */
.categories {
  background: #faf7f2;
  padding: 72px 60px;
}
.categories__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 24px 28px;
  transition: border-color .2s;
}
.category-card:hover { border-color: #b8860b; }
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.category-card:hover img { transform: scale(1.05); }
.category-card__overlay {
  display: none;
}
.category-card__label {
  pointer-events: none;
}
.category-card__label h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 1px;
}
.category-card__accent {
  width: 40px;
  height: 2px;
  background: var(--magenta);
  margin-top: 10px;
}
.category-card__corner {
  display: none;
}
.category-card--no-img {
  background: #fff;
}
.category-card--no-img .category-card__overlay {
  background: none;
}
.category-card--no-img .category-card__label {
  position: static;
  transform: none;
  text-align: left;
  padding: 0;
}
.category-card--no-img .category-card__accent {
  margin: 10px 0 0;
}

/* --- Product Cards --- */
.products {
  background: #faf7f2;
  padding: 72px 60px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.products__view-all {
  border-bottom: none;
  padding-bottom: 4px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  color: #b8860b;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}
.products__view-all:hover { color: var(--magenta); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.featured-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s;
}
.featured-card:hover { border-color: rgba(184,134,11,0.4); }
.featured-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.featured-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.featured-card__body { padding: 16px; }
.featured-card__name {
  font-weight: 700;
  font-size: 17px;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.featured-card__meta {
  font-size: 13px;
  color: rgba(0,0,0,0.4);
}
.featured-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.featured-card__price {
  font-weight: 700;
  font-size: 18px;
  color: #b8860b;
}
.featured-card__view {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  background: rgba(0,0,0,0.04);
  padding: 6px 14px;
  border-radius: 5px;
  transition: all .2s;
}
.featured-card__view:hover { background: rgba(184,134,11,0.1); color: #b8860b; }
.product-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: border-color .2s;
}
.product-card:hover { border-color: rgba(184,134,11,0.4); }
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  z-index: 2;
  font-family: system-ui;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
}
.product-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #f5f0ea;
}
.product-card__body { padding: 20px; }
.product-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}
.product-card__fit {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(0,0,0,.4);
  margin-top: 4px;
  font-style: italic;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #b8860b;
}
.product-card__add {
  background: rgba(0,0,0,0.04);
  padding: 8px 16px;
  cursor: pointer;
  font-family: system-ui;
  font-size: 11px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  transition: all .2s;
}
.product-card__add:hover { background: rgba(184,134,11,0.1); color: #b8860b; }

/* --- Quote Banner --- */
.quote-banner {
  position: relative;
  padding: 100px 60px;
  text-align: center;
  overflow: hidden;
}
.quote-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #92278F 0%, #9E1F63 40%, #E628CD 100%);
}
.quote-banner__pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px);
  pointer-events: none;
}
.quote-banner__border {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(247,211,123,.3);
  pointer-events: none;
}
.quote-banner__corner {
  position: absolute;
  width: 50px;
  height: 50px;
  pointer-events: none;
}
.quote-banner__corner--tl { top: 16px; left: 16px; border-top: 3px solid var(--gold); border-left: 3px solid var(--gold); }
.quote-banner__corner--br { bottom: 16px; right: 16px; border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold); }
.quote-banner__content { position: relative; z-index: 1; }
.quote-banner__text {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 1px;
  max-width: 800px;
  margin: 0 auto;
}
.quote-banner__attr {
  font-family: var(--font-body);
  font-size: 20px;
  color: rgba(255,255,255,.8);
  font-style: italic;
  letter-spacing: 2px;
}

/* --- Testimonials --- */
.testimonials {
  background: #faf7f2;
  padding: 72px 60px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 36px;
  position: relative;
  border-radius: 8px;
}
.testimonial__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  font-style: italic;
  opacity: .2;
}
.testimonial__text {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(0,0,0,.6);
  line-height: 1.6;
  font-style: italic;
  margin-top: 8px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
}
.testimonial__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.testimonial__tag {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1px;
}
.testimonial__stars {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 3px;
}

/* --- Newsletter --- */
.newsletter {
  background: #faf7f2;
  padding: 72px 60px;
  text-align: center;
  position: relative;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,0.06);
}
.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
}
.newsletter__desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-top: 16px;
  font-style: italic;
}
.newsletter__form {
  display: flex;
  gap: 0;
  margin-top: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter__input {
  flex: 1;
  background: var(--white);
  border: 2px solid #ddd;
  border-right: none;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: #333;
  outline: none;
}
.newsletter__input::placeholder { color: #aaa; font-style: italic; }
.newsletter__submit {
  background: #b8860b;
  padding: 16px 32px;
  cursor: pointer;
  border: none;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background .2s;
}
.newsletter__submit:hover { background: #a0750a; }

/* --- Footer --- */
.footer {
  background: #1a1711;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,0.08);
}
.footer__grid {
  padding: 60px 60px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.footer__social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(247,211,123,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: system-ui;
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
  transition: background .2s, border-color .2s;
}
.footer__social-icon:hover {
  background: rgba(247,211,123,.1);
  border-color: var(--gold);
}
.footer__heading {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.footer__link {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: color .2s;
}
.footer__link:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.3);
}
.footer__payments {
  display: flex;
  gap: 24px;
}
.footer__payment {
  font-family: system-ui;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  letter-spacing: 2px;
}

/* --- About Page --- */
.page-header {
  background: #faf7f2;
  padding: 56px 60px;
  text-align: center;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,0.06);
}
.about-section {
  background: var(--cream);
  display: flex;
  min-height: 480px;
}
.about-section__img {
  flex: 0 0 35%;
  position: relative;
}
.about-section__img img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.about-section__img::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #B27F2C, #F7D37B, #B27F2C);
}
.about-section__content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-section__motto {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--wine);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 460px;
  font-style: italic;
  font-weight: 600;
}
.about-section__text {
  font-family: var(--font-body);
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 460px;
}
.about-section__sig {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gold-dark);
  font-style: italic;
  letter-spacing: 1px;
}

/* --- Page Header Subtitle --- */
.page-header__subtitle {
  font-family: var(--font-body);
  font-size: 19px;
  color: rgba(0,0,0,.5);
  margin-top: 16px;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* --- Collection Pillar Sections --- */
.coll-pillar {
  display: flex;
  min-height: 560px;
}
.coll-pillar--reversed {
  flex-direction: row-reverse;
}
.coll-pillar__img {
  flex: 0 0 45%;
  position: relative;
}
.coll-pillar__img img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: contain;
  background: #faf7f2;
}
.coll-pillar__accent {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
}
.coll-pillar__accent--right { right: 0; }
.coll-pillar__accent--left { left: 0; }
.coll-pillar__content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.coll-pillar__bg-letter {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.coll-pillar__bg-letter--left {
  right: auto;
  left: 40px;
}
.coll-pillar__letter {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}
.coll-pillar__name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: #1a1a1a;
  margin-top: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.coll-pillar__bar {
  width: 50px;
  height: 3px;
  margin-top: 16px;
}
.coll-pillar__desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(0,0,0,.6);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 440px;
}
.coll-pillar__desc:first-of-type {
  margin-top: 20px;
}
.coll-pillar__quote {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  font-style: italic;
  letter-spacing: 1px;
}
.coll-pillar__cta {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 2px solid;
  padding-bottom: 4px;
  width: fit-content;
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  transition: opacity .2s;
}
.coll-pillar__cta:hover {
  opacity: .7;
}

/* --- Filter Bar (Collections) --- */
.filter-bar {
  background: #faf7f2;
  padding: 20px 60px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(0,0,0,.15);
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(0,0,0,.5);
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { border-color: #b8860b; color: #b8860b; }
.filter-btn--active {
  background: #b8860b;
  border-color: #b8860b;
  color: #fff;
  font-weight: 700;
}

/* --- Collection Grid --- */
.collection {
  background: #faf7f2;
  padding: 48px 60px 72px;
}
.collection__count {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(0,0,0,.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Breadcrumb --- */
.breadcrumb {
  background: #faf7f2;
  padding: 16px 60px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(0,0,0,.35);
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.breadcrumb a { color: rgba(0,0,0,.5); transition: color .2s; }
.breadcrumb a:hover { color: #b8860b; }
.breadcrumb span { margin: 0 8px; }

/* --- Product Detail Page --- */
.pdp {
  background: #faf7f2;
  display: flex;
  gap: 60px;
  padding: 60px;
}
.pdp__gallery {
  flex: 0 0 50%;
  max-width: 50%;
}
.pdp__main-img {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pdp__main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.pdp__thumb {
  aspect-ratio: 1/1;
  border: 2px solid rgba(0,0,0,.1);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s;
}
.pdp__thumb:hover { border-color: #b8860b; }
.pdp__thumb--active { border-color: #b8860b; }
.pdp__thumb img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.pdp__info {
  flex: 1;
  padding-top: 12px;
}
.pdp__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 16px;
  font-family: system-ui;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pdp__category {
  font-family: var(--font-body);
  font-size: 13px;
  color: #E628CD;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
}
.pdp__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.pdp__stars {
  font-size: 14px;
  color: #b8860b;
  letter-spacing: 2px;
}
.pdp__reviews {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(0,0,0,.4);
}
.pdp__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: 1px;
}
.pdp__price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #b8860b;
  margin-top: 12px;
}
.pdp__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #E628CD, #F7D37B);
  margin: 24px 0;
}
.pdp__desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(0,0,0,.6);
  line-height: 1.7;
  max-width: 480px;
}
.pdp__option {
  margin-top: 28px;
}
.pdp__label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(0,0,0,.45);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.pdp__sizes {
  display: flex;
  gap: 8px;
}
.size-btn {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(0,0,0,.15);
  color: rgba(0,0,0,.6);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.size-btn:hover { border-color: #b8860b; color: #b8860b; }
.size-btn--active {
  background: #b8860b;
  border-color: #b8860b;
  color: #fff;
}
.pdp__colors {
  display: flex;
  gap: 10px;
}
.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  position: relative;
}
.color-swatch:hover { transform: scale(1.1); }
.color-swatch--active {
  outline: 2px solid #b8860b;
  outline-offset: 3px;
}
.pdp__qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(0,0,0,.15);
  width: fit-content;
}
.qty-btn {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  color: #1a1a1a;
  font-size: 20px;
  cursor: pointer;
  font-family: system-ui;
  transition: background .2s;
}
.qty-btn:hover { background: rgba(0,0,0,.05); }
.qty-val {
  width: 48px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  border-left: 1px solid rgba(0,0,0,.15);
  border-right: 1px solid rgba(0,0,0,.15);
  line-height: 48px;
}
.pdp__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.pdp__add-cart {
  flex: 1;
  max-width: 400px;
  padding: 18px 32px;
  background: #b8860b;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background .2s;
}
.pdp__add-cart:hover { background: #a0750a; }
.pdp__wishlist {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(0,0,0,.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s;
}
.pdp__wishlist:hover { border-color: #E628CD; }
.pdp__accordion {
  margin-top: 32px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.pdp__accordion-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.pdp__accordion-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 1px;
}
.pdp__accordion-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(0,0,0,.5);
  line-height: 1.7;
  margin-top: 10px;
}
.pdp__scripture {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(146,39,143,.08);
  border-left: 3px solid var(--purple);
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(0,0,0,.6);
  font-style: italic;
  line-height: 1.6;
}

/* --- Also Like Grid --- */
.also-like {
  background: #faf7f2;
  padding: 72px 60px;
}
.also-like__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Placeholder images (until real assets) --- */
.img-placeholder {
  background: linear-gradient(135deg, #faf7f2 0%, #f0ebe3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(0,0,0,.2);
  font-style: italic;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- Contact Page --- */
.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact__form-wrap { }
.contact__heading {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__field { display: flex; flex-direction: column; gap: 6px; }
.contact__label {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(0,0,0,.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.contact__input {
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: #1a1a1a;
  transition: border-color .2s;
}
.contact__input:focus {
  outline: none;
  border-color: var(--magenta);
}
.contact__input::placeholder { color: rgba(0,0,0,.3); }
.contact__textarea { min-height: 140px; resize: vertical; }
.contact__submit {
  background: linear-gradient(135deg, #E628CD, #92278F);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s;
}
.contact__submit:hover { opacity: .85; }

.contact__sidebar { }
.contact__info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.contact__info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184,134,11,.08);
  flex-shrink: 0;
}
.contact__info-title {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(0,0,0,.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.contact__info-val {
  font-family: var(--font-body);
  font-size: 17px;
  color: #1a1a1a;
}
a.contact__info-val:hover { color: #b8860b; }
.contact__divider {
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 24px 0;
}
.contact__info-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(0,0,0,.6);
  line-height: 1.6;
  margin-top: 8px;
}
.contact__callout {
  margin-top: 24px;
  padding: 20px;
  background: rgba(230,40,205,.04);
  border: 1px solid rgba(230,40,205,.15);
  border-radius: 10px;
}

/* --- FAQ --- */
.faq {
  padding: 72px 60px;
  max-width: 900px;
  margin: 0 auto;
}
.faq__list { display: flex; flex-direction: column; gap: 16px; }
.faq__item {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  padding: 24px 28px;
}
.faq__question {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.faq__answer {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(0,0,0,.6);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   SHIPPING & RETURNS
   ═══════════════════════════════════════════════ */

.policy { background: #faf7f2; padding: 56px 60px; max-width: 800px; margin: 0 auto; }
.policy__section { margin-bottom: 48px; }
.policy__heading-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.policy__icon { width: 48px; height: 48px; border: 1px solid; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.policy__title { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: #1a1a1a; }
.policy__cards { display: flex; flex-direction: column; gap: 16px; }
.policy__card { background: #fff; padding: 24px; border-radius: 4px; border: 1px solid rgba(0,0,0,.08); }
.policy__card--accent { border-left: 3px solid; }
.policy__card-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: #1a1a1a; margin-bottom: 8px; }
.policy__card-text { font-family: var(--font-body); font-size: 16px; color: rgba(0,0,0,.6); line-height: 1.7; }
.policy__help { text-align: center; padding: 36px; background: #fff; border-radius: 4px; border: 1px solid rgba(0,0,0,.08); }
.policy__help-title { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: #1a1a1a; margin-bottom: 8px; }
.policy__help-text { font-family: var(--font-body); font-size: 16px; color: rgba(0,0,0,.5); line-height: 1.6; margin-bottom: 20px; }
.policy__help-cta { display: inline-block; background: #b8860b; padding: 14px 40px; font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 4px; text-transform: uppercase; transition: background .2s; }
.policy__help-cta:hover { background: #a0750a; }

/* ═══════════════════════════════════════════════
   CART
   ═══════════════════════════════════════════════ */

.cart { background: #faf7f2; padding: 40px 60px; display: flex; gap: 40px; }
.cart__items { flex: 1; }
.cart__header { display: grid; grid-template-columns: 100px 1fr 120px 100px 60px; gap: 20px; align-items: center; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,.08); }
.cart__header-label { font-family: var(--font-body); font-size: 12px; color: rgba(0,0,0,.35); letter-spacing: 2px; text-transform: uppercase; }
.cart__row { display: grid; grid-template-columns: 100px 1fr 120px 100px 60px; gap: 20px; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.cart__row-img { width: 100px; height: 100px; object-fit: cover; object-position: center top; border-radius: 4px; }
.cart__row-info { }
.cart__row-name { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: #1a1a1a; }
.cart__row-variant { font-family: var(--font-body); font-size: 14px; color: rgba(0,0,0,.4); margin-top: 4px; font-style: italic; }
.cart__row-price { font-family: var(--font-body); font-size: 14px; color: #b8860b; margin-top: 2px; }
.cart__qty { display: flex; align-items: center; border: 1px solid rgba(0,0,0,.15); width: fit-content; }
.cart__qty-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-family: system-ui; font-size: 16px; color: rgba(0,0,0,.5); background: none; border: none; transition: color .2s; }
.cart__qty-btn:hover { color: #1a1a1a; }
.cart__qty-val { width: 36px; height: 32px; display: flex; align-items: center; justify-content: center; border-left: 1px solid rgba(0,0,0,.15); border-right: 1px solid rgba(0,0,0,.15); font-family: system-ui; font-size: 13px; font-weight: 700; color: #1a1a1a; }
.cart__row-total { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #b8860b; text-align: right; }
.cart__row-remove { display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: .4; transition: opacity .2s; background: none; border: none; padding: 0; }
.cart__row-remove:hover { opacity: 1; }
.cart__continue { display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(184,134,11,.3); padding-bottom: 4px; font-family: var(--font-body); font-size: 15px; color: #b8860b; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.cart__continue:hover { color: #1a1a1a; }
.cart__summary { flex: 0 0 320px; }
.cart__summary-box { background: #fff; padding: 32px; border-radius: 4px; border: 1px solid rgba(0,0,0,.08); }
.cart__summary-title { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: #1a1a1a; margin-bottom: 24px; }
.cart__summary-row { display: flex; justify-content: space-between; margin-bottom: 14px; }
.cart__summary-label { font-family: var(--font-body); font-size: 15px; color: rgba(0,0,0,.5); }
.cart__summary-val { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #1a1a1a; }
.cart__promo { display: flex; gap: 0; margin: 20px 0; border: 1px solid rgba(0,0,0,.1); }
.cart__promo-input { flex: 1; padding: 10px 14px; background: #faf7f2; border: none; font-family: var(--font-body); font-size: 14px; color: #1a1a1a; outline: none; }
.cart__promo-input::placeholder { color: rgba(0,0,0,.3); font-style: italic; }
.cart__promo-btn { background: #b8860b; padding: 10px 18px; cursor: pointer; border: none; font-family: system-ui; font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 1px; text-transform: uppercase; }
.cart__summary-divider { width: 100%; height: 1px; background: rgba(0,0,0,.08); margin: 20px 0; }
.cart__summary-row--final { margin-bottom: 24px; }
.cart__summary-total-label { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #1a1a1a; }
.cart__summary-total-val { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: #b8860b; }
.cart__pay-label { font-family: var(--font-body); font-size: 12px; color: rgba(0,0,0,.4); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.cart__pay-options { display: flex; gap: 10px; margin-bottom: 16px; }
.cart__pay-option { flex: 1; padding: 14px; border: 2px solid rgba(0,0,0,.1); background: transparent; cursor: pointer; text-align: center; transition: all .2s; border-radius: 2px; }
.cart__pay-option:hover { border-color: #b8860b; }
.cart__pay-option--active { border-color: #b8860b; background: rgba(184,134,11,.06); }
.cart__pay-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #1a1a1a; letter-spacing: 1px; }
.cart__pay-desc { font-family: var(--font-body); font-size: 11px; color: rgba(0,0,0,.4); margin-top: 2px; }
.cart__checkout { width: 100%; background: #b8860b; padding: 16px 0; text-align: center; cursor: pointer; transition: background .2s; border: none; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 4px; text-transform: uppercase; }
.cart__checkout:hover { background: #a0750a; }
.cart__fine-print { margin-top: 16px; text-align: center; }
.cart__fine-print p { font-family: var(--font-body); font-size: 13px; color: rgba(0,0,0,.35); line-height: 1.6; }
.cart__consent { font-size: 11px !important; color: rgba(0,0,0,.25) !important; margin-top: 12px; font-style: italic; }
.cart__payment-icons { display: flex; gap: 16px; justify-content: center; margin-top: 16px; }
.cart__payment-icons span { font-family: system-ui; font-size: 11px; color: rgba(0,0,0,.25); letter-spacing: 2px; }
.cart__empty { text-align: center; padding: 80px 24px; background: #faf7f2; }
.cart__empty-icon { margin-bottom: 24px; }
.cart__empty-title { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: #1a1a1a; margin-bottom: 8px; }
.cart__empty-text { font-family: var(--font-body); font-size: 18px; color: rgba(0,0,0,.5); margin-bottom: 32px; }
.cart__empty-cta { display: inline-block; background: #b8860b; padding: 16px 48px; font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 4px; text-transform: uppercase; transition: background .2s; }
.cart__empty-cta:hover { background: #a0750a; }

/* ═══════════════════════════════════════════════
   ORDER CONFIRMATION
   ═══════════════════════════════════════════════ */

.confirm__hero { background: #faf7f2; padding: 72px 60px; text-align: center; position: relative; }
.confirm__hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(0,0,0,.06); }
.confirm__check { width: 80px; height: 80px; border-radius: 50%; border: 3px solid #b8860b; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.confirm__subtitle { font-family: var(--font-body); font-size: 19px; color: rgba(0,0,0,.5); font-style: italic; max-width: 500px; margin: 16px auto 0; line-height: 1.6; }
.confirm { background: #faf7f2; padding: 48px 60px; max-width: 700px; margin: 0 auto; }
.confirm__order-bar { background: #fff; padding: 24px; border-radius: 4px; border: 1px solid rgba(0,0,0,.08); display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.confirm__label { font-family: var(--font-body); font-size: 12px; color: rgba(0,0,0,.4); letter-spacing: 2px; text-transform: uppercase; }
.confirm__order-num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #b8860b; margin-top: 4px; letter-spacing: 2px; }
.confirm__date { font-family: var(--font-body); font-size: 16px; color: #1a1a1a; margin-top: 4px; }
.confirm__section-title { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: #1a1a1a; margin-bottom: 16px; }
.confirm__items { display: flex; flex-direction: column; }
.confirm__item { display: flex; align-items: center; gap: 20px; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.confirm__item-img { width: 70px; height: 70px; object-fit: cover; object-position: center top; border-radius: 4px; }
.confirm__item-info { flex: 1; }
.confirm__item-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #1a1a1a; }
.confirm__item-meta { font-family: var(--font-body); font-size: 13px; color: rgba(0,0,0,.4); font-style: italic; margin-top: 2px; }
.confirm__item-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #b8860b; }
.confirm__totals { margin-top: 24px; padding: 24px; background: #fff; border-radius: 4px; border: 1px solid rgba(0,0,0,.08); }
.confirm__total-row { display: flex; justify-content: space-between; margin-bottom: 10px; }
.confirm__total-label { font-family: var(--font-body); font-size: 15px; color: rgba(0,0,0,.5); }
.confirm__total-val { font-family: var(--font-display); font-size: 15px; color: #1a1a1a; }
.confirm__total-divider { width: 100%; height: 1px; background: rgba(0,0,0,.08); margin: 14px 0; }
.confirm__total-row--final { margin-bottom: 0; }
.confirm__total-label--final { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #1a1a1a; }
.confirm__total-val--final { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: #b8860b; }
.confirm__info-row { margin-top: 32px; display: flex; gap: 32px; }
.confirm__info-card { flex: 1; padding: 24px; background: #fff; border-radius: 4px; border: 1px solid rgba(0,0,0,.08); }
.confirm__info-heading { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #1a1a1a; margin-bottom: 12px; }
.confirm__info-text { font-family: var(--font-body); font-size: 15px; color: rgba(0,0,0,.5); line-height: 1.7; }
.confirm__info-note { font-family: var(--font-body); font-size: 13px; color: rgba(0,0,0,.3); margin-top: 8px; font-style: italic; }
.confirm__next { margin-top: 32px; text-align: center; padding: 32px; background: #fff; border-radius: 4px; border: 1px solid rgba(230,40,205,.1); }
.confirm__next-title { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: #1a1a1a; margin-bottom: 10px; }
.confirm__next-text { font-family: var(--font-body); font-size: 16px; color: rgba(0,0,0,.5); line-height: 1.7; max-width: 480px; margin: 0 auto; }
.confirm__next-text div { margin-bottom: 8px; }
.confirm__next-text div:last-child { margin-bottom: 0; }
.confirm__actions { display: flex; gap: 16px; margin-top: 32px; justify-content: center; }
.confirm__cta { padding: 16px 40px; font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; transition: all .2s; }
.confirm__cta--primary { background: #b8860b; color: #fff; }
.confirm__cta--primary:hover { background: #a0750a; }
.confirm__cta--outline { border: 2px solid rgba(0,0,0,.15); color: #1a1a1a; }
.confirm__cta--outline:hover { border-color: #b8860b; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .collection__grid { grid-template-columns: repeat(2, 1fr); }
  .also-like__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pdp { gap: 40px; padding: 40px; }
}

@media (max-width: 768px) {
  .nav { padding: 0 16px; height: 70px; }
  .nav__left { gap: 12px; }
  .nav__social { gap: 8px; }
  .nav__social-icon svg { width: 14px; height: 14px; }
  .nav__logo { margin: 0 12px; }
  .nav__logo-name { font-size: 16px; letter-spacing: 2px; }
  .nav__logo-sub { font-size: 8px; letter-spacing: 4px; }
  .mobile-menu { padding: 24px; gap: 24px; flex-direction: column; align-items: center; }
  .mobile-menu.open { position: fixed; inset: 0; top: 0; background: rgba(0,0,0,.95); z-index: 100; justify-content: center; border: none; }
  .mobile-menu a { font-size: 22px; }

  .hero { padding: 60px 24px; min-height: 400px; }
  .hero__cta { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; max-width: 300px; text-align: center; }

  .pillars { padding: 20px 24px; gap: 24px; flex-wrap: wrap; }

  .categories { padding: 48px 24px; }
  .categories__grid { grid-template-columns: 1fr; }

  .products { padding: 48px 24px; }
  .products__grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .products__header { flex-direction: column; align-items: flex-start; }

  .quote-banner { padding: 60px 24px; }

  .testimonials { padding: 48px 24px; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .newsletter { padding: 48px 24px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input { border-right: 2px solid #ddd; border-bottom: none; }

  .footer__grid { padding: 40px 24px; grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { padding: 20px 24px; flex-direction: column; text-align: center; }

  .coll-pillar,
  .coll-pillar--reversed { flex-direction: column; }
  .coll-pillar__img { flex: none; position: relative; }
  .coll-pillar__img img { min-height: 300px; object-fit: contain; }
  .coll-pillar__content { padding: 28px 24px; }
  .coll-pillar__bg-letter { font-size: 80px; top: 10px; right: 16px; }
  .coll-pillar__bg-letter--left { left: 16px; right: auto; }
  .coll-pillar__letter { font-size: 48px; }
  .coll-pillar__name { font-size: 24px; }
  .coll-pillar__desc { font-size: 15px; line-height: 1.7; margin-top: 10px; }
  .coll-pillar__quote { font-size: 14px; margin-top: 14px; }
  .coll-pillar__cta { margin-top: 18px; font-size: 13px; }
  .coll-pillar__accent--right,
  .coll-pillar__accent--left { width: 100%; height: 3px; top: auto; bottom: 0; left: 0; right: 0; display: block; }

  .filter-bar { padding: 16px 24px; }
  .collection { padding: 32px 24px 48px; }
  .collection__grid { grid-template-columns: 1fr; }

  .breadcrumb { padding: 12px 24px; }
  .pdp { flex-direction: column; padding: 32px 24px; gap: 32px; }
  .pdp__gallery { flex: none; max-width: 100%; }
  .pdp__add-cart { max-width: 100%; }
  .also-like { padding: 48px 24px; }
  .also-like__grid { grid-template-columns: 1fr; }

  .page-header { padding: 40px 24px; }
  .about-section { flex-direction: column; }
  .about-section__img { flex: none; }
  .about-section__img img { min-height: 300px; }
  .about-section__content { padding: 40px 24px; }

  .contact { grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; }
  .contact__row { grid-template-columns: 1fr; }
  .faq { padding: 48px 24px; }

  .policy { padding: 40px 24px; }
  .cart { flex-direction: column; padding: 32px 24px; }
  .cart__header { display: none; }
  .cart__row { grid-template-columns: 80px 1fr auto; grid-template-rows: auto auto; gap: 12px; }
  .cart__row-img { width: 80px; height: 80px; grid-row: 1 / 3; }
  .cart__row-total { text-align: left; }
  .cart__row-remove { position: absolute; top: 20px; right: 0; }
  .cart__summary { flex: none; }
  .confirm__hero { padding: 48px 24px; }
  .confirm { padding: 32px 24px; }
  .confirm__info-row { flex-direction: column; }
  .confirm__actions { flex-direction: column; }
  .confirm__cta { text-align: center; }
}
