/* ═══════════════════════════════════════════════
   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: #0a0a0a; font-family: var(--font-display); color: var(--white); }
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__links {
  display: flex;
  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__logo {
  text-align: center;
  flex: 0 0 auto;
}
.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;
}

/* Mobile menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.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;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- 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: var(--black);
  padding: 28px 60px;
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  position: relative;
}
.pillars::before,
.pillars::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247,211,123,.3), transparent);
}
.pillars::before { top: 0; }
.pillars::after { bottom: 0; }
.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(255,255,255,.45);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.pillar__sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.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: 2px;
  background: linear-gradient(90deg, transparent 5%, #F7D37B 50%, transparent 95%);
}

/* --- Categories --- */
.categories {
  background: var(--cream);
  padding: 72px 60px;
}
.categories__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.category-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  background: #333;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.category-card:hover img { transform: scale(1.05); }
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 60%);
  pointer-events: none;
}
.category-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  pointer-events: none;
}
.category-card__label h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.category-card__accent {
  width: 40px;
  height: 2px;
  background: var(--magenta);
  margin-top: 10px;
}
.category-card__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  pointer-events: none;
}

/* --- Product Cards --- */
.products {
  background: var(--near-black);
  padding: 72px 60px;
}
.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: 2px solid var(--gold);
  padding-bottom: 4px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--dark);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform .3s;
}
.product-card:hover { transform: translateY(-4px); }
.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;
}
.product-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #222;
}
.product-card__body { padding: 20px; }
.product-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}
.product-card__fit {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.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: var(--gold);
}
.product-card__add {
  background: var(--gold);
  padding: 8px 16px;
  cursor: pointer;
  font-family: system-ui;
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  transition: background .2s;
}
.product-card__add:hover { background: #f5c94f; }

/* --- 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: var(--near-black);
  padding: 72px 60px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--dark);
  padding: 36px;
  position: relative;
  border-radius: 4px;
}
.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(255,255,255,.75);
  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: var(--white);
}
.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: var(--cream);
  padding: 72px 60px;
  text-align: center;
  position: relative;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, #B27F2C 50%, transparent 95%);
}
.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: var(--dark);
  padding: 16px 32px;
  cursor: pointer;
  border: none;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background .2s;
}
.newsletter__submit:hover { background: #333; }

/* --- Footer --- */
.footer {
  background: var(--black);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #B27F2C, #F7D37B, #B27F2C);
}
.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: var(--black);
  padding: 56px 60px;
  text-align: center;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247,211,123,.3), transparent);
}
.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;
}

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

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

@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; height: 70px; }
  .nav__links { display: none; }
  .nav__right .nav__link { display: none; }
  .nav__hamburger { display: flex; }

  .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; }
  .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; }

  .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; }
}
