*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
:root { 
  --burgundy: rgba(65, 37, 41, 1);
  --burgundy-dark: rgba(90, 31, 44, 1);
  --burgundy-light: rgba(168, 64, 87, 1);
  --cream: #F4EAE6;
  --cream-dark: #F0E8DC;
  --beige: #E8DDD0;
  --brown: #6B4C3B;
  --text-dark: #1a1010;
  --text-mid: #4a3030;
  --text-light: #8a7070;
  --white: #ffffff;
  --star: rgba(166, 19, 55, 1); 
  --badge-red: #c0392b;
} 
 
html { scroll-behavior: smooth; }
 
body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
} 
 
/* PROMO BAR */
.nav-promo {
  width: 100%;
  background: var(--burgundy);
  color: var(--white);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 8px 16px;
  line-height: 1.5;
}
.nav-promo span { font-weight: 700; }
 
/* NAVBAR */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--beige);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
  transition: box-shadow 0.3s ease;
}

nav.scroll-shadow {
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
 
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
 
.logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}
 
.logo-img-footer {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
 
.nav-links {
  display: flex;
  gap: 12px;
  list-style: none;
  flex-shrink: 0;
}
 
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: .04em;
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #e5d4ce;
  border-radius: 7px;
  background-color: #E8DDD0;
  transition: background-color .25s, color .25s, border-color .25s, transform .2s, box-shadow .25s;
  white-space: nowrap;
}
 
.nav-links a:hover { 
  color: var(--white);
  background-color: var(--burgundy);
  border-color: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(65, 37, 41, 0.25);
}
 
.nav-links a:active {
  transform: translateY(0px);
  box-shadow: none;
} 
 
.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--beige);
  border-radius: 5px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  flex: 1;
  min-width: 0;
  max-width: 260px;
}
 
.nav-search input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  min-width: 0;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
} 
 
.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
 
.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 18px;
  position: relative;
  transition: color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.nav-icon-btn:hover { color: var(--burgundy); }
 
.nav-icon-btn .badge {
  position: absolute;
  top: -5px;
  right: -6px;
  background: var(--burgundy);
  color: white;
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}
 
/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--beige);
  position: relative;
  overflow: hidden;
}
 
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(123,45,62,.06) 0%, transparent 60%);
  pointer-events: none;
}
 
.hero-content {
  padding: 70px 60px 70px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
 
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--burgundy);
  display: flex;
  align-items: center;
  gap: 8px;
}
 
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--burgundy);
  flex-shrink: 0;
}
 
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
}
 
.hero-title em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 700;
}
 
.hero-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark);
  max-width: 400px;
}
 
.hero-desc strong { color: var(--burgundy); font-weight: 600; }
 
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: background .25s, transform .2s;
}
 
.btn-primary:hover { background: var(--burgundy-dark); transform: translateY(-1px); }
 
.hero-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
 
.hero-image img {
  width: 55%;
  height: 97%;
  object-fit: cover;
  object-position: top center;
  margin-top: 20px;
}
 
.hero-deco {
  position: absolute;
  font-size: 120px;
  opacity: .01;
  font-family: 'Playfair Display', serif;
  color: var(--burgundy);
  top: -10px;
  left: -10px;
  user-select: none;
  pointer-events: none;
}
 
/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
 
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
}
 
.section-header h2 em {
  font-style: italic;
  color: var(--burgundy);
}
 
.section-header p {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 6px;
}
 
.section-tag {
  display: inline-block;
  background: #a61337;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}
 
/* FAVORITES SECTION */
.section-favorites {
  padding: 80px 60px;
  background: linear-gradient(160deg, #f4eae6 0%, #f7f5f2 100%);
}
 
.favorites-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 14px;
  margin-bottom: 40px;
}
 
.fav-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
}
 
.fav-title h2 em {
  font-style: italic;
  color: var(--burgundy);
}
 
.fav-title p {
  font-size: clamp(15px, 2vw, 20px);
  color: var(--text-light);
}
 
.fav-title p strong { color: var(--burgundy); font-weight: 600; }
 
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
 
.product-card {
  position: relative;
  cursor: pointer;
  transition: transform .3s;
}
 
.product-card:hover { transform: translateY(-4px); }
.product-card:hover .product-overlay { opacity: 1; }
 
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 6px;
}
 
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
 
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
 
.badge-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--burgundy);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  z-index: 2;
}
 
.product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 5px;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
 
.btn-add-cart {
  background: white;
  color: var(--burgundy);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 3px;
  cursor: pointer;
  pointer-events: all;
  transition: background .2s, color .2s;
}
 
.btn-add-cart:hover { background: var(--burgundy); color: white; }
 
.product-info {
  padding: 16px 18px;
  border: 2px solid #6B4C3B;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  margin-top: 16px;
  width: 100%;
  transition: all 0.3s ease;
}
 
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
 
.product-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 14px;
}
 
.product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
 
.price-current {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  color: var(--burgundy);
}
 
.price-old {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
}
 
/* LOOKBOOK BANNER */
.lookbook-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: #f4eae6;
  overflow: hidden;
}
 
.lookbook-content {
  padding: 70px 70px 70px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
 
.lookbook-count {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}
 
.lookbook-count span { color: var(--burgundy); }
 
.lookbook-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
}
 
.lookbook-sub {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 380px;
}
 
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: background .25s, color .25s;
}
 
.btn-outline:hover { background: var(--burgundy); color: white; }
 
.lookbook-image {
  position: relative;
  overflow: hidden;
  perspective: 800px;
  min-height: 300px;
}
 
.lookbook-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.15s ease;
  will-change: transform;
}
 
/* TESTIMONIALS */
.section-testimonials {
  padding: 80px 60px;
  background: #f7f5f2;
}
 
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
 
.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
 
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
}
 
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
 
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--burgundy);
}
 
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.testimonial-info { flex: 1; min-width: 0; }
 
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
 
.testimonial-location {
  font-size: 12px;
  color: var(--text-light);
}
 
.testimonial-stars {
  color: var(--star);
  font-size: 13px;
  letter-spacing: 1px;
  flex-shrink: 0;
}
 
.testimonial-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}
 
.testimonials-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
 
.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--beige);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
 
.nav-dot.active { background: var(--burgundy); transform: scale(1.3); }
 
/* NEWSLETTER */
.section-newsletter {
  display: flex;
  flex-direction: row;
  gap: 0;
  background: #f7f5f2;
  align-items: stretch;
}
 
.newsletter-left {
  background: #f7f5f2;
  padding: 60px;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
 
.newsletter-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--text-dark);
}
 
.newsletter-left p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 340px;
}
 
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 380px;
}
 
.newsletter-form input {
  background: #ffffff;
  border: 1px solid var(--beige);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  outline: none;
  transition: border-color .2s;
}
 
.newsletter-form input::placeholder { color: var(--text-light); }
.newsletter-form input:focus { border-color: var(--burgundy); }
 
.btn-white {
  background: var(--burgundy);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
 
.btn-white:hover { background: var(--burgundy-dark); }
 
.newsletter-right {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: #f7f5f2;
  flex: 1;
  border-left: 1px solid var(--beige);
}
 
.newsletter-right h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
 
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}
 
.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--burgundy);
}
 
.contact-value {
  font-size: 14px;
  color: var(--text-mid);
}
 
.contact-value a {
  color: var(--text-mid);
  text-decoration: none;
}
 
.contact-divider {
  width: 40px;
  height: 2px;
  background: var(--beige);
  margin: 6px auto;
}
 
/* FOOTER */
footer {
  background: #ffffff;
  color: var(--text-mid);
  padding: 52px 80px 32px;
}
 
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
 
.footer-brand .nav-logo { opacity: .9; }
 
.footer-brand p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 12px;
}
 
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
 
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
 
.footer-col a {
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
}
 
.footer-col a:hover { color: var(--burgundy); }
 
.footer-bottom {
  border-top: 1px solid var(--beige);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 8px;
}
 
.footer-bottom a { color: var(--text-mid); text-decoration: none; }
 
/* DECORATIVE STARS */
.star-deco {
  display: inline-block;
  color: var(--star);
}
 
/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.animate-fadeup {
  opacity: 0;
  animation: fadeUp .6s ease forwards;
}
 
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }
.delay-4 { animation-delay: .55s; }
 
/* ================================================
   TABLET  (≤ 1024px)
================================================ */
@media (max-width: 1024px) {
  nav { padding: 0 24px; gap: 12px; }
  .nav-links { gap: 8px; }
  .nav-links a { padding: 7px 12px; font-size: 12px; }
  .nav-search { max-width: 200px; }
 
  .hero-content { padding: 50px 40px 50px 50px; }
  
  .hero-image img { width: 80%; height: 100%; margin-top: 0; }
 
  .section-favorites { padding: 60px 40px; }
  .products-grid { gap: 18px; }
 
  .lookbook-content { padding: 50px 40px 50px 50px; }
 
  .section-testimonials { padding: 60px 40px; }
 
  .newsletter-left, .newsletter-right { padding: 50px 40px; }
 
  footer { padding: 40px 40px 28px; }
}
 
/* ================================================
   MOBILE / SMALL TABLET  (≤ 768px)
================================================ */
@media (max-width: 768px) {
 
  .nav-promo { font-size: 11px; padding: 8px 12px; }
 
  nav { padding: 0 16px; height: 64px; gap: 10px; }
  .nav-links { display: none; }
  .nav-search { flex: 1; max-width: none; min-width: 0; }
  .nav-icons { gap: 12px; }
  .logo-img { height: 40px; }
 
  /* Hero stacks vertically */
  .hero { grid-template-columns: 1fr; min-height: unset; }
  .hero-content { padding: 40px 20px 32px; gap: 16px; }
  .hero-title { font-size: clamp(28px, 8vw, 42px); }
  .hero-desc { max-width: 100%; }
  .hero-image { height: 320px; justify-content: center; }
  .hero-image img { width: 80%; height: 100%; margin-top: 0; }
 
  /* Products: 2 columns */
  .section-favorites { padding: 48px 16px; }
  .fav-title h2 { font-size: clamp(26px, 7vw, 36px); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-info { padding: 12px 14px; margin-top: 12px; }
  .product-name { font-size: 14px; }
  .product-desc { font-size: 12px; }
  .price-current { font-size: 16px; }
 
  /* Lookbook stacks, image on top */
  .lookbook-banner { grid-template-columns: 1fr; }
  .lookbook-content { padding: 40px 20px; order: 1; }
  .lookbook-sub { max-width: 100%; }
  .lookbook-image { height: 260px; order: 0; }
 
  /* Testimonials: 1 column */
  .section-testimonials { padding: 48px 16px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; }
 
  /* Newsletter stacks */
  .section-newsletter { flex-direction: column; }
  .newsletter-left { padding: 48px 20px; }
  .newsletter-right { padding: 40px 20px 48px; border-left: none; border-top: 1px solid var(--beige); }
  .newsletter-left h3 { font-size: 24px; }
 
  /* Footer: 2 columns */
  footer { padding: 40px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; font-size: 11px; }
}
 
/* ================================================
   SMALL MOBILE  (≤ 480px)
================================================ */
@media (max-width: 480px) {
  .nav-promo { font-size: 10px; padding: 7px 10px; }
 
  nav { padding: 0 12px; height: 60px; }
  .logo-img { height: 36px; }
 
  .hero-content { padding: 28px 16px 24px; }
  .hero-title { font-size: clamp(24px, 9vw, 34px); }
  .hero-image { height: 350px; }
  .hero-image img { width: 90%; }
 
  /* Products: 1 column */
  .section-favorites { padding: 36px 12px; }
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-info { padding: 14px 16px; width: 100%; }
  .product-name { font-size: 17px; }
  .product-desc { font-size: 13px; }
  .price-current { font-size: 19px; }
 
  /* Lookbook */
  .lookbook-content { padding: 32px 16px; }
  .lookbook-image { height: 200px; }
 
  /* Testimonials */
  .section-testimonials { padding: 36px 12px; }
  .testimonials-grid { max-width: 100%; }
  .testimonial-card { padding: 16px 14px; }
 
  /* Newsletter */
  .newsletter-left, .newsletter-right { padding: 36px 16px; }
  .newsletter-left h3 { font-size: 22px; }
  .newsletter-form { max-width: 100%; }
 
  /* Footer: 1 column */
  footer { padding: 32px 14px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .nav-logo { justify-content: center; }

  .footer-brand { text-align: center; } 

  .footer-bottom { font-size: 11px; }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; align-items: center; }

  .footer-col h4 { text-align: center; }
}
