/* ============================================================
   PAVI'S LAB — pages/index.css
   Homepage only: hero, search, categories, why choose us.
   ============================================================ */

/* ── Scroll-triggered fade-in animations ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }
.fade-in-up.delay-3 { transition-delay: 0.3s; }

/* Card hover lift */
.prod-card,
.cat-card,
.why-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.prod-card:hover  { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(255,0,127,0.18); }
.cat-card:hover   { transform: translateY(-4px) scale(1.03); }
.why-card:hover   { transform: translateY(-4px); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  /* Capped, not pure 100vh — a phone in "Desktop site" mode reports a wide
     width (matching this desktop rule instead of the mobile min-height:auto
     override) while its real screen HEIGHT stays phone-sized, so a plain
     100vh here blows the section up into mostly-empty space. Capping the
     height means it can never do that, regardless of viewport trickery. */
  min-height: min(calc(100vh - 120px), 640px);
  display: flex;
  align-items: flex-start;
  padding: 32px 0 48px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://ik.imagekit.io/umeshpranav/bg_xzjklr.png?tr=f-auto,w-1600') center / cover no-repeat;
  filter: brightness(0.35);
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Search */
.search-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  width: 100%;
}

/* Input + mic grouped — mic sits inside the field */
.search-input-wrap {
  position: relative;
  flex: 1;
  max-width: 560px;
}

.search-bar input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 50px 14px 26px;
  border: 2px solid var(--pink);
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.search-bar input::placeholder { color: rgba(255, 255, 255, 0.45); }
.search-bar input:focus {
  border-color: var(--pink-light);
  background: rgba(0, 0, 0, 0.65);
}

.search-bar > button {
  padding: 14px 22px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.search-bar > button:hover { background: var(--pink-deep); transform: translateY(-2px); }

/* Mic button — absolute at the right end of the input */
.search-bar .mic-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: rgba(255, 0, 127, 0.65);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.search-bar .mic-btn:hover { color: var(--pink); }
.search-bar .mic-btn.listening {
  color: var(--pink);
  animation: mic-pulse 1s ease-in-out infinite;
}
@keyframes mic-pulse {
  0%, 100% { transform: translateY(-50%) scale(1);   }
  50%       { transform: translateY(-50%) scale(1.3); }
}

.search-bar-outer {
  position: relative;
  width: 100%;
  max-width: 640px;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(18, 8, 28, 0.97);
  border: 1px solid rgba(255, 105, 180, 0.22);
  border-radius: 14px;
  z-index: 200;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  max-height: 420px;
  overflow-y: auto;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.search-item:last-child { border-bottom: none; }
.search-item:hover { background: rgba(255, 105, 180, 0.12); }

.search-item-img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.search-item-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(255, 0, 127, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.search-item-info { flex: 1; min-width: 0; }
.search-item-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-item-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink-light);
  flex-shrink: 0;
}
.search-no-results {
  padding: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
}

/* Two-column content */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-left { flex: 1; max-width: 560px; }

.hero-title {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -1px;
  cursor: default;
  background: linear-gradient(45deg, #ff4d6d, #ff9a9e, #ffc3a0);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientMove 4s infinite linear;
}

@keyframes gradientMove {
  0%   { background-position: 0%; }
  100% { background-position: 200%; }
}

.hero-tagline {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.hero-right {
  flex: 1;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-18px); }
}

.hero-right img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  border: 2px solid rgba(255, 0, 127, 0.25);
  box-shadow: 0 0 60px rgba(255, 0, 127, 0.18);
  object-fit: cover;
  animation: heroFloat 4s ease-in-out infinite;
}

/* How to Order — sits below the image inside hero-right */
.how-to-order-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 20px;
}

/* Tags row — appears below hero-content (outside it in DOM) */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
}

/* ── Shop & Win hero tagline (🎟️ Scratch • 🎡 Spin • 🎁 Surprise) ── */
.hero-tagline-win {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 24px;
  font-weight: 500;
}

.hero-tagline-win .sw-emoji {
  display: inline-block;
  animation: swEmojiWiggle 1.8s ease-in-out infinite;
}

@keyframes swEmojiWiggle {
  0%, 100% { transform: rotate(0deg)   scale(1);   }
  25%      { transform: rotate(-14deg) scale(1.15); }
  50%      { transform: rotate(0deg)   scale(1);    }
  75%      { transform: rotate(14deg)  scale(1.15); }
}

.hero-tagline-win .sw-sep {
  color: rgba(255, 227, 196, 0.75);
  font-size: 16px;
}

/* Gift box — cute bounce + tilt, distinct from the plain wiggle */
.hero-tagline-win .sw-gift {
  animation: swGiftBounce 1.6s ease-in-out infinite;
}

@keyframes swGiftBounce {
  0%, 100% { transform: translateY(0)    rotate(0deg);    }
  20%      { transform: translateY(-6px) rotate(-10deg);  }
  40%      { transform: translateY(0)    rotate(8deg);    }
  60%      { transform: translateY(-3px) rotate(-6deg);   }
  80%      { transform: translateY(0)    rotate(0deg);    }
}

/* Heart at the end of the hero title — rotates continuously while it beats.
   Reset the gradient text-clip from .hero-title: color emoji glyphs render
   invisible under -webkit-text-fill-color:transparent + background-clip:text. */
.hero-title .sw-heart {
  display: inline-block;
  -webkit-text-fill-color: initial;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  transform-origin: center;
  perspective: 400px;
  animation: swHeartBeat 2.2s ease-in-out infinite;
}

/* rotateY = spins left-to-right around the vertical axis (a flip),
   not the flat clockwise spin rotate() gives. */
@keyframes swHeartBeat {
  0%   { transform: rotateY(0deg)   scale(1);   }
  14%  { transform: rotateY(90deg)  scale(1.3); }
  28%  { transform: rotateY(180deg) scale(1);   }
  42%  { transform: rotateY(270deg) scale(1.25);}
  70%  { transform: rotateY(340deg) scale(1);   }
  100% { transform: rotateY(360deg) scale(1);   }
}

.btn-how-to-order {
  padding: 14px 30px;
  background: var(--pink);
  color: #fff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  transition: background var(--transition), transform var(--transition);
}
.btn-how-to-order:hover { background: var(--pink-deep); transform: translateY(-2px); }


/* ============================================================
   EXPLORE CATEGORIES
   ============================================================ */
/* ============================================================
   EXPLORE CATEGORIES SECTION
   ============================================================ */
@keyframes catCardIn {
  0%  { opacity:0; transform: translateY(28px) scale(.95); }
  100%{ opacity:1; transform: translateY(0)    scale(1);   }
}
@keyframes catIconPop {
  0%  { transform: translateX(-50%) scale(.7);  opacity:0; }
  60% { transform: translateX(-50%) scale(1.15);opacity:1; }
  100%{ transform: translateX(-50%) scale(1);   opacity:1; }
}
@keyframes catTitleGlow {
  0%,100%{ text-shadow: 0 0 10px rgba(255,140,180,.0); }
  50%    { text-shadow: 0 0 22px rgba(255,140,180,.5); }
}
@keyframes sparkle-drift {
  0%,100%{ transform: translateY(0) rotate(0deg); opacity:.7; }
  50%    { transform: translateY(-8px) rotate(15deg); opacity:1; }
}

.categories {
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
  background: #1e0812;
}

.cat-bg {
  position: absolute;
  inset: 0;
  background: url('https://ik.imagekit.io/umeshpranav/bg_xzjklr.png?tr=f-auto,w-1600') center / cover no-repeat;
  filter: brightness(0.22) saturate(0.6);
  z-index: 0;
}

.categories .container {
  position: relative;
  z-index: 1;
}

/* ── Section heading ── */
.cat-sec-head {
  text-align: center;
  margin-bottom: 40px;
}
.cat-sec-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: catTitleGlow 4s ease-in-out infinite;
}
.cat-sec-title .sp {
  color: #f7c948;
  font-size: .65em;
  animation: sparkle-drift 3s ease-in-out infinite;
  display: inline-block;
}
.cat-sec-title .sp:nth-child(3) { animation-delay: 1.5s; }
.cat-sec-sub {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cat-sec-sub::before,
.cat-sec-sub::after {
  content: '♥';
  color: var(--pink);
  font-size: 12px;
}

/* ── Groups ── */
.cat-group        { margin-bottom: 36px; }
.cat-group-extra  { margin-top: 18px; }

.cat-group-hdr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.cat-group-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,0,127,.3), transparent);
}
.cat-group-title {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  color: #ffb3d4;
  white-space: nowrap;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cat-viewall-btn {
  flex-shrink: 0;
  padding: 4px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--pink);
  background: rgba(255,0,127,.1);
  border: 1px solid rgba(255,0,127,.28);
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.cat-viewall-btn:hover { background: rgba(255,0,127,.22); }

.cat-empty {
  text-align: center; padding: 60px 0;
  color: rgba(255,255,255,.4); font-size: 15px;
}

/* ── Cute decorative banner after each category group (display-only) ── */
.cat-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding: 16px 30px;
  border-radius: 40px;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  overflow: hidden;
}

/* Floating hearts scattered across the whole banner background */
.cat-banner-heart {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 15px;
  opacity: .4;
  pointer-events: none;
  z-index: 0;
}
.cat-banner-heart.h0 { font-size: 13px; animation: catHeartFloat 4.6s ease-in-out infinite; }
.cat-banner-heart.h1 { font-size: 17px; animation: catHeartFloat 5.4s ease-in-out infinite .8s; }
.cat-banner-heart.h2 { font-size: 11px; animation: catHeartFloat 5s   ease-in-out infinite 1.6s; }
.cat-banner-heart.h3 { font-size: 15px; animation: catHeartFloat 4.2s ease-in-out infinite 2.3s; }

/* Rising/flying motion — travels up from below its slot and fades out near
   the top, looping back to the bottom (opacity 0 at both ends hides the
   reset jump), rather than bobbing in place. */
@keyframes catHeartFloat {
  0%   { transform: translate(-50%, -50%) translateY(16px)  rotate(0deg);   opacity: 0;   }
  20%  { opacity: .55; }
  80%  { opacity: .5;  }
  100% { transform: translate(-50%, -50%) translateY(-38px) rotate(16deg); opacity: 0;   }
}

/* Glittery diagonal light sweep */
.cat-banner-glitter {
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.75), transparent);
  transform: skewX(-20deg);
  animation: catBannerShine 3.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes catBannerShine {
  0%   { left: -60%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

.cat-banner-icon {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  font-size: 36px;
  display: inline-block;
  animation: catBannerBounce 2.4s ease-in-out infinite;
}

/* Marquee: fixed-width viewport clips a track twice the content's width
   (feats are rendered twice in the HTML) scrolling by exactly -50%, which
   loops seamlessly since that's precisely one copy's width. */
.cat-banner-marquee {
  position: relative;
  z-index: 2;
  flex: 1;
  overflow: hidden;
}
.cat-banner-feats {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  will-change: transform;
  animation: catBannerMarquee 16s linear infinite;
}
.cat-banner:hover .cat-banner-feats { animation-play-state: paused; }

/* Shifts by exactly one of the 4 rendered copies (100% / 4 = 25%) — with
   4 copies always filling the strip there's no empty stretch before the
   next copy scrolls in, unlike a plain 2-copy/-50% loop on short content. */
@keyframes catBannerMarquee {
  from { transform: translateX(0);    }
  to   { transform: translateX(-25%); }
}

.cat-banner-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
}
.cat-banner-feat .emo {
  font-size: 19px;
  display: inline-block;
}
.cat-banner-feat.v0 .emo { animation: catBannerWiggle 1.9s ease-in-out infinite; }
.cat-banner-feat.v1 .emo { animation: catBannerPulse  1.7s ease-in-out infinite .15s; }
.cat-banner-feat.v2 .emo { animation: catBannerWiggle 1.9s ease-in-out infinite .3s; }
.cat-banner-feat.v3 .emo { animation: catBannerPulse  1.7s ease-in-out infinite .45s; }

@keyframes catBannerBounce {
  0%, 100% { transform: translateY(0)    rotate(0deg);   }
  25%      { transform: translateY(-6px) rotate(-10deg); }
  50%      { transform: translateY(0)    rotate(0deg);   }
  75%      { transform: translateY(-6px) rotate(10deg);  }
}
@keyframes catBannerWiggle {
  0%, 100% { transform: rotate(0deg)  scale(1);    }
  50%      { transform: rotate(14deg) scale(1.18); }
}
@keyframes catBannerPulse {
  0%, 100% { transform: scale(1);    }
  50%      { transform: scale(1.22); }
}

/* Pastel palette — kept soft/light so dark ink text stays readable,
   distinct per banner so consecutive category groups don't blur together */
.cat-banner.pk  { background: linear-gradient(100deg, #ffd6e8, #ffc2d6); color: #5c1030; }
.cat-banner.pch { background: linear-gradient(100deg, #ffe0c2, #ffcda3); color: #5c3010; }
.cat-banner.mnt { background: linear-gradient(100deg, #d3f5e0, #b8edcf); color: #0f4a2e; }
.cat-banner.lav { background: linear-gradient(100deg, #e6dcfb, #d5c3f5); color: #3a1c66; }

/* ── Grid ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* ── Card ── */
.cat-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
  transition: transform .38s cubic-bezier(.34,1.56,.64,1), box-shadow .38s ease;
  animation: catCardIn .55s ease both;
  background: #2a0d1a;
}
.cat-card:nth-child(2) { animation-delay:.06s; }
.cat-card:nth-child(3) { animation-delay:.12s; }
.cat-card:nth-child(4) { animation-delay:.18s; }
.cat-card:nth-child(5) { animation-delay:.24s; }
.cat-card:nth-child(6) { animation-delay:.30s; }
.cat-card:nth-child(7) { animation-delay:.36s; }
.cat-card:nth-child(8) { animation-delay:.42s; }
.cat-card:nth-child(9) { animation-delay:.48s; }
.cat-card:nth-child(10){ animation-delay:.54s; }

.cat-card:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow: 0 22px 52px rgba(0,0,0,.65), 0 0 0 1.5px rgba(255,0,127,.35);
}

/* image area (top ~70%) */
.cat-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}
.cat-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.08); }

/* no-image fallback */
.cat-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  background: linear-gradient(135deg, #4a0d2a, #2a0512);
}

/* icon badge — removed per design (image already conveys the category) */
.cat-card-icon { display: none; }

/* bottom bar */
.cat-card-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: #2a0d1a;
  text-align: center;
}
.cat-label {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  transition: color .3s ease;
}
.cat-card:hover .cat-label { color: #ffb3d4; }

/* ── Responsive grid breakpoints ── */
@media (max-width: 1100px) { .cat-grid { grid-template-columns: repeat(4,1fr); gap:16px; } }
@media (max-width: 860px)  { .cat-grid { grid-template-columns: repeat(3,1fr); gap:14px; } }
@media (max-width: 600px)  { .cat-grid { grid-template-columns: repeat(2,1fr); gap:12px; }
  .cat-label { font-size:12.5px; }
  .cat-card-body { padding:12px 10px; }
  .cat-img-wrap { aspect-ratio: 1 / 1; }
}


/* ============================================================
   PAVI'S SPARKLES SECTION
   ============================================================ */
@keyframes sprkFloat  { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(8deg); } }
@keyframes sprkGlow   { 0%,100% { box-shadow: 0 4px 20px rgba(255,0,127,0.35), 0 0 0 0 rgba(255,0,127,0.5); }
                         50%     { box-shadow: 0 4px 20px rgba(255,0,127,0.45), 0 0 0 10px rgba(255,0,127,0); } }
@keyframes sprkShimmer { 0% { background-position: -150% center; } 100% { background-position: 250% center; } }
@keyframes sprkPress   { 0% { transform: scale(1); } 40% { transform: scale(0.9); } 100% { transform: scale(1.04); } }

.sparkles-section {
  position: relative;
  padding: 28px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: #0d0009;
  overflow: hidden;
}

/* Ambient floating sparkles around the banner — purely decorative */
.sparkles-section-float {
  position: absolute;
  font-size: 22px;
  opacity: 0.5;
  animation: sprkFloat 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.sparkles-banner-link {
  display: block;
  width: 100%;
  max-width: 1280px;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.sparkles-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(255,0,127,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sparkles-banner-link:hover .sparkles-banner-img {
  transform: scale(1.015);
  box-shadow: 0 12px 50px rgba(255,0,127,0.4);
}

.sparkles-btn-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* "Portal" button — this is the doorway into the Sparkles theme, so it
   gets its own shimmer + pulse rather than the plain .cart-btn styling
   the rest of the site uses. */
.btn-sparkles-explore {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: linear-gradient(120deg, var(--pink) 0%, #ff4da6 45%, var(--pink) 100%);
  background-size: 250% auto;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  animation: sprkShimmer 3.5s linear infinite, sprkGlow 2.4s ease-in-out infinite;
  transition: transform 0.2s ease;
}
.btn-sparkles-explore .sprk-ico {
  display: inline-block;
  animation: sprkFloat 2.2s ease-in-out infinite;
}
.btn-sparkles-explore:hover {
  transform: translateY(-2px) scale(1.03);
}
.btn-sparkles-explore:active {
  animation: sprkPress 0.35s ease;
}


/* ============================================================
   BUYER'S FEEDBACK
   ============================================================ */
.feedback-section {
  padding: 40px 0 48px;
  overflow: hidden;
}

.feedback-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.feedback-inner .section-title,
.feedback-inner .section-subtitle {
  text-align: center;
}

/* Scrolling track wrapper — clips overflow */
.feedback-track-wrap {
  overflow: hidden;
  margin-top: 36px;
  position: relative;
}

/* The scrolling row — duplicated cards for seamless loop */
.feedback-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: feedbackScroll 32s linear infinite;
}

.feedback-track:hover {
  animation-play-state: paused;
}

@keyframes feedbackScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual feedback card */
.fb-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 0, 127, 0.12);
  border-radius: var(--radius);
  padding: 22px 20px;
  min-width: 260px;
  max-width: 340px;
  width: max-content;
  flex-shrink: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.fb-card:hover {
  border-color: rgba(255, 0, 127, 0.35);
  box-shadow: 0 8px 28px rgba(255, 0, 127, 0.12);
}

.fb-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.fb-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 0, 127, 0.25);
  flex-shrink: 0;
}

.fb-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 0, 127, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 0, 127, 0.2);
}

.fb-meta {
  flex: 1;
  min-width: 0;
}

.fb-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fb-product {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.fb-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.fb-stars i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.fb-stars i.filled {
  color: #f5c518;
}

.fb-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.feedback-loading {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  padding: 20px;
}

@media (max-width: 768px) {
  .feedback-section { padding: 36px 0 44px; }
  .feedback-inner { padding: 0 14px; }
  .feedback-track { gap: 14px; animation-duration: 24s; }
  .fb-card { min-width: 220px; padding: 16px 14px; }
  .fb-text { font-size: 12px; }
  .fb-name { font-size: 13px; }
}

/* ============================================================
   BUDGET FRIENDLY PICKS
   ============================================================ */
.budget-section {
  padding: 40px 0 48px;
  position: relative;
}

.budget-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

/* Reuse prod-card styles — cards are rendered identically */
.budget-grid .prod-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.budget-grid .prod-card:hover {
  border-color: rgba(255, 0, 127, 0.3);
  box-shadow: 0 12px 36px rgba(255, 0, 127, 0.15);
}

.budget-viewall-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.budget-viewall-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.budget-viewall-btn:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-2px);
}

.budget-skeleton {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose {
  position: relative;
  padding: 40px 0 48px;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: url('https://ik.imagekit.io/umeshpranav/bg_xzjklr.png?tr=f-auto,w-1600') center / cover no-repeat;
  filter: brightness(0.18);
  z-index: 0;
}

.why-choose .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 0, 127, 0.12);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.why-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 0, 127, 0.08);
  border-color: rgba(255, 0, 127, 0.45);
  box-shadow: 0 12px 36px rgba(255, 0, 127, 0.18), 0 2px 8px rgba(0,0,0,0.3);
}

.why-card:hover .why-icon {
  transform: scale(1.2) rotate(-6deg);
  transition: transform 0.3s ease;
}

.why-icon {
  transition: transform 0.3s ease;
}

.why-icon  { font-size: 34px; margin-bottom: 14px; }
.why-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }


/* ============================================================
   RESPONSIVE — homepage sections
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .cat-grid  { grid-template-columns: repeat(3, 1fr); }
  .why-grid  { grid-template-columns: repeat(2, 1fr); }

  .hero-content { flex-direction: column; text-align: center; }
  .hero-left    { max-width: 100%; }
  .hero-btns    { justify-content: center; }
  .hero-tags    { justify-content: center; }
  .hero-tagline-win { justify-content: center; }
  .hero-right   { align-items: center; max-width: 100%; }
  .hero-right img { max-width: 380px; }
  .how-to-order-wrap { justify-content: center; }
}

/* Mobile styles are in index-mobile.css */

/* ── Build Your Bundle Section (dark glass morphism – Pavi's Lab theme) ── */
@keyframes plBdgFloat { 0%,100%{transform:translateY(0) rotate(-3deg)} 50%{transform:translateY(-12px) rotate(3deg)} }
@keyframes plBdgShimmer { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes plBdgPop { 0%{transform:scale(.85) translateY(20px);opacity:0} 100%{transform:scale(1) translateY(0);opacity:1} }
@keyframes plBdgPulse { 0%,100%{box-shadow:0 0 0 0 rgba(255,0,127,.4)} 50%{box-shadow:0 0 0 14px rgba(255,0,127,0)} }
@keyframes plBdgGlow { 0%,100%{opacity:.5} 50%{opacity:1} }

.pl-bndl-sec {
  padding: 80px 0;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}
.pl-bndl-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(255,0,127,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(255,0,127,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255,0,127,.04) 0%, transparent 70%);
  pointer-events: none;
}
.pl-bndl-float {
  position: absolute; font-size: 32px; opacity: .07;
  animation: plBdgFloat 6s ease-in-out infinite; pointer-events: none;
}
.pl-bndl-in { max-width: 1280px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }

.pl-bndl-head { text-align: center; margin-bottom: 52px; }
.pl-bndl-head h2 {
  font-size: clamp(26px, 3.2vw, 40px); font-weight: 800;
  color: #fff; margin-bottom: 10px; line-height: 1.15;
}
.pl-bndl-head h2 em {
  background: linear-gradient(135deg, #ff007f, #ff66b3);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-style: normal;
}
.pl-bndl-head p { font-size: 14px; color: rgba(255,255,255,.5); max-width: 460px; margin: 0 auto; }
.pl-bndl-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, #ff007f, #ff66b3);
  border-radius: 3px; margin: 16px auto 0;
  animation: plBdgGlow 2.5s ease-in-out infinite;
}

.pl-bndl-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.pl-bndl-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,0,127,.15);
  border-radius: 24px; overflow: hidden;
  display: flex; flex-direction: column;
  backdrop-filter: blur(10px);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease, border-color .4s ease;
  animation: plBdgPop .5s ease both;
  position: relative;
}
.pl-bndl-card:nth-child(2) { animation-delay: .12s; }
.pl-bndl-card:nth-child(3) { animation-delay: .24s; }
.pl-bndl-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,0,127,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.pl-bndl-card:hover { transform: translateY(-12px) scale(1.02); border-color: rgba(255,0,127,.5); box-shadow: 0 24px 60px rgba(255,0,127,.2); }
.pl-bndl-card:hover::before { opacity: 1; }

.pl-bndl-badge {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  background: linear-gradient(135deg, #ff007f, #cc0066);
  color: #fff; font-size: 9.5px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; letter-spacing: .5px; text-transform: uppercase;
}
.pl-bndl-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 76px; position: relative; overflow: hidden;
}
.pl-bndl-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,0,127,.12) 0%, transparent 70%);
}
.pl-bndl-emoji { transition: transform .4s ease; filter: drop-shadow(0 6px 20px rgba(255,0,127,.3)); position: relative; z-index: 1; }
.pl-bndl-card:hover .pl-bndl-emoji { transform: scale(1.15) rotate(6deg); }

.pl-bndl-body { padding: 24px 22px 28px; flex: 1; display: flex; flex-direction: column; }
.pl-bndl-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.pl-bndl-tag {
  background: rgba(255,0,127,.1); border: 1px solid rgba(255,0,127,.25);
  color: #ff66b3; font-size: 10.5px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
}
.pl-bndl-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.pl-bndl-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; flex: 1; margin-bottom: 22px; }
.pl-bndl-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #ff007f, #cc0066);
  background-size: 200%; animation: plBdgShimmer 4s linear infinite;
  color: #fff; font-size: 13.5px; font-weight: 700;
  padding: 13px 24px; border-radius: 50px; text-decoration: none;
  border: 1px solid rgba(255,0,127,.4);
  box-shadow: 0 4px 20px rgba(255,0,127,.35);
  transition: all .25s;
}
.pl-bndl-btn:hover { box-shadow: 0 8px 32px rgba(255,0,127,.55); transform: translateY(-2px); animation: plBdgPulse 1.2s ease infinite; }
.pl-bndl-btn i { transition: transform .25s; }
.pl-bndl-btn:hover i { transform: translateX(4px); }

@media (max-width: 900px) {
  .pl-bndl-cards { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .pl-bndl-sec { padding: 56px 0; }
}
@media (max-width: 600px) {
  .pl-bndl-cards { grid-template-columns: 1fr; gap: 16px; }
  .pl-bndl-sec { padding: 40px 0; }
  .pl-bndl-head { margin-bottom: 32px; }
  .pl-bndl-img { height: 160px; font-size: 60px; }
}
