@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&family=Space+Grotesk:wght@400;600&display=swap");

:root {
  --bg: #f6f3ea;
  --paper: #fffdfa;
  --ink: #1b2a2f;
  --muted: #52615b;
  --accent: #6cb75f;
  --accent-2: #ff9f43;
  --accent-3: #38c0c5;
  --shadow: 0 24px 70px rgba(17, 71, 55, 0.14);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, rgba(56, 192, 197, 0.07), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255, 159, 67, 0.08), transparent 32%),
    radial-gradient(circle at 60% 70%, rgba(108, 183, 95, 0.08), transparent 35%),
    var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Space Grotesk", "Trebuchet MS", sans-serif;
  min-height: 100vh;
  background-attachment: fixed;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto 96px;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(246, 243, 234, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-weight: 600;
}

.nav-links a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 192, 197, 0.12);
  color: #11635f;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
  margin: 48px 0 32px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 52px);
  letter-spacing: -0.04em;
  margin: 12px 0;
}

.hero p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fdfbf5, #f6f3ea);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(108, 183, 95, 0.12), rgba(56, 192, 197, 0.1));
  filter: blur(4px);
  z-index: 0;
}

.hero-visual img,
.hero-visual .badge-stack {
  position: relative;
  z-index: 1;
}

.badge-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.badge {
  align-self: flex-start;
  background: white;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--accent);
  color: white;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px) scale(1.01);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink);
  box-shadow: none;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 12px 0 16px;
  flex-wrap: wrap;
}

.section-title h2 {
  margin: 0;
  letter-spacing: -0.03em;
}

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

.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 183, 95, 0.4);
  box-shadow: 0 28px 80px rgba(17, 71, 55, 0.18);
}

.card .tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-2);
  color: #3e2a11;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
}

.product-card {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
}

.product-visual {
  border-radius: 16px;
  background: radial-gradient(circle at 28% 22%, rgba(56, 192, 197, 0.15), transparent 45%),
    radial-gradient(circle at 72% 16%, rgba(255, 159, 67, 0.2), transparent 50%),
    linear-gradient(120deg, #ffffff, #fff8ec);
  padding: 12px;
  /*aspect-ratio: 4 / 3;*/
  display: grid;
  place-items: center;
  position: relative;
}

.product-visual span {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(27, 42, 47, 0.84);
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-meta h3 {
  margin: 0;
}

.price {
  font-weight: 800;
  font-size: 20px;
}

.pill-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27, 42, 47, 0.04);
  padding: 6px 10px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--muted);
  font-size: 13px;
}

.shops-grid .card {
  padding-top: 46px;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, #38c0c5, #ff9f43);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  position: absolute;
  top: -18px;
  left: 16px;
  box-shadow: var(--shadow);
}

.shop-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--muted);
  margin-top: 6px;
}

.detail-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin: 36px 0;
  align-items: center;
}

.detail-media {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #fff4e5);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.detail-media .halo {
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(108, 183, 95, 0.16), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(56, 192, 197, 0.14), transparent 40%);
  filter: blur(2px);
  z-index: 0;
}

.detail-main {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  background: white;
  padding: 18px;
}

.swatches {
  display: flex;
  gap: 10px;
  margin: 14px 0;
}

.swatch {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.swatch.active {
  outline: 2px solid var(--accent);
}

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

.detail-copy h1 {
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.detail-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.stacked-list {
  display: grid;
  gap: 10px;
}

.stacked-list .item {
  display: flex;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.03);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
}

.form-shell {
  max-width: 640px;
  margin: 48px auto;
  background: var(--paper);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 700;
  font-size: 14px;
}

input,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  background: #fffefd;
}

input:focus {
  outline: 2px solid rgba(108, 183, 95, 0.35);
}

.alt {
  text-align: center;
  margin-top: 10px;
  color: var(--muted);
}

.badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(108, 183, 95, 0.12);
  border-radius: 12px;
  font-weight: 700;
}

.shop-hero {
  background: linear-gradient(125deg, #ffffff, #fff1da);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.shop-hero::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(56, 192, 197, 0.12);
  top: -50px;
  right: -50px;
}

.shop-hero .top {
  display: flex;
  gap: 16px;
  align-items: center;
}

.shop-hero .top h1 {
  margin: 0;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.chip {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
  font-weight: 600;
  color: var(--muted);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: white;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.qty-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.qty-input {
  width: 54px;
  text-align: center;
  font-weight: 800;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 10px 8px;
  background: #fffefd;
}

.qty-input:focus {
  outline: 2px solid rgba(108, 183, 95, 0.35);
}

.marquee {
  display: flex;
  gap: 16px;
  overflow: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.marquee .mini-card {
  min-width: 240px;
  padding: 14px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.footer {
  margin: 48px 0;
  text-align: center;
  color: var(--muted);
}

.floaters {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 159, 67, 0.35), rgba(56, 192, 197, 0.16));
  border-radius: 50%;
  filter: blur(14px);
  animation: drift 18s ease-in-out infinite;
}

.bubble:nth-child(1) {
  top: 10%;
  left: 4%;
  animation-delay: -4s;
}

.bubble:nth-child(2) {
  bottom: 18%;
  left: 18%;
  animation-duration: 22s;
}

.bubble:nth-child(3) {
  top: 22%;
  right: 12%;
  animation-duration: 19s;
  animation-delay: -7s;
}

.pop {
  animation: popIn 0.6s ease-out both;
}

.pop-delay {
  animation-delay: 0.15s;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes drift {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-24px) translateX(12px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    margin-top: 32px;
  }
  .brand {
    margin-bottom: 10px;
  }
  header {
    position: sticky;
  }
}
