:root {
  --navy: #12344d;
  --navy-2: #0b2539;
  --pink: #cc0050;
  --pink-2: #ef4f8a;
  --cream: #fbf7f2;
  --paper: #ffffff;
  --muted: #667085;
  --line: rgba(18, 52, 77, 0.12);
  --shadow: 0 24px 70px rgba(18, 52, 77, 0.14);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.8;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 15%, rgba(204, 0, 80, 0.08), transparent 27%),
    radial-gradient(circle at 88% 35%, rgba(18, 52, 77, 0.08), transparent 28%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82),
      rgba(251, 247, 242, 0.35)
    );
  z-index: -1;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto;
}
.section-pad {
  padding: 92px 0;
}
.announcement {
  background: linear-gradient(90deg, var(--navy), var(--pink));
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 242, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand img {
  height: 58px;
  width: auto;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: rgba(18, 52, 77, 0.78);
}
.nav a {
  position: relative;
  transition: 0.2s;
}
.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: 0.25s;
}
.nav a:hover {
  color: var(--pink);
}
.nav a:hover::after {
  width: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  color: #fff;
  box-shadow: 0 18px 36px rgba(204, 0, 80, 0.23);
}
.btn-soft {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
  box-shadow: 0 14px 30px rgba(18, 52, 77, 0.08);
}
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 52px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 0, 80, 0.09);
  color: var(--pink);
  border: 1px solid rgba(204, 0, 80, 0.14);
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 900;
  font-size: 14px;
}
.presented {
  margin: 26px 0 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  font-size: 13px;
  direction: ltr;
  text-align: right;
}
.hero h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.94;
  letter-spacing: -2px;
  color: var(--navy-2);
}
.hero h1 span {
  display: block;
  color: var(--pink);
  font-weight: 950;
}
.hero h1 small {
  display: block;
  font-size: clamp(24px, 3vw, 44px);
  color: var(--navy);
  letter-spacing: 0.5px;
  margin-top: 13px;
  direction: ltr;
  text-align: right;
}
.hero-subtitle {
  font-size: 20px;
  color: #3c5265;
  max-width: 620px;
  margin: 28px 0 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 650px;
}
.trust-row div {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 14px 34px rgba(18, 52, 77, 0.06);
}
.trust-row strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
}
.trust-row span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.hero-visual {
  position: relative;
  min-height: 530px;
}
.hero-card {
  position: relative;
  border-radius: 38px;
  padding: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.68)
  );
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 36px auto auto -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(204, 0, 80, 0.12);
}
.hero-card img {
  width: 100%;
  aspect-ratio: 1.12/1;
  object-fit: cover;
  border-radius: 28px;
  background: #fff;
}
.price-ribbon {
  position: absolute;
  right: 34px;
  bottom: 34px;
  background: rgba(18, 52, 77, 0.88);
  color: #fff;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 14px 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}
.price-ribbon span {
  display: block;
  color: #ffd9e8;
  font-weight: 900;
}
.price-ribbon strong {
  display: block;
  font-size: 18px;
  direction: ltr;
  text-align: right;
}
.floating-card {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 900;
  box-shadow: 0 22px 45px rgba(18, 52, 77, 0.12);
}
.floating-one {
  top: 28px;
  left: 18px;
  color: var(--pink);
}
.floating-two {
  right: 4px;
  bottom: 54px;
  color: var(--navy);
}
.features {
  padding: 0 0 34px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 45px rgba(18, 52, 77, 0.07);
}
.feature-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: rgba(204, 0, 80, 0.09);
  color: var(--pink);
  border-radius: 50%;
  font-weight: 950;
}
.feature-card h3 {
  margin: 16px 0 8px;
  font-size: 22px;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
}
.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 34px;
}
.section-heading h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.15;
  margin: 16px 0 12px;
  color: var(--navy-2);
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.toolbar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(18, 52, 77, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(18, 52, 77, 0.14);
}
.product-media {
  position: relative;
  background: linear-gradient(135deg, #fff, #f7edf2);
  overflow: hidden;
}
.product-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.04);
}
.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--pink);
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  box-shadow: 0 12px 28px rgba(204, 0, 80, 0.24);
}
.product-body {
  padding: 20px;
}
.product-code {
  display: inline-block;
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  direction: ltr;
}
.product-body h3 {
  margin: 7px 0 8px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--navy-2);
}
.product-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.size-chips,
.color-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.size-chips span,
.color-chips span {
  border: 1px solid var(--line);
  background: #fbfbfc;
  color: var(--navy);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 850;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0 18px;
}
.price-row del {
  color: #98a2b3;
  font-weight: 800;
}
.price-row strong {
  color: var(--pink);
  font-size: 22px;
  font-weight: 950;
}
.card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.card-actions .btn {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 14px;
}
.details-btn {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  padding: 8px 13px;
}
.story {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.58)
  );
}
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.story-panel {
  background: var(--navy);
  color: #fff;
  border-radius: 38px;
  padding: 46px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.story-panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(204, 0, 80, 0.28);
  left: -80px;
  bottom: -80px;
}
.story-panel .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd6e6;
  border-color: rgba(255, 255, 255, 0.16);
}
.story-panel h2 {
  margin: 18px 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.14;
}
.story-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  margin: 0 0 18px;
}
.check-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #fff;
  font-weight: 800;
}
.check-list li::before {
  content: "✓";
  color: #fff;
  background: var(--pink);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 4px;
  font-size: 13px;
}
.story-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.story-card img {
  width: 100%;
  border-radius: 28px;
  background: #f5f5f5;
  aspect-ratio: 1.3/1;
  object-fit: contain;
}
.size-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(18, 52, 77, 0.08);
  overflow: auto;
}
.size-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.size-table th,
.size-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.size-table th {
  background: rgba(18, 52, 77, 0.06);
  font-size: 16px;
  color: var(--navy);
}
.size-table td:first-child {
  font-weight: 950;
  color: var(--pink);
  font-size: 18px;
}
.cta-band {
  padding-top: 40px;
  padding-bottom: 40px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 38px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.cta-inner h2 {
  margin: 12px 0 4px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
}
.cta-inner p {
  margin: 0;
  color: var(--muted);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: start;
}
.side-heading {
  text-align: right;
  margin: 0;
}
.faq-list {
  display: grid;
  gap: 12px;
}
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 16px 36px rgba(18, 52, 77, 0.06);
}
summary {
  cursor: pointer;
  font-weight: 950;
  font-size: 18px;
  color: var(--navy-2);
}
details p {
  margin: 12px 0 0;
  color: var(--muted);
}
.footer {
  padding: 46px 0;
  background: var(--navy);
  color: #fff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  padding: 8px;
  margin-bottom: 12px;
}
.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}
.footer-links a:hover {
  color: #ffd6e6;
}
.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 60;
  background: #25d366;
  color: #fff;
  min-width: 92px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.modal.is-open {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 28, 0.68);
  backdrop-filter: blur(8px);
}
.modal-content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 34px;
  width: min(960px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}
.modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 28px;
}
.modal-gallery {
  display: grid;
  gap: 12px;
}
.modal-gallery > img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px;
  background: #f6f7f9;
}
.modal-thumbs {
  display: flex;
  gap: 10px;
  overflow: auto;
}
.modal-thumbs button {
  border: 2px solid transparent;
  background: #fff;
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  flex: 0 0 72px;
}
.modal-thumbs button.active {
  border-color: var(--pink);
}
.modal-thumbs img {
  width: 72px;
  height: 88px;
  object-fit: cover;
}
.modal-info {
  padding: 18px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-info h3 {
  font-size: 34px;
  line-height: 1.2;
  margin: 10px 0;
  color: var(--navy-2);
}
.modal-info p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.modal-price {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 22px 0;
}
.modal-price del {
  color: #98a2b3;
  font-weight: 850;
  font-size: 18px;
}
.modal-price strong {
  color: var(--pink);
  font-size: 30px;
  font-weight: 950;
}
.product-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 9px 0;
  color: var(--muted);
}
.product-meta strong {
  color: var(--navy);
}
.modal-order {
  margin-top: 24px;
  align-self: flex-start;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.empty-state {
  grid-column: 1/-1;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 34px;
  color: var(--muted);
}
@media (max-width: 1024px) {
  .hero-grid,
  .story-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: auto;
    max-width: 680px;
    margin-inline: auto;
    width: 100%;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .side-heading {
    text-align: center;
    margin: 0 auto 10px;
  }
}
@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--container));
  }
  .section-pad {
    padding: 64px 0;
  }
  .announcement {
    font-size: 12px;
  }
  .header-inner {
    min-height: 70px;
    gap: 10px;
  }
  .brand img {
    height: 46px;
  }
  .nav {
    display: none;
  }
  .header-cta {
    min-height: 42px;
    padding: 8px 14px;
    font-size: 13px;
  }
  .hero {
    padding-top: 48px;
  }
  .hero-grid {
    gap: 32px;
  }
  .hero h1 {
    font-size: 58px;
    letter-spacing: -1px;
  }
  .hero h1 small {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 17px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .trust-row {
    grid-template-columns: 1fr;
  }
  .hero-card {
    border-radius: 30px;
    padding: 10px;
  }
  .hero-card img {
    border-radius: 22px;
    aspect-ratio: 1/1;
  }
  .price-ribbon {
    right: 22px;
    bottom: 22px;
    border-radius: 18px;
  }
  .floating-card {
    display: none;
  }
  .feature-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .feature-card,
  .story-panel {
    padding: 26px;
    border-radius: 26px;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .section-heading p {
    font-size: 16px;
  }
  .cta-inner {
    display: block;
    padding: 26px;
    border-radius: 28px;
  }
  .cta-inner .btn {
    width: 100%;
    margin-top: 22px;
  }
  .footer-inner {
    display: block;
    text-align: center;
  }
  .footer-logo {
    margin-inline: auto;
  }
  .footer-links {
    justify-content: center;
    margin-top: 18px;
  }
  .modal-grid {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .modal-info h3 {
    font-size: 28px;
  }
  .modal-content {
    border-radius: 24px;
  }
  .whatsapp-float {
    left: 12px;
    bottom: 12px;
    height: 48px;
    min-width: 86px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(0.35);
}
#heroBadge:empty {
  display: none;
}
