:root {
  --bg: #0f1412;
  --panel: #151c19;
  --card: #1b2521;
  --soft: #dce7df;
  --text: #f4f7f5;
  --muted: #aab8af;
  --green: #119c59;
  --gold: #f0c94b;
  --red: #d84242;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(17,156,89,0.12), transparent 25%),
    radial-gradient(circle at top right, rgba(240,201,75,0.08), transparent 20%),
    var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 5rem 0; }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 700;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(15, 20, 18, 0.84);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--gold), var(--red));
  color: #111;
  font-weight: 900;
}

.nav nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav nav a {
  color: var(--soft);
  font-weight: 600;
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
  margin: 0.3rem 0 1rem;
  max-width: 12ch;
}

.hero h1 span { color: var(--gold); }
.hero-copy {
  font-size: 1.08rem;
  color: var(--soft);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.6rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green), #18b86c);
  color: white;
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  color: var(--muted);
  font-weight: 600;
}

.hero-card,
.info-card,
.contact-card,
.banner-box,
.features article,
.steps article,
.product-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
}

.hero-card {
  min-height: 480px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  padding: 1.25rem;
}

.hero-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 20, 18, 0.7);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
}

.pattern {
  height: 100%;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(17,156,89,0.95), rgba(17,156,89,0.25)),
    linear-gradient(45deg, rgba(216,66,66,0.8), rgba(216,66,66,0) 40%),
    linear-gradient(160deg, rgba(240,201,75,0.95), rgba(240,201,75,0.15));
  position: relative;
}

.pattern::before,
.pattern::after {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 24px;
  border: 2px dashed rgba(255,255,255,0.2);
}

.pattern::after {
  inset: 18%;
  border-style: solid;
}

.hero-stats {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.hero-stats > div {
  background: rgba(15, 20, 18, 0.72);
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-stats strong { display: block; font-size: 1.1rem; }
.hero-stats span { color: var(--muted); font-size: 0.92rem; }

.features {
  padding-bottom: 0.5rem;
}
.feature-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.steps { grid-template-columns: repeat(4, 1fr); }
.features article,
.steps article {
  padding: 1.25rem;
  border-radius: var(--radius);
}
.steps article span {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(240,201,75,0.16);
  color: var(--gold);
  font-weight: 800;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.section-head h2,
.banner-box h2,
.about h2,
.contact h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin: 0.2rem 0 0;
}

.filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--soft);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
.filter-btn.active {
  background: rgba(17,156,89,0.2);
  border-color: rgba(17,156,89,0.55);
  color: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.product-card {
  border-radius: 24px;
  overflow: hidden;
}

.product-image {
  min-height: 270px;
  padding: 1rem;
  display: flex;
  align-items: end;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}
.product-image .mock-dress {
  width: 100%;
  min-height: 240px;
  border-radius: 20px;
  position: relative;
}
.product-image .mock-dress::before {
  content: "";
  position: absolute;
  width: 34%;
  height: 34%;
  top: 14%;
  left: 33%;
  border-radius: 50% 50% 18% 18%;
  background: rgba(255,255,255,0.18);
}
.product-image .mock-dress::after {
  content: "";
  position: absolute;
  width: 62%;
  height: 58%;
  left: 19%;
  bottom: 8%;
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
  background: rgba(255,255,255,0.2);
}

.product-body {
  padding: 1.15rem;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}
.product-top h3 { margin: 0; font-size: 1.08rem; }
.price {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}
.product-body p {
  color: var(--muted);
  font-size: 0.96rem;
}
.sizes {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0.9rem 0 1rem;
}
.sizes span {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.86rem;
}
.product-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.product-actions a { flex: 1; }

.banner-box {
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.info-card,
.contact-card {
  border-radius: 24px;
  padding: 1.4rem;
}

.info-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--soft);
}

.contact-links {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}
.contact-links a { color: var(--soft); }

.contact-card label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: white;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem 0 2.2rem;
  color: var(--muted);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .hero-grid,
  .two-col,
  .product-grid,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid,
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav { flex-direction: column; align-items: start; padding: 0.85rem 0; }
  .nav nav { gap: 0.9rem; }
  .product-grid,
  .feature-grid,
  .steps,
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .banner-box,
  .section-head,
  .footer-wrap {
    flex-direction: column;
    align-items: start;
  }
}
