:root {
  --bg: #fff8f8;
  --surface: #ffffff;
  --text: #221d1f;
  --muted: #6d6368;
  --rose: #b63f64;
  --rose-dark: #8d2f4d;
  --line: #eddfe4;
  --shadow: 0 14px 36px rgba(131, 70, 89, 0.12);
  --gold: #c9a36a;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #ffeef1 0%, var(--bg) 42%);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
.container { width: min(1140px, 92%); margin: 0 auto; }

.announce {
  background: #20161a;
  color: #fff;
  text-align: center;
  font-size: .83rem;
  letter-spacing: .08em;
  padding: 8px 10px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 248, 248, 0.88);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
  display:flex;
  align-items:center;
  gap:8px;
}
.logo-mark {
  width:28px;
  height:28px;
  border-radius:50%;
  object-fit:cover;
}
nav a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 9px;
  font-weight: 500;
}
nav a:hover { color: var(--rose-dark); }

.hero { padding: 72px 0 52px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: var(--rose-dark);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}
.lead { color: var(--muted); max-width: 58ch; }
.hero-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-media img {
  width: 100%;
  height: min(580px, 68vh);
  object-fit: cover;
}
.hero-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hero-stats div {
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
}
.hero-stats strong { display: block; font-size: 1rem; }
.hero-stats span { color: var(--muted); font-size: .85rem; }

.section { padding: 58px 0; }
.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2 { margin-top: 0; font-size: clamp(1.5rem, 2.5vw, 2.2rem); }

.quick-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.quick-links a {
  text-decoration: none;
  text-align: center;
  color: var(--rose-dark);
  border: 1px solid var(--line);
  padding: 10px 8px;
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  font-size: .9rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 25px rgba(20, 18, 19, 0.04);
}
.card-image {
  width: 100%;
  height: 420px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 12px;
}
.product-cards .price { font-size: 1.1rem; font-weight: 700; }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.grid-4 > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.review-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.review-strip div {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  color: var(--rose-dark);
  font-weight: 500;
}

.standout {
  border: 1px solid #3b2730;
  border-radius: 18px;
  padding: 26px;
  background: linear-gradient(135deg, #22151b, #38222c 60%, #4a2c39);
  color: #f8eef1;
  box-shadow: 0 16px 40px rgba(28, 16, 21, .35);
}
.standout h2 { margin: 8px 0 10px; color: #fff; }
.standout .eyebrow { color: var(--gold); }
.standout p { color: #eadde2; }
.standout-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.standout-grid article {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255,255,255,.06);
}
.standout-grid strong { display:block; color: var(--gold); font-size: 1.2rem; }
.standout-grid span { font-size: .9rem; color: #f0e6ea; }

.mood-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.mood-grid img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.lookbook-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.lookbook-grid img {
  height: 320px;
}

.waitlist { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
input {
  min-width: 280px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
}
.actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--rose);
  background: var(--rose);
  color: #fff;
  cursor: pointer;
}
.btn:hover { background: var(--rose-dark); border-color: var(--rose-dark); }
.btn-outline { background: transparent; color: var(--rose-dark); border-color: var(--rose-dark); }
.btn-outline:hover { background: rgba(182,63,100,0.08); }

.muted { color: var(--muted); font-size: .95rem; }
.footer { padding: 26px 0 40px; color: var(--muted); }

.collection-hero {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
}
.collection-meta {
  display: flex;
  gap: 10px;
}
.collection-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  font-size: .9rem;
}
.quick-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.catalog-toolbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.sort-box {
  border:1px solid #ddd3d7;
  border-radius:999px;
  padding:8px 14px;
  font-size:.85rem;
  color:#5e565a;
  background:#fff;
}
.catalog-layout {
  display:grid;
  grid-template-columns: 230px 1fr;
  gap:24px;
}
.filters-panel {
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:14px;
  height: fit-content;
  position: sticky;
  top: 90px;
}
.filters-panel h4 { margin:0 0 10px; }
.filters-panel details { border-top:1px solid var(--line); padding:8px 0; }
.filters-panel summary { cursor:pointer; font-weight:600; }
.filters-panel p { color:var(--muted); font-size:.9rem; margin:8px 0 0; }
.chip {
  border: 1px solid #ddd3d7;
  background: #fff;
  border-radius: 999px;
  padding: 7px 13px;
  font-weight: 600;
  color: #6f666b;
  font-size: .82rem;
}
.chip-active {
  background: #151015;
  color: #fff;
  border-color: #151015;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 18px;
}
.product-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.product-card .btn {
  padding: 9px 13px;
  font-size: .86rem;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  color: #7a7276;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 9px 0 4px;
}
.product-card h3 {
  font-size: 1.02rem;
  margin: 0 0 4px;
}
.product-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .92rem;
}
.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.product-bottom strong {
  font-size: .98rem;
  font-weight: 700;
}

.announce-dark { background:#3a1820; letter-spacing:.06em; font-size:.72rem; }
.mobile-brand-bar { display:flex; align-items:center; justify-content:space-between; padding:14px 16px; border-bottom:1px solid var(--line); background:#fff; }
.icon-row { display:flex; gap:12px; font-size:1.1rem; color:#3d3338; }
.icon-row a { color:#3d3338; text-decoration:none; }
.brand-center { font-size:2rem; font-family:cursive; color:#2a1d22; text-decoration:none; display:flex; align-items:center; gap:8px; }
.brand-center span { font-family: "Times New Roman", serif; font-size:1.05rem; font-weight:600; color:#2a1d22; }
.brand-center img {
  width:48px;
  height:48px;
  object-fit:contain;
}
.login-link { font-size:.9rem; font-weight:600; }
.compact-head { padding-bottom: 12px; }
.filter-sort-row { display:grid; grid-template-columns: 1fr 1fr; gap:0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.flat-btn { background:#fff; border:0; padding:14px; text-align:left; font-weight:600; border-right:1px solid var(--line); }
.flat-btn:last-child { border-right:0; }
.bydee-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:0; }
.mini-product { border-right:1px solid var(--line); border-bottom:1px solid var(--line); padding-bottom:8px; }
.mini-product:nth-child(2n){ border-right:0; }
.bydee-img { width:100%; height:290px; object-fit:cover; display:block; }
.mini-product h3 { font-size:1rem; margin:8px 8px 4px; font-weight:500; }
.item-type { margin:0 8px 4px; color:#7d7278; font-size:.82rem; }
.price-line { margin:0 8px 6px; font-size:1.05rem; }
.size-row { margin:0 8px 6px; color:#6f676b; font-size:.85rem; border-top:1px solid #ece6e9; padding-top:6px; }
.reviews { margin:0 8px; font-size:.85rem; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero-grid, .cards, .grid-4, .mood-grid, .review-strip, .quick-links, .hero-stats, .standout-grid, .products-grid, .catalog-layout { grid-template-columns: 1fr; }
  .collection-hero { flex-direction: column; align-items: flex-start; }
  .catalog-toolbar { flex-direction: column; align-items: flex-start; }
  .filters-panel { position: static; }
  .card-image, .mood-grid img { height: 280px; }
}
