/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  color: #2a2018;
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --cream: #fdf8f2;
  --blush: #f7e8e0;
  --rose: #c8837a;
  --rose-dark: #a05a52;
  --burgundy: #6b2d3e;
  --gold: #c5a55a;
  --text: #2a2018;
  --text-muted: #7a6a5a;
  --border: #e8ddd4;
  --header-h: 70px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--burgundy);
  color: #fdf8f2;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 8px 16px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 0.5px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a {
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}
.nav-left a::after, .nav-right a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-left a:hover::after, .nav-right a:hover::after { transform: scaleX(1); }
.nav-left a:hover, .nav-right a:hover { color: var(--rose); }

/* LOGO */
.logo {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}
.logo-q { color: var(--rose); }

/* HEADER ICONS */
.header-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 16px;
}
.header-icons button {
  color: var(--text);
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-icons button:hover { color: var(--rose); }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--rose);
  color: #fff;
  font-size: 9px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 99;
  flex-direction: column;
  padding: 16px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 0.5px solid var(--border);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
}
.hero-slides { height: 85vh; }
.hero-slide {
  display: none;
  height: 100%;
  align-items: center;
  padding: 0 10% 0 8%;
  gap: 60px;
}
.hero-slide.active { display: flex; }
.hero-content { flex: 1; }
.hero-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--rose); }
.hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 360px;
}
.hero-image-wrap {
  flex: 0 0 42%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-img-placeholder {
  width: 100%;
  max-width: 400px;
  height: 80%;
  position: relative;
  overflow: hidden;
  border-radius: 200px 200px 0 0;
  background: linear-gradient(180deg,#d4b8a8 0%, #c4a090 100%);
}
.hero-model-silhouette {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 95%;
  background: linear-gradient(180deg,#b89888 0%,#a07868 100%);
  border-radius: 180px 180px 0 0;
  opacity: 0.6;
}

/* Note: Replace .hero-img-placeholder with an <img> tag pointing to your model photo */

.hero-dots {
  position: absolute;
  bottom: 28px;
  right: 44%;
  display: flex;
  gap: 8px;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.2s;
}
.dot.active { opacity: 1; }

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 200;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* ===== SECTIONS ===== */
.section {
  padding: 72px 5%;
  max-width: 1280px;
  margin: 0 auto;
}
.section-tinted {
  background: var(--cream);
  max-width: 100%;
  padding: 72px 5%;
}
.section-tinted .section { padding: 0; max-width: 1280px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}
.section-line {
  width: 50px; height: 1px;
  background: var(--rose);
  margin: 0 auto;
}
.insta-handle {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--rose);
  letter-spacing: 0.05em;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.product-grid--6 {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  cursor: pointer;
  position: relative;
  group: true;
}
.product-img-wrap {
  width: 100%;
  padding-bottom: 130%;
  position: relative;
  overflow: hidden;
  background: var(--blush);
  border-radius: 6px;
  margin-bottom: 12px;
}
.product-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-img-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.product-card:hover .product-img { transform: scale(1.05); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,32,24,0.15);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card:hover .product-overlay { opacity: 1; }
.quick-view-btn {
  background: #fff;
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 3px;
  transform: translateY(8px);
  transition: transform 0.3s, box-shadow 0.2s;
}
.product-card:hover .quick-view-btn { transform: translateY(0); }
.quick-view-btn:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}
.product-price {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* WISHLIST HEART */
.wishlist-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.product-card:hover .wishlist-btn { opacity: 1; }
.wishlist-btn svg { transition: fill 0.2s; }
.wishlist-btn.active svg { fill: var(--rose); stroke: var(--rose); }

/* BADGE */
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--burgundy);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 2px;
  z-index: 2;
}

/* ===== CENTER BUTTON ===== */
.center-btn { text-align: center; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--rose);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 36px;
  border-radius: 3px;
  border: 1px solid var(--rose);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--rose); color: #fff; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 3px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-whatsapp:hover { background: #1ebe5a; }

/* ===== COLLECTIONS BANNER ===== */
.collections-banner {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 0;
  height: 320px;
  overflow: hidden;
}
.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.collection-img {
  width: 100%; height: 100%;
  transition: transform 0.5s;
}
.collection-card:hover .collection-img { transform: scale(1.06); }
.collection-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(42,32,24,0.7));
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  padding: 32px 20px 16px;
}

/* ===== USP STRIP ===== */
.usp-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: #fff;
}
.usp-item {
  flex: 1;
  text-align: center;
  padding: 40px 20px;
  border-right: 0.5px solid var(--border);
}
.usp-item:last-child { border-right: none; }
.usp-icon {
  margin: 0 auto 12px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
}
.usp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.usp-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 150px;
  margin: 0 auto;
}

/* ===== INSTA GRID ===== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  max-width: 1280px;
  margin: 0 auto;
}
.insta-cell {
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.insta-cell-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.4s;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--text-muted);
}
.insta-cell:hover .insta-cell-inner { transform: scale(1.05); }

/* ===== FOOTER ===== */
.footer {
  background: #2a2018;
  color: #c8bcb0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 5% 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.footer-logo span { color: var(--rose); }
.footer-about { font-size: 13px; line-height: 1.8; color: #a89888; }
.footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 13px;
  color: #a89888;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--rose); }
.footer-contact { font-size: 13px; color: #a89888; line-height: 1.7; margin-top: 20px; }
.footer-contact strong { color: #d8ccc0; }
.footer p { font-size: 13px; color: #a89888; line-height: 1.7; }
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.footer-social a {
  color: #a89888;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--rose); }

/* NEWSLETTER */
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: #3a3028;
  border: 0.5px solid #5a4a3a;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  font-family: 'Nunito Sans', sans-serif;
  outline: none;
}
.newsletter-form input::placeholder { color: #7a6a5a; }
.newsletter-form input:focus { border-color: var(--rose); }
.newsletter-form button {
  padding: 10px 16px;
  background: var(--rose);
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--rose-dark); }

.footer-bottom {
  border-top: 0.5px solid #3a3028;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: #6a5a4a; }
.payment-icons {
  display: flex;
  gap: 8px;
}
.payment-icons span {
  font-size: 10px;
  letter-spacing: 0.06em;
  border: 0.5px solid #5a4a3a;
  padding: 4px 8px;
  border-radius: 3px;
  color: #a89888;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,32,24,0.6);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 18px;
  color: var(--text-muted);
  z-index: 2;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--rose); }
.modal-inner { display: grid; grid-template-columns: 1fr 1fr; }
.modal-img-wrap {
  background: var(--blush);
  padding-bottom: 120%;
  position: relative;
}
.modal-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.modal-details { padding: 40px 32px; display: flex; flex-direction: column; }
.modal-category {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}
.modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}
.modal-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}
.modal-divider { height: 0.5px; background: var(--border); margin-bottom: 20px; }
.modal-meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.modal-meta div { display: flex; justify-content: space-between; font-size: 13px; }
.modal-meta span { color: var(--text-muted); }
.modal-meta strong { color: var(--text); }
.modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 250;
  display: none;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed;
  top: 0; right: -400px;
  width: 380px;
  height: 100vh;
  background: #fff;
  z-index: 260;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
}
.cart-drawer.open { right: 0; }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 0.5px solid var(--border);
}
.cart-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; }
.cart-header button { font-size: 18px; color: var(--text-muted); }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { font-size: 14px; color: var(--text-muted); text-align: center; margin-top: 40px; line-height: 2; }
.cart-empty a { color: var(--rose); }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 0.5px solid var(--border); }
.cart-item-img {
  width: 70px; height: 90px;
  background: var(--blush);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--text-muted);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 15px; margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-remove { font-size: 11px; color: var(--rose); cursor: pointer; letter-spacing: 0.05em; }
.cart-footer { padding: 20px 24px; border-top: 0.5px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; font-size: 15px; }
.cart-total strong { font-family: 'Cormorant Garamond', serif; font-size: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid--6 { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { display: flex; justify-content: center; padding: 0 60px; }
  .nav-left, .nav-right > a { display: none; }
  .nav-right { justify-content: flex-end; }
  .mobile-menu-btn { display: flex; }
  .logo { font-size: 24px; }
  .hero-slide { flex-direction: column; padding: 40px 5% 20px; text-align: center; }
  .hero-image-wrap { flex: 0 0 auto; height: 320px; width: 100%; }
  .hero-img-placeholder { margin: 0 auto; }
  .hero-sub { margin: 0 auto 28px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-grid--6 { grid-template-columns: repeat(2, 1fr); }
  .collections-banner { grid-template-columns: 1fr; height: auto; }
  .collection-card { height: 200px; }
  .usp-strip { flex-wrap: wrap; }
  .usp-item { flex: 0 0 50%; border-bottom: 0.5px solid var(--border); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 5%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal-inner { grid-template-columns: 1fr; }
  .modal-img-wrap { padding-bottom: 60%; }
  .cart-drawer { width: 100%; right: -100%; }
  .section { padding: 48px 5%; }
}

@media (max-width: 480px) {
  .product-grid { gap: 10px; }
  .usp-item { flex: 0 0 100%; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SCROLL FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
