:root {
  --primary: #e91e63;
  --primary-dark: #b9154d;
  --secondary: #009688;
  --accent: #ffc107;
  --ink: #1f2933;
  --muted: #667085;
  --line: #eceff3;
  --soft: #fff5f8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(31, 41, 51, 0.12);
  --radius: 8px;
  --hero-overlay: linear-gradient(90deg, rgba(31, 41, 51, 0.82), rgba(233, 30, 99, 0.48));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(236, 239, 243, 0.9);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(31, 41, 51, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong,
.section-heading h2,
.hero h1,
.about h2,
.wholesale h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.brand strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #344054;
  font-weight: 500;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #f06292);
  box-shadow: 0 12px 26px rgba(233, 30, 99, 0.28);
}

.btn-light {
  color: var(--primary);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.15);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
}

.btn-large {
  min-height: 54px;
  padding-inline: 28px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--primary);
  background: var(--white);
}

.hero {
  min-height: auto;
  height: auto;
  aspect-ratio: 1080 / 1350;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 76px;
  padding: 0;
  color: var(--white);
  background: #f8fafc;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-overlay);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.65s ease, transform 1.1s ease;
}

.hero-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 768px) {
  .hero {
    min-height: 92vh;
    aspect-ratio: auto;
    margin-top: 0;
    padding: 120px 0 72px;
  }

  .hero-media img {
    object-fit: cover;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 650px);
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

.hero.hero-hide-copy .hero-content {
  display: none;
}

.hero-badge,
.eyebrow,
.section-heading span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--primary);
  background: var(--soft);
  border: 1px solid rgba(233, 30, 99, 0.15);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-badge {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero h1 {
  margin: 18px 0 18px;
  max-width: 620px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.13rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(6px);
}

.hero-controls button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(15, 23, 42, 0.16);
  cursor: pointer;
  font-size: 0.78rem;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.benefits {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #fff7fa, #f0fffc);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px 0;
}

.benefits-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.benefits i {
  color: var(--secondary);
  font-size: 1.45rem;
}

.section {
  padding: clamp(64px, 9vw, 104px) 0;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading span {
  margin: 0 auto 12px;
}

.section-heading h2,
.about h2,
.wholesale h2 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.04;
}

.section-heading p,
.about p,
.wholesale p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(31, 41, 51, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #f6f7f9;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease, opacity 0.2s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.gallery-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  pointer-events: none;
}

.gallery-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--white);
  background: rgba(15, 23, 42, 0.42);
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-controls button:hover {
  background: rgba(233, 30, 99, 0.82);
  transform: scale(1.04);
}

.gallery-count {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.62);
  font-size: 0.75rem;
  font-weight: 800;
}

.product-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--white);
  background: var(--primary);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.product-body {
  padding: 20px;
}

.product-body h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.product-body p {
  min-height: 54px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.price-row del {
  color: #98a2b3;
  font-size: 0.92rem;
}

.price-row strong {
  color: var(--primary);
  font-size: 1.35rem;
}

.color-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.color-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #344054;
  background: var(--white);
  cursor: pointer;
}

.color-option.is-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.swatch {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 1px solid rgba(31, 41, 51, 0.16);
  border-radius: 50%;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.buy-button {
  min-height: 42px;
  padding: 10px 16px;
}

.section-action {
  margin-top: 42px;
  text-align: center;
}

.about {
  background: linear-gradient(90deg, #fff7fa, #f5fffd);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 48px;
}

.split > img {
  width: 100%;
  height: min(560px, 72vw);
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #344054;
}

.check-list i {
  color: var(--secondary);
}

.wholesale {
  color: var(--white);
  background: var(--white);
}

.wholesale-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 42px;
  padding: clamp(32px, 5vw, 54px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
}

.wholesale .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.18);
}

.wholesale p {
  max-width: 580px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.88);
}

.wholesale-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.wholesale-images img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
}

.wholesale-images img:nth-child(2) {
  margin-top: 30px;
}

.contact {
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-item {
  min-height: 185px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  box-shadow: 0 10px 30px rgba(31, 41, 51, 0.06);
}

.contact-item i {
  color: var(--primary);
  font-size: 2rem;
}

.contact-item span {
  color: var(--muted);
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #171923;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  max-width: 145px;
  margin-bottom: 12px;
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 8px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 19;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.32);
  font-size: 1.8rem;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: stretch;
  justify-content: flex-end;
}

.checkout-modal.is-open {
  display: flex;
}

.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(5px);
}

.checkout-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  height: 100%;
  overflow-y: auto;
  padding: 30px;
  background: var(--white);
  box-shadow: -24px 0 60px rgba(15, 23, 42, 0.24);
}

.checkout-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #344054;
  background: var(--white);
  cursor: pointer;
}

.checkout-heading {
  margin-bottom: 22px;
}

.checkout-heading span {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-heading h2 {
  margin: 6px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
}

.checkout-product {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.checkout-product img {
  width: 96px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
}

.checkout-product h3,
.checkout-product p {
  margin: 0;
}

.checkout-product p {
  color: var(--muted);
}

.checkout-form fieldset {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.checkout-form legend {
  margin-bottom: 12px;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  color: #344054;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-grid input,
.form-grid select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.form-grid input:focus,
.form-grid select:focus {
  outline: 3px solid rgba(233, 30, 99, 0.14);
  border-color: var(--primary);
}

.checkout-actions {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.shipping-options {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.shipping-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  text-align: left;
  cursor: pointer;
}

.shipping-option.is-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.shipping-option small {
  display: block;
  color: var(--muted);
}

.checkout-total {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--soft);
}

.checkout-total div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.checkout-total strong {
  color: var(--primary);
  font-size: 1.15rem;
}

.checkout-message {
  min-height: 22px;
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
}

.checkout-message.is-error {
  color: #b42318;
}

.checkout-submit {
  width: 100%;
}

@media (max-width: 940px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links.is-open {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    padding: 14px;
    border-radius: var(--radius);
  }

  .nav-links.is-open a:hover {
    background: var(--soft);
  }

  .nav-links a::after {
    display: none;
  }

  .product-grid,
  .contact-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .wholesale-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .benefits-grid,
  .product-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid div {
    justify-content: flex-start;
  }

  .product-body p {
    min-height: auto;
  }

  .form-grid,
  .checkout-product {
    grid-template-columns: 1fr;
  }

  .checkout-panel {
    padding: 24px 16px;
  }

  .wholesale-images img {
    height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
