:root {
  --black: #09060a;
  --ink: #171019;
  --plum: #210e22;
  --pink: #ff4db8;
  --pink-2: #ff86d7;
  --hot: #f71c9f;
  --gold: #f1c35b;
  --cream: #fff6fb;
  --muted: #cbb9c6;
  --line: rgba(255, 255, 255, 0.13);
  --card: rgba(255, 255, 255, 0.075);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 77, 184, 0.28), transparent 32rem),
    radial-gradient(circle at 100% 15%, rgba(241, 195, 91, 0.12), transparent 28rem),
    linear-gradient(135deg, #080507, #160817 55%, #080507);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.top-notice {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  background: linear-gradient(90deg, rgba(255, 77, 184, 0.22), rgba(241, 195, 91, 0.18));
  border-bottom: 1px solid var(--line);
  color: #ffeaf7;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 46px);
  background: rgba(8, 5, 8, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 25px rgba(255, 77, 184, 0.2);
}
.brand span { font-size: 1.05rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a, .nav-cart {
  border: 0;
  background: transparent;
  color: #f9dced;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
}
.nav a:hover, .nav-cart:hover { background: rgba(255, 255, 255, 0.09); color: #fff; }
.nav-cart {
  background: linear-gradient(135deg, var(--pink), var(--hot));
  color: #fff;
  font-weight: 800;
}
.nav-cart span {
  display: inline-flex;
  min-width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero { padding: clamp(56px, 9vw, 120px) clamp(18px, 4vw, 46px) 48px; }
.hero-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 390px;
  gap: 34px;
  align-items: center;
}
.hero-copy-block {
  position: relative;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 80% 10%, rgba(255, 77, 184, 0.22), transparent 22rem);
  box-shadow: var(--shadow);
}
.hero-copy-block::after {
  content: "SHE";
  position: absolute;
  right: -20px;
  bottom: -52px;
  font-size: clamp(6rem, 16vw, 13rem);
  font-weight: 950;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 8vw, 6.2rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}
h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
h3 { margin-bottom: 9px; font-size: 1.12rem; }
p { color: #e6cddb; line-height: 1.7; }
.hero-copy { max-width: 650px; font-size: 1.08rem; }
.hero-actions, .trust-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-actions { margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn.primary {
  background: linear-gradient(135deg, var(--pink), var(--hot));
  color: #fff;
  box-shadow: 0 18px 40px rgba(247, 28, 159, 0.26);
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 22px 45px rgba(247, 28, 159, 0.38); }
.btn.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.065);
  color: #fff;
}
.btn.full { width: 100%; }
.trust-row { margin-top: 22px; }
.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: #fff0f9;
  font-size: 0.9rem;
  font-weight: 800;
}
.hero-card {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 420px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 77, 184, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}
.hero-card img {
  width: min(260px, 74%);
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
}
.hero-card p { text-align: center; color: #fff; font-weight: 800; }

.section { padding: 72px clamp(18px, 4vw, 46px); }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.compact-section { padding-top: 34px; }
.section-header { margin-bottom: 30px; }
.section-header.centered { text-align: center; max-width: 790px; }
.section-header.split {
  max-width: var(--max);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}
.feature-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card, .product-card, .notice-card, .support-form, .accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}
.feature-card { padding: 24px; }
.feature-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(255, 77, 184, 0.18);
  color: var(--gold);
  font-weight: 950;
}

.shop-tools { display: flex; flex-wrap: wrap; gap: 12px; }
.search-wrap, .filter-wrap, .shipping-estimator label, .support-form label, .modal form label {
  display: grid;
  gap: 7px;
  color: #ffe7f5;
  font-size: 0.88rem;
  font-weight: 800;
}
.search-wrap input, .filter-wrap select, .shipping-estimator select, .support-form input, .support-form textarea, .modal input, .modal textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: 13px 14px;
  outline: none;
}
.search-wrap input:focus, .filter-wrap select:focus, .support-form input:focus, .support-form textarea:focus, .modal input:focus, .modal textarea:focus {
  border-color: rgba(255, 77, 184, 0.85);
  box-shadow: 0 0 0 4px rgba(255, 77, 184, 0.14);
}
.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card { overflow: hidden; }
.product-media {
  display: grid;
  place-items: center;
  min-height: 190px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 134, 215, 0.26), transparent 9rem),
    linear-gradient(135deg, rgba(255, 77, 184, 0.18), rgba(241, 195, 91, 0.08));
}
.product-media img { width: 88px; height: 88px; border-radius: 22px; object-fit: cover; opacity: 0.96; }
.product-body { padding: 18px; }
.tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(241, 195, 91, 0.16);
  color: #ffe2a1;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-body p { min-height: 72px; font-size: 0.94rem; }
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
}
.price-row strong { font-size: 1.25rem; color: #fff; }
.price-row span { color: var(--muted); font-size: 0.86rem; }
.card-actions { display: grid; gap: 9px; }
.product-btn, .detail-btn {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 900;
}
.product-btn { background: #fff; color: var(--ink); }
.detail-btn { background: rgba(255, 255, 255, 0.08); color: #fff; border: 1px solid var(--line); }
.empty-state { text-align: center; font-weight: 800; }

.brand-band { padding: 10px clamp(18px, 4vw, 46px) 46px; }
.brand-band-card {
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}
.brand-band img {
  width: 100%;
  max-height: 230px;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}
.notice-card { padding: clamp(24px, 4vw, 42px); }
.shipping-estimator {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.18);
}
.shipping-estimator strong { color: #fff; }
.support-form {
  display: grid;
  gap: 16px;
  max-width: 760px;
  padding: clamp(20px, 4vw, 34px);
}
.hidden-field { display: none; }
.form-status { min-height: 24px; margin: 0; color: #fff; font-weight: 800; }
.accordion { overflow: hidden; max-width: 860px; }
.accordion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #fff;
  padding: 20px;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}
.accordion-panel { display: none; padding: 0 20px 18px; }
.accordion-panel.active { display: block; }
.accordion-item b { color: var(--gold); font-size: 1.4rem; }

.cart-drawer, .modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
}
.cart-drawer.active, .modal.active { display: block; }
.cart-panel {
  margin-left: auto;
  width: min(440px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #120914;
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cart-header, .cart-summary { padding: 20px; border-bottom: 1px solid var(--line); }
.cart-header { display: flex; align-items: center; justify-content: space-between; }
.cart-header h2 { font-size: 1.5rem; margin: 0; }
.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
}
.cart-items { flex: 1; overflow: auto; padding: 14px; }
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.055);
}
.cart-line h3 { margin: 0 0 4px; font-size: 0.98rem; }
.cart-line p { margin: 0; font-size: 0.9rem; }
.qty-row { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.qty-row button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
}
.remove-btn { border: 0; background: transparent; color: var(--pink-2); cursor: pointer; font-weight: 900; }
.cart-summary { border-top: 1px solid var(--line); border-bottom: 0; }
.cart-summary div { display: flex; justify-content: space-between; align-items: center; font-size: 1.12rem; }
.cart-summary small { display: block; color: var(--muted); margin-top: 8px; line-height: 1.5; }
.cart-panel > .btn, .cart-panel > .text-btn { margin: 0 20px 14px; }
.text-btn { border: 0; background: transparent; color: var(--pink-2); cursor: pointer; font-weight: 900; }
.modal { display: none; place-items: center; padding: 18px; overflow: auto; }
.modal.active { display: grid; }
.modal-card {
  width: min(640px, 100%);
  position: relative;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 34px);
  background: #130914;
  box-shadow: var(--shadow);
}
.modal-close { position: absolute; top: 16px; right: 16px; }
.modal h2 { font-size: 2rem; }
.modal-copy { max-width: 500px; }
.modal form { display: grid; gap: 13px; }

.site-footer {
  padding: 46px 18px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
}
.site-footer img { width: 72px; height: 72px; object-fit: cover; margin: 0 auto 14px; border-radius: 18px; }
.site-footer p { margin-bottom: 6px; }
.fine-print { color: var(--muted); font-size: 0.9rem; }
.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink), var(--hot));
  color: #fff;
  cursor: pointer;
  font-weight: 950;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}
.back-top.show { opacity: 1; pointer-events: auto; }

@media (max-width: 980px) {
  .hero-shell { grid-template-columns: 1fr; }
  .hero-card { min-height: auto; }
  .feature-grid, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-header.split { align-items: start; flex-direction: column; }
}

@media (max-width: 740px) {
  .top-notice { flex-direction: column; align-items: center; gap: 2px; text-align: center; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 75px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(13, 7, 14, 0.97);
    box-shadow: var(--shadow);
  }
  .nav.active { display: flex; }
  .nav a, .nav-cart { text-align: left; border-radius: 14px; }
  .hero { padding-top: 38px; }
  .hero-copy-block { padding: 26px; border-radius: 26px; }
  .hero-actions .btn { width: 100%; }
  .trust-row span { flex: 1; text-align: center; }
  .feature-grid, .product-grid { grid-template-columns: 1fr; }
  .shop-tools { width: 100%; }
  .search-wrap, .filter-wrap { width: 100%; }
  .brand-band img { max-height: 145px; }
  .cart-panel { width: 100%; }
}
