:root {
  --yellow: #FFE600;
  --lime: #00E676;
  --pink: #FF1493;
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.5;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid #f3f3f3;
}

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

.logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.45rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 800;
}

.nav-links a {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a[aria-current='page'] {
  background: var(--lime);
}

.tiktok-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-size: 1.1rem;
}

.hero {
  position: relative;
  padding: 5rem 0 3.5rem;
  overflow: hidden;
}

.hero::before {
  content: '💩  🤢  😂  🎁   💩  🎁  😂  🤢';
  position: absolute;
  top: 20%;
  left: -5%;
  font-size: clamp(1.4rem, 2vw, 2rem);
  opacity: 0.12;
  transform: rotate(-12deg);
  white-space: nowrap;
}

.hero::after {
  content: '🎁  😂  💩  🤢   😂  💩  🎁';
  position: absolute;
  bottom: 10%;
  right: -8%;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  opacity: 0.1;
  transform: rotate(10deg);
  white-space: nowrap;
}

.hero h1,
.page-title,
.section-title,
.about-title {
  font-family: 'Fredoka One', cursive;
  line-height: 1.1;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  max-width: 780px;
}

.hero p {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.3vw, 1.3rem);
  max-width: 700px;
}

.cta-btn {
  display: inline-block;
  margin-top: 1.6rem;
  padding: 0.9rem 1.3rem;
  background: var(--yellow);
  font-weight: 900;
  border-radius: 12px;
  border: 2px solid var(--charcoal);
  box-shadow: 4px 4px 0 var(--charcoal);
}

.cta-btn:hover { transform: translate(-1px, -1px); }

.trust-bar {
  background: var(--lime);
  font-weight: 900;
  padding: 0.8rem 0;
  border-block: 2px solid var(--charcoal);
}

.trust-text {
  text-align: center;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.section {
  padding: 3.2rem 0;
}

.section-title,
.page-title,
.about-title {
  font-size: clamp(1.8rem, 4.7vw, 3rem);
  margin: 0 0 0.8rem;
}

.section-sub {
  margin: 0 0 1.4rem;
  font-size: 1.08rem;
  font-weight: 700;
}

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

.card {
  border: 2px solid #ececec;
  border-radius: 18px;
  padding: 1rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.emoji {
  font-size: 2rem;
}

.card h3 {
  margin: 0.6rem 0 0.3rem;
  font-size: 1.05rem;
}

.tagline {
  margin: 0;
  font-size: 0.95rem;
}

.price {
  margin: 0.75rem 0;
  font-weight: 900;
  color: #000;
}

.card .add {
  margin-top: auto;
  text-align: center;
  background: var(--pink);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  font-weight: 900;
}

.card .add:hover { filter: brightness(0.95); }

.how-works {
  font-weight: 900;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  border: 2px dashed var(--charcoal);
  border-radius: 14px;
  padding: 1rem;
  background: #fffceb;
}

.tiktok-cta {
  margin-top: 1rem;
  border-radius: 16px;
  padding: 1.2rem;
  background: linear-gradient(90deg, #fff1f8, #effff7);
  border: 2px solid #ffd8ee;
}

.tiktok-cta p {
  margin: 0.4rem 0;
  font-weight: 800;
}

.handle {
  display: inline-block;
  margin-top: 0.6rem;
  background: var(--charcoal);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-weight: 800;
}

.about-copy {
  max-width: 760px;
  font-size: 1.08rem;
}

.site-footer {
  margin-top: 3rem;
  border-top: 2px solid #efefef;
  padding: 1.5rem 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}

@media (min-width: 760px) {
  .product-grid.featured { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 980px) {
  .product-grid.catalog { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
