* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --fg: #1e2937;
  --muted: #64748b;
  --muted2: #475569;
  --border: #e2e8f0;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --accent-bg: #f0fdfa;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 17px;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
}
.brand-name {
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand-tag {
  font-size: 11px;
  color: var(--muted);
  margin-top: -3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
}
.nav-links a {
  font-weight: 500;
  transition: color 0.1s ease;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  border-radius: 16px;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
}
.btn-ghost:hover {
  background: var(--accent-bg);
}
.btn-outline {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg);
}
.btn-outline:hover {
  border-color: #cbd5e1;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}
.btn-md {
  padding: 10px 20px;
  font-size: 15px;
}
.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}
.btn-block {
  width: 100%;
}
.cart-badge {
  margin-left: 4px;
  padding: 2px 8px;
  font-size: 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
}
.hidden {
  display: none !important;
}
.hero {
  padding: 64px 0 48px;
}
.hero-inner {
  max-width: 760px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}
h1 {
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 24px;
}
.lead {
  font-size: 19px;
  color: var(--muted2);
  max-width: 580px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.hero-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}
.hero-img {
  margin-top: 40px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.section {
  padding: 64px 0;
  scroll-margin-top: 90px;
}
.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 6px;
}
h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.section-note {
  font-size: 14px;
  color: var(--muted);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.chip {
  padding: 9px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.1s ease;
}
.chip.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.grid-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.06);
}
.card-img {
  height: 200px;
  overflow: hidden;
  cursor: pointer;
  background: #f1f5f9;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body {
  padding: 20px;
}
.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.card-name {
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
}
.tag {
  padding: 4px 12px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
}
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  gap: 8px;
}
.price {
  font-size: 22px;
  font-weight: 600;
}
.grid-gifts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gift-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  background: var(--surface);
}
.gift-img {
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #f1f5f9;
}
.gift-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gift-name {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 4px;
}
.gift-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.gift-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.about-text {
  max-width: 660px;
}
.about-text p {
  color: var(--muted2);
  font-size: 18px;
  margin-bottom: 16px;
}
.stats {
  margin-top: 32px;
  display: flex;
  gap: 40px;
  font-size: 14px;
  flex-wrap: wrap;
}
.stats strong {
  font-size: 18px;
}
.steps {
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
.step {
  display: flex;
  gap: 16px;
  font-size: 16px;
}
.step-num {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 2px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-item {
  margin-bottom: 24px;
}
.contact-label {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 22px;
  font-weight: 500;
}
.contact-value:hover {
  color: var(--accent);
}
.contact-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.form-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 32px;
}
.form-title {
  font-weight: 500;
  margin-bottom: 16px;
}
.input,
.textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  font-size: 17px;
  font-family: inherit;
  background: var(--surface);
  color: var(--fg);
}
.input:focus,
.textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: -1px;
}
.field {
  margin-bottom: 16px;
}
.label {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}
.notice {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 16px 24px;
  border-radius: 16px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 16px;
  text-align: center;
}
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-inner {
  padding: 32px 0;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-nap {
  padding: 0 0 28px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 0.6);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal {
  background: var(--surface);
  border-radius: 24px;
  max-width: 640px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  padding: 32px;
  animation: pop 0.2s ease-out;
}
@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.modal-close {
  border: none;
  background: none;
  font-size: 30px;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover {
  color: var(--muted);
}
.modal-img {
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #f1f5f9;
}
.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-name {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.modal-price {
  font-size: 30px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}
.modal-desc {
  font-size: 17px;
  color: var(--muted2);
  margin-bottom: 28px;
}
.modal-actions {
  display: flex;
  gap: 12px;
}
.modal-actions .btn {
  flex: 1;
}
.drawer-wrap {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 0.6);
  z-index: 100;
}
.drawer {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  animation: pop 0.2s ease-out;
}
.drawer-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-title {
  font-size: 22px;
  font-weight: 600;
}
.drawer-items {
  flex: 1;
  overflow: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--muted);
}
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  gap: 10px;
}
.cart-row-name {
  font-weight: 500;
  font-size: 15px;
}
.cart-row-age {
  font-size: 13px;
  color: var(--muted);
}
.cart-row-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-row-price {
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
.cart-remove {
  border: none;
  background: none;
  color: #94a3b8;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}
.cart-remove:hover {
  color: #ef4444;
}
.drawer-foot {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.drawer-total {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 16px;
  font-size: 14px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
  z-index: 200;
}
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.cookie-text {
  font-size: 14px;
  color: var(--muted2);
  max-width: 720px;
}
.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}
.success-box {
  text-align: center;
  padding: 24px 0;
}
.success-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.success-text {
  font-size: 17px;
  color: var(--muted2);
}
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}
.page-content h1 {
  font-size: 34px;
  margin-bottom: 28px;
}
.page-content h2 {
  font-size: 22px;
  margin: 32px 0 12px;
}
.page-content p,
.page-content li {
  color: var(--muted2);
  font-size: 16px;
  margin-bottom: 12px;
}
.page-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 15px;
}
.page-content th,
.page-content td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
  color: var(--muted2);
}
.page-content th {
  background: var(--bg);
  color: var(--fg);
}
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .grid-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-gifts {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 26px;
  }
  .grid-products {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav-inner {
    height: 68px;
  }
  .hero {
    padding: 40px 0 32px;
  }
  .section {
    padding: 44px 0;
  }
}
