/* =============================================
   SMIKKIE — HOMEPAGE CSS
   ============================================= */

/* --- HERO --- */
.hero {
  background: var(--white);
  overflow: hidden;
  position: relative;
  padding: 0;
  min-height: 520px;
}
.hero__bg-blob {
  position: absolute;
  top: -60px; right: -80px;
  width: 560px; height: 560px;
  background: radial-gradient(ellipse at center, #EDE8F8 0%, #F5F0FF 50%, transparent 75%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  min-height: 520px;
  position: relative;
  z-index: 1;
  padding: 48px 0 0;
}
.hero__left { padding-right: 40px; padding-bottom: 48px; }
.hero__title {
  font-size: 52px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 18px;
}
.hero__sub {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__approved {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}
.hero__approved strong { color: var(--dark); }

/* Hero right — purple rounded card with bear + box */
.hero__right {
  position: relative;
  background: #EDE8F8;
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  min-height: 480px;
  overflow: hidden;
  padding: 0 24px;
}

/* Bear */
.hero__bear {
  position: relative;
  z-index: 3;
  width: 210px;
  flex-shrink: 0;
  align-self: flex-end;
  margin-right: -20px;
}
.hero__bear svg { width: 100%; height: auto; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15)); }
.hero__bear-img { width: 100%; height: auto; display: block; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15)); }

/* Box */
.hero__box {
  position: relative;
  z-index: 2;
  width: 230px;
  flex-shrink: 0;
  align-self: flex-end;
}
.hero__box-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.20));
}

/* Grass hill — hidden, replaced by purple card bg */
.hero__grass {
  display: none;
}

/* Dashes */
.hero__dash {
  position: absolute;
  border-radius: 4px;
  background: var(--purple);
  z-index: 4;
  opacity: 0.4;
}
.hero__dash--1 {
  width: 28px; height: 8px;
  top: 40px; right: 12%;
  transform: rotate(-30deg);
}
.hero__dash--2 {
  width: 20px; height: 6px;
  top: 70px; right: 8%;
  transform: rotate(20deg);
}

/* --- CATEGORIES --- */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 14px;
  transition: transform var(--transition);
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card__img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
}
.cat-card__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.cat-card:hover .cat-card__img img { transform: scale(1.08); }
.cat-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
}
.cat-card__arrow {
  width: 26px; height: 26px;
  background: var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* --- WHY SMIKKIE --- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.why-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.why-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.why-card__icon--green { background: var(--green); }
.why-card__icon--purple { background: var(--purple); }
.why-card h3 { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.why-card p  { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* --- HOW IT WORKS --- */
.how__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 140px;
}
.how-step__circle {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 3px solid;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.how-step__num {
  position: absolute;
  top: -6px; left: -6px;
  width: 28px; height: 28px;
  border-radius: 50%;
  color: white;
  font-size: 13px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.how-step p {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  line-height: 1.4;
}
.how-step__arrow {
  font-size: 24px;
  color: var(--gray);
  margin-top: 42px;
  flex-shrink: 0;
}

/* --- FAVORITES --- */
.favorites__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}

/* --- MIX CTA --- */
.mix-cta {
  background: var(--white);
  padding: 60px 0;
}
.mix-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  background: var(--purple-light);
  border-radius: 24px;
  padding: 48px 56px;
  overflow: hidden;
  position: relative;
}
.mix-cta__title {
  font-size: 32px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.mix-cta__sub {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}
.mix-cta__right {
  position: relative;
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.mix-cta__grass {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 240px; height: 90px;
  background: var(--green);
  border-radius: 50% 50% 0 0;
}
.mix-cta__box {
  position: relative;
  z-index: 2;
  background: var(--purple);
  border-radius: 14px 14px 0 0;
  padding: 14px 16px 18px;
  width: 220px;
}
.mix-cta__box-products {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.mix-cta__box-products img {
  width: 40px; height: 40px;
  object-fit: contain;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 3px;
}
.mix-cta__box-label { text-align: center; color: white; }
.mix-cta__box-logo { display: block; font-size: 18px; font-weight: 900; }
.mix-cta__box-tagline { display: block; font-size: 10px; opacity: 0.85; line-height: 1.4; }

/* --- BOTTOM CTA --- */
.bottom-cta {
  background: var(--purple);
  padding: 48px 0;
}
.bottom-cta__inner {
  display: flex;
  align-items: center;
  gap: 36px;
}
.bottom-cta__bear {
  width: 140px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}
.bottom-cta__bear svg { width: 100%; height: auto; }
.bottom-cta__bear-img { width: 100%; height: auto; display: block; }
.bottom-cta__content { flex: 1; }
.bottom-cta__content h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.bottom-cta__content p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero__title { font-size: 42px; }
  .favorites__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; padding: 24px 0 0; }
  .hero__left { padding-right: 0; padding-bottom: 0; }
  .hero__title { font-size: 32px; letter-spacing: -1px; }
  .hero__sub { font-size: 14px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__right { height: 320px; margin-top: 24px; }
  .hero__bear { width: 160px; right: 52%; }
  .hero__box { width: 210px; right: 4%; }
  .hero__grass { width: 220px; height: 90px; right: -20px; }
  .hero__bg-blob { width: 300px; height: 300px; top: -30px; right: -40px; }

  .categories__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cat-card__img { width: 140px; height: 140px; }

  .why__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-card { padding: 20px 14px; }

  .how__steps { gap: 8px; }
  .how-step { width: 110px; }
  .how-step__circle { width: 88px; height: 88px; }
  .how-step__arrow { font-size: 18px; margin-top: 32px; }

  .favorites__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .mix-cta__inner { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
  .mix-cta__title { font-size: 24px; }
  .mix-cta__right { height: 160px; }
  .mix-cta__box { width: 180px; }
  .mix-cta__grass { width: 200px; height: 70px; }

  .bottom-cta__inner { flex-direction: column; text-align: center; }
  .bottom-cta__bear { width: 110px; }
  .bottom-cta__content h2 { font-size: 22px; }
  .bottom-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card__img { width: 120px; height: 120px; }
  .favorites__grid { grid-template-columns: repeat(2, 1fr); }
  .how-step__arrow { display: none; }
  .how__steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
