@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FFF8FC;
  --blush: #FFE8F3;
  --rose: #F472B6;
  --deep: #831843;
  --charcoal: #9D174D;
  --muted: #BE185D;
  --white: #FFFFFF;
  --border: #FBCFE8;
  --yellow: #FEF08A;
  --yellow-mid: #FDE047;
  --yellow-deep: #CA8A04;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--deep);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFF0F7;
  border-bottom: 1px solid #FBCFE8;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--deep);
}

.nav-logo span { color: var(--rose); font-style: italic; }

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--rose); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--deep);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8% 8% 8% 10%;
}

.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 1.5rem;
}

.hero-title em { font-style: italic; color: var(--rose); }

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.btn-dark {
  background: #831843;
  color: var(--white);
}

.btn-dark:hover { background: #9D174D; }

.btn-outline {
  background: transparent;
  color: var(--deep);
  border: 1px solid var(--deep);
}

.btn-outline:hover { background: var(--deep); color: var(--cream); }

.hero-image {
  background: var(--blush);
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-image:hover img { transform: scale(1.04); }

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 88vh;
  background: linear-gradient(160deg, #FFE8F3 0%, #FEF08A 60%, #F472B6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.hero-image-placeholder .ph-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.hero-image-placeholder p {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.5;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  padding: 5rem 5% 3rem;
}

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--deep);
  line-height: 1.2;
}

/* ── SHOP / PRODUCT GRID ── */
.shop-section { padding: 0 5% 6rem; }

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 2rem;
  border-bottom: 1px solid #FBCFE8;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

.filter-tab:hover,
.filter-tab.active {
  background: #831843;
  color: var(--white);
  border-color: #831843;
}

.sort-select {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  outline: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  cursor: pointer;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--blush);
  aspect-ratio: 3/4;
  margin-bottom: 1rem;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #F472B6;
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #FFE8F3, #FEF9C3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.5;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 4px;
}

.product-category {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.product-price {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--deep);
}

.product-price .old-price {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 300;
}

.no-products {
  text-align: center;
  padding: 4rem 0;
  color: var(--muted);
  grid-column: 1/-1;
}

.no-products p { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; }

/* ── LOOKBOOK ── */
.lookbook-section { padding: 0 5% 6rem; }

.lookbook-grid {
  columns: 3;
  column-gap: 1rem;
}

.lookbook-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.lookbook-item img {
  width: 100%;
  transition: transform 0.5s ease;
}

.lookbook-item:hover img { transform: scale(1.04); }

.lookbook-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 20, 0);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: background 0.3s;
}

.lookbook-item:hover .lookbook-overlay { background: rgba(44, 26, 20, 0.35); }

.lookbook-caption {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  opacity: 0;
  transition: opacity 0.3s;
  transform: translateY(6px);
}

.lookbook-item:hover .lookbook-caption { opacity: 1; transform: translateY(0); }

.lookbook-placeholder {
  background: linear-gradient(145deg, #FFE8F3, #FEF08A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--charcoal);
  opacity: 0.4;
}

/* ── ABOUT ── */
.about-section {
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  background: var(--blush);
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #FFE8F3, #FEF08A40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.4;
}

.about-text .section-tag { text-align: left; display: block; margin-bottom: 1rem; }

.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--deep);
  margin-bottom: 1.5rem;
}

.about-body {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.about-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--rose);
  display: block;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── CONTACT ── */
.contact-section {
  background: #831843;
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info .section-tag { text-align: left; display: block; }

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}

.contact-body { color: var(--blush); line-height: 1.9; opacity: 0.7; margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  color: var(--blush);
  font-size: 0.9rem;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0.6;
}

.form-input,
.form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(242,217,208,0.2);
  color: var(--cream);
  padding: 12px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--rose); }

.form-textarea { resize: vertical; min-height: 120px; }

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(242,217,208,0.3); }

.btn-rose {
  background: #F472B6;
  color: var(--white);
  border: none;
  align-self: flex-start;
}

.btn-rose:hover { background: #b8786a; }

/* ── FOOTER ── */
footer {
  background: #831843;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #FFF0F7;
  font-weight: 400;
}

.footer-logo span { color: #FDE047; font-style: italic; }

.footer-copy {
  font-size: 0.75rem;
  color: #FBCFE8;
  opacity: 0.7;
  letter-spacing: 0.08em;
}

/* ── PAGE SECTIONS (show/hide) ── */
.page { display: none; }
.page.active { display: block; }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--deep);
  color: var(--cream);
  padding: 14px 24px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  pointer-events: none;
}

.toast.show { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { min-height: 50vw; }
  .hero-image-placeholder { min-height: 50vw; }
  .about-section { grid-template-columns: 1fr; gap: 3rem; }
  .contact-section { grid-template-columns: 1fr; gap: 3rem; }
  .lookbook-grid { columns: 2; }
}

@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--cream); padding: 1.5rem 5%; border-bottom: 1px solid #FBCFE8; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .lookbook-grid { columns: 2; }
  .filter-bar { flex-direction: column; align-items: flex-start; }
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
}

/* ── CART ICON IN NAV ── */
.cart-nav-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  padding: 4px 8px;
  display: flex;
  align-items: center;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #F472B6;
  color: white;
  font-size: 0.6rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

/* ── CART OVERLAY ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,26,20,0.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── CART DRAWER ── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--cream);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 30px rgba(44,26,20,0.12);
}

.cart-drawer.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid #FBCFE8;
  flex-shrink: 0;
}

.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--deep);
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  transition: color 0.2s;
}

.cart-close:hover { color: var(--deep); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--muted);
}

.cart-empty p:first-child { font-size: 2.5rem; margin-bottom: 0.5rem; }
.cart-empty p { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: 4px; }
.cart-empty span { font-size: 0.82rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #FBCFE8;
  align-items: center;
}

.cart-item-image {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--blush);
}

.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--deep); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-cat { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 2px 0 4px; }
.cart-item-price { font-size: 0.9rem; font-weight: 500; color: var(--deep); }

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--deep);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif;
}

.qty-btn:hover { background: var(--deep); color: var(--cream); border-color: var(--deep); }
.qty-num { font-size: 0.9rem; min-width: 20px; text-align: center; }

.remove-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 4px;
  margin-left: 2px;
  transition: color 0.2s;
}

.remove-btn:hover { color: var(--rose); }

/* ── CART FOOTER ── */
.cart-footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 1.5rem 1.5rem;
  flex-shrink: 0;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-total-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-total-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--deep);
  font-weight: 400;
}

.whatsapp-btn {
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: white;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}

.whatsapp-btn:hover { background: #1ebe5a; }

/* ── ADD TO CART BUTTON on product cards ── */
.product-card .add-to-cart-btn {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--deep);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.25s;
}

.product-card:hover .add-to-cart-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-card .add-to-cart-btn:hover {
  background: var(--deep);
  color: var(--cream);
  border-color: var(--deep);
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid #FBCFE8;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  background: none;
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--deep);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--rose); }

.faq-arrow {
  font-size: 1.4rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.2rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── NEW IN BADGE ── */
.badge-new {
  background: var(--deep);
  color: var(--cream);
}

.badge-sale {
  background: #F472B6;
  color: white;
}

/* ── FOOTER REDESIGN ── */
footer {
  background: #831843;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 5%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 1rem;
}

.footer-logo span { color: #FDE047; font-style: italic; }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--blush);
  opacity: 0.5;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-contact-details p {
  font-size: 0.83rem;
  color: var(--blush);
  opacity: 0.6;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.2rem;
  font-weight: 400;
  font-family: 'Jost', sans-serif;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-col ul li a {
  font-size: 0.85rem;
  color: var(--blush);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
  text-decoration: none;
}

.footer-links-col ul li a:hover {
  opacity: 1;
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--blush);
  opacity: 0.3;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
}

/* ── FAQ ── */
.faq-group { margin-bottom: 2.5rem; }

.faq-category {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #FBCFE8;
}

.faq-item {
  border-bottom: 1px solid #FBCFE8;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--deep);
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--rose); }

.faq-icon {
  font-size: 1.3rem;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 1.2rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

.faq-answer.open { display: block; }

/* ── NEW IN BADGE ── */
.badge-new {
  background: var(--deep);
  color: var(--cream);
}

/* ── SALE NAV LINK ── */
.nav-links a[data-page="sale"] { color: #F472B6; font-weight:500; }

.color-options { margin-bottom: 10px; }
.color-btn {
  display: inline-block;
  margin: 0 4px 4px 0;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-family: inherit;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--deep);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.color-btn:hover { border-color: var(--rose); }
.color-btn.selected { background: var(--deep); color: var(--cream); border-color: var(--deep); }

