:root {
  --bg: #09050b;
  --surface: rgba(20, 11, 24, 0.92);
  --text: #fff3f8;
  --muted: #d4b8c7;
  --primary: #ff4fa0;
  --primary-dark: #d91f79;
  --accent-gold: #f2c17b;
  --accent-blue: #52a8ff;
  --border: rgba(242, 193, 123, 0.48);
  --border-soft: rgba(255, 214, 153, 0.22);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 79, 160, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(82, 168, 255, 0.15), transparent 28%),
    radial-gradient(circle at bottom center, rgba(242, 193, 123, 0.10), transparent 35%),
    var(--bg);
}

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

code {
  color: #ffd2e8;
}

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

.topbar {
  background:
    linear-gradient(135deg, rgba(255, 79, 160, 0.18), transparent 32%),
    linear-gradient(135deg, #120915, #09050b 62%);
  color: #fff;
  padding: 40px 0;
  border-bottom: 1px solid rgba(242, 193, 123, 0.34);
}

.topbar__content {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.topbar__brand {
  display: flex;
  gap: 18px;
  align-items: center;
}

.topbar__logo {
  width: clamp(92px, 12vw, 150px);
  height: auto;
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 12px rgba(242, 193, 123, 0.18));
}

.topbar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.topbar__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(242, 193, 123, 0.42);
  background: rgba(242, 193, 123, 0.10);
  color: #ffefc8;
  font-size: 0.92rem;
  line-height: 1;
}

.badge {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 79, 160, 0.16);
  color: #ffd2e8;
  font-size: 0.9rem;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.subtitle,
.hero p,
.section__header p,
.contact p,
.footer p,
.description {
  color: var(--muted);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 24px rgba(255, 79, 160, 0.28);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #ff68af, var(--primary-dark));
  transform: translateY(-1px);
}

.whatsapp-btn--large {
  min-width: 220px;
}

.hero {
  padding: 28px 0 12px;
}

.hero__content {
  background:
    linear-gradient(180deg, rgba(255, 79, 160, 0.10), transparent 45%),
    linear-gradient(135deg, rgba(82, 168, 255, 0.07), transparent 32%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 0 0 1px var(--border-soft), var(--shadow);
}

.section {
  padding: 26px 0;
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 16px;
}

.section__header h3 {
  margin-bottom: 4px;
  font-size: 1.5rem;
}

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

.product-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.product-carousel__viewport {
  overflow: hidden;
  border-radius: 18px;
}

.product-carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px;
  scrollbar-width: none;
}

.product-carousel__track::-webkit-scrollbar {
  display: none;
}

.product-carousel__track .card {
  flex: 0 0 min(320px, 86vw);
  scroll-snap-align: start;
}

.product-carousel__nav {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(242, 193, 123, 0.55);
  border-radius: 999px;
  background: rgba(20, 11, 24, 0.92);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 1px rgba(255, 214, 153, 0.22), var(--shadow);
}

.product-carousel__nav:hover {
  background: rgba(242, 193, 123, 0.16);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border-soft), var(--shadow);
  display: flex;
  flex-direction: column;
}

.card__image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, rgba(255, 79, 160, 0.15), rgba(82, 168, 255, 0.08));
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 10px;
  cursor: zoom-in;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff7fb;
}

.price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.description {
  line-height: 1.5;
  min-height: 3rem;
}

.card__actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(255, 79, 160, 0.10), transparent 35%),
    linear-gradient(135deg, rgba(82, 168, 255, 0.06), transparent 35%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 0 0 1px var(--border-soft), var(--shadow);
}

.footer {
  padding: 20px 0 34px;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__image {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(242, 193, 123, 0.34);
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242, 193, 123, 0.45);
  border-radius: 999px;
  background: rgba(20, 11, 24, 0.92);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1000;
}

.lightbox__close:hover {
  background: rgba(242, 193, 123, 0.16);
}

@media (max-width: 720px) {
  .topbar__content,
  .section__header,
  .contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar__brand {
    align-items: flex-start;
  }

  .topbar__tags {
    gap: 8px;
  }

  .product-carousel {
    grid-template-columns: 1fr;
  }

  .product-carousel__nav {
    display: none;
  }
}
