* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #111827;
  background: #fff7fb;
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

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

.app-shell {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 177, 200, 0.55), transparent 24%),
    radial-gradient(circle at top right, rgba(196, 181, 253, 0.38), transparent 22%),
    linear-gradient(180deg, #fff7fb 0%, #ffffff 34%, #fff5f8 100%);
}

.app-shell::before {
  content: "";
  position: absolute;
  inset: 96px 0 auto;
  height: 520px;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 128, 170, 0.22), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(166, 139, 250, 0.2), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 241, 246, 0.18));
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #f1f1f1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(12px);
}

.site-nav {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #111827;
  min-width: 0;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  background-color: #ffffff;
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #f59e0b 0%, #a21caf 35%, #ec4899 65%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #4b5563;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.app-main {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px 0;
}

.hero-stage {
  position: relative;
  margin-bottom: 28px;
  padding: 14px 14px 18px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 248, 251, 0.9)),
    radial-gradient(circle at top left, rgba(255, 162, 186, 0.22), transparent 28%);
  box-shadow:
    0 30px 80px rgba(255, 190, 207, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  top: -68px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188, 160, 255, 0.34), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: 42px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 166, 192, 0.28), transparent 66%);
  pointer-events: none;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 480px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

.hero-content {
  padding: 72px 32px;
  max-width: 680px;
}

.hero-badge,
.section-kicker,
.offer-badge,
.contact-kicker,
.legal-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge {
  margin-bottom: 16px;
  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 12px;
}

.hero-title {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
}

.hero-subtitle {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.hero-button,
.category-button,
.offer-button,
.back-button,
.section-tab {
  border: none;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.hero-button:hover,
.category-button:hover,
.offer-button:hover,
.back-button:hover,
.section-tab:hover {
  transform: translateY(-2px);
}

.hero-button {
  border-radius: 999px;
  padding: 14px 24px;
  background-color: #ffffff;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-dots {
  position: absolute;
  left: 32px;
  bottom: 24px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.is-active {
  width: 34px;
  background-color: #ffffff;
}

.content-section {
  padding: 48px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.section-header.section-header-left {
  display: block;
  margin-bottom: 24px;
}

.section-kicker,
.legal-kicker {
  margin-bottom: 8px;
  color: #ff4f81;
}

.section-title,
.offer-title,
.contact-heading h2,
.collection-title,
.legal-title {
  margin: 0;
  color: #111827;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.section-description {
  margin: 0;
  color: #6b7280;
  max-width: 360px;
  line-height: 1.6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card,
.product-card,
.collection-card {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.card {
  background-color: #ffffff;
}

.category-card {
  background-color: var(--card-bg, #ffffff);
}

.card-media,
.product-media,
.collection-media {
  background-size: cover;
  background-position: center;
}

.card-media {
  height: 220px;
}

.card-body,
.product-body {
  padding: 20px;
}

.card-heading {
  margin: 0 0 8px;
  color: #111827;
  font-size: 1.2rem;
}

.card-text,
.product-text,
.collection-section-text,
.collection-item-text,
.legal-paragraph {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.category-button {
  margin-top: 16px;
  border-radius: 999px;
  padding: 11px 16px;
  color: #ffffff;
  font-weight: 700;
}

.product-card {
  background-color: #ffffff;
}

.product-media-wrap {
  position: relative;
}

.product-media {
  height: 260px;
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
}

.product-category {
  margin: 0 0 8px;
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-title {
  margin: 0 0 12px;
  color: #111827;
  font-size: 1.05rem;
  line-height: 1.4;
}

.offer-wrapper {
  padding: 24px 0 0;
}

.offer-banner {
  border-radius: 24px;
  padding: 32px;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(255, 117, 140, 0.28);
}

.offer-badge {
  margin-bottom: 14px;
  background-color: rgba(255, 255, 255, 0.18);
  font-size: 12px;
}

.offer-title {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.offer-subtitle {
  max-width: 620px;
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.offer-button {
  border-radius: 999px;
  padding: 14px 22px;
  background-color: #ffffff;
  color: #ff4f81;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ── Contact Section ── */

.contact-section {
  padding: 64px 0 10px;
}

.contact-shell {
  position: relative;
  padding: 58px 34px 62px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 250, 251, 0.98), rgba(245, 248, 255, 0.96)),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.9), transparent 48%);
  border: 1px solid rgba(229, 216, 221, 0.9);
  box-shadow: 0 26px 55px rgba(72, 49, 59, 0.1);
  overflow: hidden;
}

.contact-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 111, 97, 0.08), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.08), transparent 30%);
  pointer-events: none;
}

.contact-heading,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.contact-kicker {
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.85);
  color: #ff6237;
  font-size: 0.82rem;
}

.contact-heading h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  line-height: 1.05;
}

.contact-heading p {
  margin: 18px auto 0;
  max-width: 680px;
  color: #5b4d48;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-form {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  padding: 30px;
  border: 1px solid rgba(230, 215, 209, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 48px rgba(31, 41, 55, 0.08);
  backdrop-filter: blur(10px);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-group:nth-child(3),
.form-group:nth-child(4),
.form-group:nth-child(5),
.form-group:nth-child(6),
.contact-actions {
  grid-column: 1 / -1;
}

.form-group label {
  color: #2f2730;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #e7dce1;
  border-radius: 14px;
  background: #ffffff;
  color: #241d22;
  padding: 16px 18px;
  font-size: 1rem;
  line-height: 1.35;
  box-sizing: border-box;
  outline: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85), inset 0 1px 2px rgba(31, 41, 55, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8b7f87;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff6f61;
  box-shadow: 0 0 0 4px rgba(255, 111, 97, 0.14), 0 10px 24px rgba(31, 41, 55, 0.07);
  transform: translateY(-1px);
}

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"],
.checkbox-group input[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-group input[aria-valid="true"],
.form-group select[aria-valid="true"],
.form-group textarea[aria-valid="true"] {
  border-color: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 136px;
}

.phone-wrapper {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 14px;
}

.phone-wrapper select {
  width: 100%;
  cursor: pointer;
}

.phone-wrapper input {
  min-width: 0;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #eadfe4;
  border-radius: 14px;
  background: #fffafa;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #ff6f61;
}

.checkbox-group label {
  font-size: 0.95rem;
  font-weight: 400;
  color: #52433d;
  line-height: 1.6;
}

.contact-error {
  margin: 0;
  color: #b91c1c;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: contact-error-in 0.18s ease;
}

.contact-error::before {
  content: "⚠";
  font-size: 0.8rem;
  flex-shrink: 0;
}

.contact-error::before {
  content: "!";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fee2e2;
  color: #b91c1c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}

@keyframes contact-error-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-char-counter {
  text-align: right;
  font-size: 0.8rem;
  color: #9ca3af;
  margin: -4px 0 0;
}

.contact-char-counter.is-near-limit {
  color: #d97706;
}

.contact-char-counter.is-at-limit {
  color: #dc2626;
  font-weight: 700;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 4px;
}

.submit-btn {
  border: none;
  cursor: pointer;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff7a59, #e84a5f);
  color: #ffffff;
  min-width: 190px;
  padding: 16px 30px;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(232, 74, 95, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(232, 74, 95, 0.3);
}

.submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.form-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.contact-status {
  margin: 0;
  font-weight: 600;
}

.contact-status-success {
  color: #166534;
}

.contact-status-error {
  color: #b91c1c;
}

/* ── Footer ── */

.site-footer {
  margin-top: 56px;
  background-color: #111827;
  color: #ffffff;
  border-radius: 28px 28px 0 0;
  padding: 40px 24px 24px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer-heading {
  margin: 0 0 12px;
}

.footer-brand {
  font-size: 1.5rem;
}

.footer-text,
.footer-contact {
  margin: 0;
  line-height: 1.7;
  color: #d1d5db;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-links button {
  color: #d1d5db;
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font-size: inherit;
}

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9ca3af;
  font-size: 0.9rem;
  text-align: center;
  display: grid;
  gap: 8px;
}

.footer-signature {
  color: #f9fafb;
  font-weight: 700;
  letter-spacing: 0;
}

/* ── Collection & Legal ── */

.collection-page,
.legal-page {
  padding: 24px 0 48px;
}

.back-button {
  border-radius: 999px;
  padding: 12px 18px;
  background-color: #111827;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 22px;
}

.collection-kicker {
  margin: 0 0 8px;
  color: #db2777;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.collection-title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
}

.collection-subtitle {
  margin: 0 0 12px;
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.7;
}

.collection-intro {
  margin: 0;
  color: #4b5563;
  line-height: 1.8;
  font-size: 1rem;
}

.section-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.section-tab {
  border-radius: 999px;
  padding: 12px 18px;
  background: #ffffff;
  color: #334155;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.section-tab.is-active {
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.collection-panel {
  border-radius: 24px;
  background-color: #ffffff;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.collection-section-title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: #111827;
}

.collection-section-text {
  margin-bottom: 16px;
  line-height: 1.7;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.collection-card {
  background-color: #f8fafc;
  border-radius: 20px;
  box-shadow: none;
}

.collection-media {
  height: 240px;
  background-color: #e5e7eb;
}

.collection-item-body {
  padding: 14px 16px;
}

.collection-item-title {
  margin: 0 0 6px;
  color: #111827;
  font-size: 1rem;
}

.collection-item-text {
  color: #64748b;
  font-size: 0.9rem;
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
}

.back-link {
  border: none;
  background: transparent;
  color: #ff4f81;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  margin-bottom: 24px;
  padding: 0;
}

.legal-kicker {
  margin: 0 0 6px;
}

.legal-title {
  margin: 0 0 8px;
  font-size: 2rem;
}

.legal-updated {
  margin: 0 0 32px;
  color: #9ca3af;
  font-size: 0.85rem;
}

.legal-section {
  margin-bottom: 28px;
}

.legal-section-title {
  margin: 0 0 10px;
  color: #111827;
  font-size: 1.1rem;
}

.legal-paragraph {
  margin: 0 0 10px;
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ── WhatsApp Button ── */

.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background-color: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.18);
  font-size: 1rem;
  font-weight: 900;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .site-nav {
    padding: 16px 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 12px;
    justify-content: flex-start;
  }

  .app-main {
    padding: 8px 14px 0;
  }

  .hero-stage {
    padding: 12px 12px 16px;
    border-radius: 26px;
  }

  .hero-slider {
    min-height: 420px;
  }

  .hero-content {
    padding: 48px 20px 88px;
  }

  .section-header {
    align-items: flex-start;
  }

  .contact-section {
    padding-top: 44px;
  }

  .contact-shell {
    padding: 34px 14px;
    border-radius: 22px;
  }

  .contact-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .contact-heading h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .contact-heading p {
    font-size: 1rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 18px;
  }

  .phone-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .phone-wrapper select {
    width: 100%;
  }

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

  .site-footer {
    border-radius: 24px 24px 0 0;
  }

  .whatsapp-button {
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }
}
