/* ==========  WahKart Home Page  ========== */

/* ---------- Hero ---------- */
.wk-hero {
  position: relative;
  overflow: hidden;
  background: #111827;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wk-hero .carousel,
.wk-hero .carousel-inner,
.wk-hero .carousel-item {
  position: relative;
  height: 440px;
  min-height: 400px;
  padding: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.wk-hero .carousel-item.active,
.wk-hero .carousel-item-next,
.wk-hero .carousel-item-prev {
  display: flex;
  align-items: center;
}
.wk-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.wk-hero-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.wk-hero .carousel-item::before,
.wk-hero .carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.wk-hero .carousel-item::after {
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 45%);
}
.wk-hero-slide-purple::before {
  background:
    linear-gradient(90deg, rgba(88,28,135,.55) 0%, rgba(168,85,247,.35) 50%, rgba(236,72,153,.25) 100%),
    linear-gradient(180deg, rgba(76,29,149,.15) 0%, rgba(139,92,246,.35) 100%);
}
.wk-hero-slide-blue::before {
  background:
    linear-gradient(90deg, rgba(30,58,138,.6) 0%, rgba(37,99,235,.4) 50%, rgba(99,102,241,.3) 100%),
    linear-gradient(180deg, rgba(30,64,175,.2) 0%, rgba(59,130,246,.35) 100%);
}
.wk-hero-slide-orange::before {
  background:
    linear-gradient(90deg, rgba(154,52,18,.65) 0%, rgba(234,88,12,.45) 50%, rgba(239,68,68,.35) 100%),
    linear-gradient(180deg, rgba(124,45,18,.2) 0%, rgba(249,115,22,.4) 100%);
}
.wk-hero-slide-green::before {
  background:
    linear-gradient(90deg, rgba(20,83,45,.6) 0%, rgba(22,163,74,.4) 50%, rgba(20,184,166,.35) 100%),
    linear-gradient(180deg, rgba(6,78,59,.2) 0%, rgba(16,185,129,.35) 100%);
}
.wk-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 130px;
  padding-bottom: 48px;
  max-width: 640px;
  animation: wk-fade-up .8s ease-out;
}
@keyframes wk-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.wk-hero-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.2);
}
.wk-hero-title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: #fff;
}
.wk-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.9);
  margin: 0 0 28px;
  max-width: 520px;
}
.wk-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.wk-hero-benefits {
  display: flex;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.25);
  color: #fff;
  flex-wrap: wrap;
}
.wk-hero-benefit { display: flex; align-items: center; gap: 10px; }
.wk-hero-benefit i { color: #fff; opacity: .9; }
.wk-hb-label { font-size: 12px; opacity: .8; }
.wk-hb-value { font-weight: 700; font-size: 12px; }

.wk-hero .carousel-control-prev, .wk-hero .carousel-control-next {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  top: 50%; transform: translateY(-50%);
  bottom: auto;
  opacity: 1;
  margin: 0 24px;
  transition: background .2s ease;
}
.wk-hero .carousel-control-prev:hover, .wk-hero .carousel-control-next:hover { background: rgba(255,255,255,.28); }
.wk-hero-counter {
  position: absolute;
  top: 30px; right: 40px;
  background: rgba(255,255,255,.2);
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  z-index: 3;
  backdrop-filter: blur(6px);
}

@media (max-width: 991.98px) {
  .wk-hero-content { padding-top: 80px; padding-bottom: 48px; }
  .wk-hero-title { font-size: clamp(32px, 5.5vw, 46px); }
  .wk-hero-sub { font-size: 15px; }
  .wk-hero .carousel-control-prev,
  .wk-hero .carousel-control-next {
    width: 40px;
    height: 40px;
    margin: 0 12px;
  }
}

@media (max-width: 575.98px) {
  .wk-hero-content { padding: 40px 0 56px; max-width: 100%; }
  .wk-hero-title { font-size: clamp(26px, 8vw, 34px); }
  .wk-hero-sub { font-size: 14px; margin-bottom: 20px; }
  .wk-hero-ctas { margin-bottom: 22px; }
  .wk-hero-benefits { gap: 14px 18px; padding-top: 16px; }
  .wk-hero-counter { top: 12px; right: 12px; }
  .wk-hero .carousel-control-prev,
  .wk-hero .carousel-control-next {
    width: 36px;
    height: 36px;
    margin: 0 8px;
  }
}

/* ---------- Categories scroll ---------- */
.wk-head-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.wk-scroll-nav {
  display: inline-flex;
  gap: 8px;
}
.wk-scroll-nav.light .wk-scroll-btn {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.wk-scroll-nav.light .wk-scroll-btn:hover {
  background: rgba(255,255,255,.28);
}
.wk-scroll-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--wk-border);
  background: #fff;
  color: var(--wk-text);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.wk-scroll-btn:hover {
  background: var(--wk-gradient-soft);
  border-color: rgba(139,92,246,.3);
  transform: translateY(-1px);
}

.wk-cat-scroll-wrap { position: relative; }
.wk-cat-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 8px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
}
.wk-cat-scroll::-webkit-scrollbar { display: none; }
.wk-cat-scroll .wk-cat-card {
  flex: 0 0 120px;
  min-width: 120px;
  scroll-snap-align: start;
}
.wk-cat-card {
  display: block;
  text-align: center;
  color: var(--wk-text);
  transition: transform .25s ease;
}
.wk-cat-card:hover { transform: translateY(-2px); }
.wk-cat-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--wk-gradient-soft);
  border: 3px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, transform .4s cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.wk-cat-img::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 999px;
  padding: 3px;
  background: var(--wk-gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s ease;
}
.wk-cat-card:hover .wk-cat-img {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 14px 28px rgba(139,92,246,.28);
}
.wk-cat-card:hover .wk-cat-img::after { opacity: 1; }
.wk-cat-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.wk-cat-card:hover .wk-cat-img img { transform: scale(1.1); }
.wk-cat-name { font-weight: 600; font-size: 12px; }
.wk-cat-styles { color: var(--wk-text-muted); font-size: 12px; }
.wk-cat-see-inner {
  display: flex; align-items: center; justify-content: center;
  color: var(--wk-primary-dark);
  background: var(--wk-gradient-soft);
}

.wk-scroll-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.wk-scroll-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.wk-scroll-dots span.is-active {
  width: 22px;
  background: var(--wk-primary);
}

/* ---------- Banners (Diwali + App) ---------- */
.wk-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.wk-banner {
  position: relative;
  isolation: isolate;
  border-radius: var(--wk-radius-lg);
  overflow: hidden;
  min-height: 260px;
  padding: 40px;
  color: #fff;
  display: flex;
  align-items: center;
}
.wk-banner-diwali::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 100%);
}
.wk-banner-diwali img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.wk-banner-diwali { background: #111; }
.wk-banner-app {
  background: var(--wk-gradient);
  justify-content: space-between;
}
.wk-banner-content { position: relative; z-index: 2; max-width: 340px; }
.wk-banner-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.22);
}
.wk-banner h3 { font-size: 28px; font-weight: 800; margin: 0 0 8px; letter-spacing: -0.02em; line-height: 1.1; }
.wk-banner p { margin: 0 0 20px; opacity: .9; font-size: 12px; }

.wk-app-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.wk-app-btn {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 8px 14px;
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease;
}
.wk-app-btn:hover { background: rgba(0,0,0,.5); }
.wk-app-icon { font-size: 19px; }
.wk-app-btn small { display: block; font-size: 10px; opacity: .8; }
.wk-app-btn strong { font-size: 12px; }

.wk-phone-mock { font-size: 105px; opacity: .35; }

@media (max-width: 991.98px) {
  .wk-banners { grid-template-columns: 1fr; }
  .wk-phone-mock { display: none; }
}

@media (max-width: 575.98px) {
  .wk-banner { min-height: 220px; padding: 24px; }
  .wk-banner h3 { font-size: 22px; }
}

/* ---------- Product Card ---------- */
.wk-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wk-product {
  background: #fff;
  border-radius: var(--wk-radius);
  overflow: hidden;
  border: 1px solid var(--wk-border);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.wk-product::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--wk-radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(139,92,246,.4) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.wk-product:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(0,0,0,.1);
  border-color: transparent;
}
.wk-product:hover::before { opacity: 1; }
.wk-product-media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f3f4f6;
}
.wk-product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.wk-product:hover .wk-product-media img { transform: scale(1.06); }

.wk-product-discount {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--wk-accent); color: #fff;
  font-size: 11px; font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(236,72,153,.35);
}
.wk-product-badges-left {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
  z-index: 2;
}
.wk-product-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: #fbbf24; color: #78350f;
  font-size: 10px; font-weight: 800;
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: .02em;
}
.wk-product-wish {
  position: absolute; top: 12px; right: 12px;
  z-index: 3;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--wk-text); cursor: pointer;
  transition: color .2s ease, transform .2s ease, background .2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.wk-product-wish:hover { color: var(--wk-accent); transform: scale(1.08); }
.wk-product-wish.active { color: #ec4899; }
.wk-product-wish.active svg { fill: #ec4899; color: #ec4899; }

.wk-product-add {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  background: rgba(0,0,0,.85);
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
  cursor: pointer;
}
.wk-product:hover .wk-product-add { opacity: 1; transform: none; }
.wk-product-add:hover { background: var(--wk-primary-dark); }

.wk-product-info { padding: 14px 16px 16px; }
.wk-product-seller {
  color: var(--wk-text-muted); font-size: 12px; margin-bottom: 4px;
  display: inline-flex; align-items: center; gap: 4px;
}
.wk-verify-sm { color: #3b82f6; flex-shrink: 0; }
.wk-product-name {
  font-size: 13px; font-weight: 700; margin: 0 0 8px;
  color: var(--wk-text);
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
  overflow: hidden;
}
.wk-product-rating { display: flex; align-items: center; gap: 6px; font-size: 11px; margin-bottom: 10px; }
.wk-product-rating .wk-reviews { color: var(--wk-text-muted); font-size: 12px; }
.wk-product-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.wk-price-now { font-size: 15px; font-weight: 800; color: var(--wk-text); }
.wk-price-old { color: var(--wk-text-muted); text-decoration: line-through; font-size: 11px; }
.wk-price-save { color: #16a34a; font-size: 12px; font-weight: 600; }

@media (max-width: 1199.98px) { .wk-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991.98px) { .wk-product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 767.98px) { .wk-product-grid { gap: 12px; } }

/* ---------- Product horizontal scroll ---------- */
.wk-product-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 12px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
}
.wk-product-scroll::-webkit-scrollbar { display: none; }
.wk-product-scroll .wk-product {
  flex: 0 0 calc(16.666% - 17px);
  min-width: 200px;
  scroll-snap-align: start;
}
.wk-carousel-wrap {
  position: relative;
}
.wk-deals-slider-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.wk-section-deals .wk-deals-slider-foot .wk-scroll-dots {
  display: flex;
  margin-top: 0;
}
.wk-section-deals .wk-product-scroll {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.wk-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.95);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  color: var(--wk-text);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wk-carousel-btn:hover { transform: translateY(-50%) scale(1.05); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.wk-carousel-prev { left: -12px; }
.wk-carousel-next { right: -12px; }
@media (max-width: 1199.98px) {
  .wk-product-scroll .wk-product { flex: 0 0 calc(33.333% - 14px); min-width: 200px; }
  .wk-carousel-prev { left: 4px; }
  .wk-carousel-next { right: 4px; }
}
@media (max-width: 767.98px) {
  .wk-product-scroll { gap: 12px; }
  .wk-product-scroll .wk-product { flex: 0 0 calc(50% - 6px); min-width: 156px; }
  .wk-carousel-btn { display: none; }
}

/* ---------- Deals section ---------- */
.wk-section-deals {
  background: linear-gradient(135deg, #fff7ed 0%, #fce7f3 50%, #fdf2f8 100%);
}
.wk-deals-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.wk-deals-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #ffedd5; color: #c2410c;
  border: 1px solid #fed7aa;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.wk-timer-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  text-align: center;
  min-width: 0;
}
.wk-timer-label {
  display: block;
  color: var(--wk-text-muted);
  font-size: 11px;
  margin-bottom: 12px;
}
.wk-timer-boxes { display: inline-flex; align-items: center; gap: 8px; }
.wk-timer-box {
  background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  min-width: 62px;
  text-align: center;
}
.wk-timer-box b { display: block; font-size: 19px; font-weight: 800; letter-spacing: 0.02em; }
.wk-timer-box small { display: block; font-size: 10px; opacity: .85; margin-top: 2px; letter-spacing: .08em; text-transform: uppercase; }
.wk-timer-colon { font-size: 18px; font-weight: 800; color: #f97316; }

/* ---------- Picked for You ---------- */
.wk-section-picked {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 45%, #6366f1 100%);
  color: #fff;
}
.wk-picked-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.wk-picked-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 24px; font-weight: 800; color: #fff;
  letter-spacing: -0.02em;
}
.wk-picked-title i { color: #f9a8d4; }
.wk-picked-sub { color: rgba(255,255,255,.85); font-size: 13px; margin: 8px 0 0; }
.wk-section-picked .wk-product { border: none; box-shadow: 0 8px 24px rgba(0,0,0,.12); }

/* ---------- Story banner — creative adjacent layout ---------- */
.wk-section-story { padding-top: 0; }

.wk-story-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

@media (min-width: 768px) {
  .wk-story-banner { min-height: 288px; }
}

@media (min-width: 992px) {
  .wk-story-banner { min-height: 320px; }
}

.wk-story-banner > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.wk-story-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 42%, rgba(0,0,0,.2) 68%, rgba(0,0,0,.35) 100%);
  z-index: 1;
}

.wk-story-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .08;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.wk-story-chip {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 16px;
  padding: 14px 20px;
  text-align: center;
  color: #fff;
  display: none;
}

.wk-story-chip b {
  display: block;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.wk-story-chip span {
  display: block;
  font-size: 11px;
  opacity: .75;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .wk-story-chip { display: block; }
  .wk-story-chip-tr { top: 24px; right: 24px; }
  .wk-story-chip-br { bottom: 24px; right: 24px; }
}

.wk-story-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 40px 28px;
  min-height: 320px;
  align-items: center;
}

@media (min-width: 992px) {
  .wk-story-layout {
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    padding: 48px 56px;
  }
}

.wk-story-content { max-width: 520px; color: #fff; }

.wk-story-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fcd34d;
  margin-bottom: 14px;
}

.wk-story-title {
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin: 0 0 14px;
  color: #fff;
  line-height: 1.08;
}

.wk-story-text {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  margin: 0 0 24px;
  line-height: 1.65;
  max-width: 420px;
}

.wk-story-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wk-story-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.wk-story-btn-primary {
  background: #fff;
  color: #111827;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.wk-story-btn-primary:hover {
  transform: translateY(-2px);
  color: #111827;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.wk-story-btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.45);
}

.wk-story-btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  transform: translateY(-2px);
}

/* Adjacent panel */
.wk-story-adjacent {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wk-story-quote {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 20px 22px;
  color: #fff;
}

.wk-story-quote i {
  color: #fcd34d;
  opacity: .9;
  margin-bottom: 10px;
}

.wk-story-quote p {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.6;
  font-style: italic;
  color: rgba(255,255,255,.92);
}

.wk-story-quote span {
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

.wk-story-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.wk-story-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,.25);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  transition: transform .3s ease;
}

.wk-story-gallery img:hover { transform: scale(1.04); }

.wk-story-makers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 12px 16px;
}

.wk-story-avatars {
  display: flex;
  align-items: center;
}

.wk-story-avatars img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.35);
  margin-left: -8px;
  object-fit: cover;
}

.wk-story-avatars img:first-child { margin-left: 0; }

.wk-story-avatars span {
  margin-left: 6px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}

.wk-story-makers small {
  color: rgba(255,255,255,.65);
  font-size: 12px;
  text-align: right;
}

@media (max-width: 991px) {
  .wk-story-adjacent { display: none; }
  .wk-story-layout { min-height: 280px; padding: 36px 24px; }
}

.wk-story-mobile-stats {
  display: none;
  gap: 12px;
  margin-top: 20px;
}

.wk-story-chip-inline {
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  padding: 12px 18px;
  color: #fff;
  text-align: center;
  flex: 1;
}

.wk-story-chip-inline b {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.wk-story-chip-inline span {
  font-size: 11px;
  opacity: .75;
}

@media (max-width: 991px) {
  .wk-story-mobile-stats { display: flex; }
}

@media (max-width: 768px) {
  .wk-story-banner { border-radius: 18px; }
}

/* ---------- Seller Spotlight ---------- */
.wk-section-spotlight {
  background: linear-gradient(180deg, rgba(255,251,235,.7) 0%, #fff 100%);
}
.wk-spotlight-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fef3c7; color: #92400e;
  border: 1px solid #fde68a;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.wk-link-amber { color: #b45309 !important; }
.wk-link-amber:hover { color: #92400e !important; }

.wk-spotlight-feature {
  display: grid;
  grid-template-columns: 2fr 3fr;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #fde68a;
  box-shadow: 0 20px 40px rgba(251,191,36,.15);
  margin-bottom: 32px;
}
.wk-spotlight-media {
  position: relative;
  min-height: 320px;
}
.wk-spotlight-media > img {
  width: 100%; height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.wk-spotlight-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
}
.wk-spotlight-profile {
  position: absolute; bottom: 24px; left: 24px;
  display: flex; align-items: flex-end; gap: 14px;
  z-index: 2;
}
.wk-spotlight-avatar {
  width: 72px; height: 72px;
  border-radius: 16px;
  border: 3px solid #fff;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.wk-spotlight-profile b { display: block; color: #fff; font-size: 15px; }
.wk-spotlight-profile span {
  display: inline-flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,.85); font-size: 12px;
}

.wk-spotlight-body { padding: 28px 32px; }
.wk-spotlight-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 16px;
}
.wk-spotlight-tags span {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
.wk-spotlight-body h3 {
  font-size: 19px; font-weight: 800; margin: 0 0 12px;
}
.wk-spotlight-body blockquote {
  margin: 0 0 20px;
  padding-left: 16px;
  border-left: 3px solid #fbbf24;
  color: var(--wk-text-muted);
  font-size: 12px;
  font-style: italic;
  line-height: 1.6;
}
.wk-spotlight-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.wk-spotlight-stats > div {
  background: var(--wk-bg-soft);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
}
.wk-spotlight-stats i { display: block; margin: 0 auto 6px; color: var(--wk-primary); }
.wk-spotlight-stats b { display: block; font-size: 12px; font-weight: 800; }
.wk-spotlight-stats span { display: block; font-size: 11px; color: var(--wk-text-muted); }

.wk-spotlight-foot {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.wk-spotlight-products {
  display: flex; gap: 8px; flex: 1;
}
.wk-spotlight-products img {
  width: 56px; height: 56px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.wk-spotlight-prev-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wk-text-muted);
  margin-bottom: 16px;
}
.wk-spotlight-prev {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wk-spotlight-prev-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--wk-border);
  border-radius: 16px;
  padding: 16px;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
  color: var(--wk-text);
}
.wk-spotlight-prev-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  border-color: #fde68a;
  transform: translateY(-2px);
}
.wk-spotlight-prev-card img {
  width: 48px; height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.wk-spotlight-prev-card b { display: block; font-size: 12px; margin-bottom: 2px; }
.wk-spotlight-prev-card span { display: block; font-size: 11px; color: var(--wk-text-muted); }
.wk-spotlight-prev-card em {
  display: block;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--wk-primary);
  margin-top: 4px;
}

@media (max-width: 991.98px) {
  .wk-spotlight-feature { grid-template-columns: 1fr; }
  .wk-spotlight-stats { grid-template-columns: repeat(3, 1fr); }
  .wk-spotlight-prev { grid-template-columns: repeat(2, 1fr); }
  .wk-spotlight-body { padding: 22px 20px; }
  .wk-spotlight-media,
  .wk-spotlight-media > img { min-height: 240px; }
}

@media (max-width: 575.98px) {
  .wk-spotlight-prev { grid-template-columns: 1fr; }
  .wk-spotlight-stats { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .wk-spotlight-profile { left: 16px; bottom: 16px; }
  .wk-spotlight-avatar { width: 56px; height: 56px; }
  .wk-spotlight-products img { width: 48px; height: 48px; }
}

/* ---------- Deals Timer (legacy removed) ---------- */

/* ---------- Top Sellers → see top-sellers.css ---------- */

/* ---------- Fresh Drops ---------- */
.wk-live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--wk-red); font-size: 12px; font-weight: 700; letter-spacing: .08em;
  margin-bottom: 8px;
}
.wk-live-dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--wk-red);
  animation: wk-pulse 1.4s infinite;
}
@keyframes wk-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,.6); }
  50% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}

.wk-fresh-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.wk-fresh-card {
  background: #fff;
  border-radius: var(--wk-radius);
  overflow: hidden;
  border: 1px solid var(--wk-border);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.wk-fresh-card:hover { transform: translateY(-2px); box-shadow: 0 18px 30px rgba(0,0,0,.08); }
.wk-fresh-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #f3f4f6; }
.wk-fresh-media img { width: 100%; height: 100%; object-fit: cover; background: #f3f4f6; }
.wk-fresh-tags { position: absolute; top: 8px; left: 8px; display: flex; gap: 6px; }
.wk-tag-new { background: var(--wk-red); color: #fff; padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 700; }
.wk-tag-cat { background: rgba(0,0,0,.7); color: #fff; padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 600; }
.wk-fresh-info { padding: 12px; }
.wk-fresh-info small { color: var(--wk-text-muted); font-size: 11px; }
.wk-fresh-info h4 { font-size: 11px; font-weight: 700; margin: 4px 0 8px; color: var(--wk-text); }
.wk-fresh-seller { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--wk-text-muted); }
.wk-fresh-seller img { width: 20px; height: 20px; border-radius: 999px; }
.wk-fresh-seller b { margin-left: auto; color: var(--wk-text); font-size: 11px; }

@media (max-width: 1199.98px) { .wk-fresh-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 991.98px) { .wk-fresh-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767.98px) { .wk-fresh-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ---------- Style Quiz ---------- */
.wk-section-quiz {
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #5b21b6 0%, #312e81 45%, #0f172a 100%);
  color: #fff;
}
.wk-style-gradient {
  background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wk-title-light { color: #fff !important; }
.wk-subtitle-light { color: rgba(255,255,255,.9) !important; }
.wk-icon-eyebrow.light { color: rgba(255,255,255,.9); }

.wk-quiz {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.wk-quiz-progress {
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,.85); font-size: 11px; margin: 32px 0 8px;
}
.wk-quiz-bar {
  height: 6px; background: rgba(255,255,255,.2);
  border-radius: 999px; overflow: hidden;
}
.wk-quiz-bar > div {
  height: 100%; background: #fff; border-radius: 999px;
  transition: width .5s ease;
}
.wk-quiz-intro { margin-top: 28px; color: rgba(255,255,255,.85); font-size: 11px; }
.wk-quiz-q { font-size: 19px; font-weight: 700; margin: 8px 0 24px; color: #fff; }
.wk-quiz-opts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.wk-quiz-opt {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  font-family: var(--wk-font);
  font-size: 13px;
}
.wk-quiz-opt:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.wk-quiz-opt.selected { background: #fff; color: var(--wk-primary-dark); }
.wk-quiz-emoji { font-size: 19px; }

@media (max-width: 600px) { .wk-quiz-opts { grid-template-columns: 1fr; } }

/* ---------- Community ---------- */
.wk-community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.wk-community-card {
  position: relative;
  border-radius: var(--wk-radius);
  overflow: hidden;
  color: #fff;
}
.wk-community-card:nth-child(1), .wk-community-card:nth-child(3), .wk-community-card:nth-child(7) { grid-row: span 2; }
.wk-community-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wk-community-card:hover img { transform: scale(1.05); }
.wk-community-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 14px;
  opacity: 1;
}
.wk-community-tag { color: var(--wk-primary-light); font-size: 11px; font-weight: 700; margin-bottom: 4px; }
.wk-community-overlay h4 { font-size: 12px; font-weight: 700; margin: 0 0 6px; }
.wk-community-meta { display: flex; justify-content: space-between; font-size: 11px; opacity: .9; }
.wk-community-meta span { display: inline-flex; align-items: center; gap: 4px; }

@media (max-width: 992px) {
  .wk-community-grid { grid-template-columns: repeat(3, 1fr); }
  .wk-community-card:nth-child(n) { grid-row: auto; }
}
@media (max-width: 600px) { .wk-community-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Stats + Trust ---------- */
.wk-stats-head { text-align: center; margin-bottom: 40px; max-width: 640px; margin-left: auto; margin-right: auto; }
.wk-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.wk-stat {
  background: #fff;
  padding: 24px 16px;
  text-align: center;
  border-radius: var(--wk-radius);
  border: 1px solid var(--wk-border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wk-stat-icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: var(--wk-gradient-soft);
  color: var(--wk-primary-dark);
  display: inline-flex; align-items: center; justify-content: center;
}
.wk-stat:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.06); }
.wk-stat b {
  display: block;
  font-size: 28px;
  font-weight: 800;
  background: var(--wk-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.wk-stat span { color: var(--wk-text-muted); font-size: 11px; }

.wk-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wk-trust {
  background: #fff;
  padding: 24px;
  border-radius: var(--wk-radius);
  border: 1px solid var(--wk-border);
}
.wk-trust-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--wk-gradient-soft);
  color: var(--wk-primary-dark);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.wk-trust h4 { font-size: 13px; font-weight: 700; margin: 0 0 6px; }
.wk-trust p { color: var(--wk-text-muted); font-size: 11px; margin: 0; line-height: 1.5; }

@media (max-width: 1199.98px) {
  .wk-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .wk-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .wk-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wk-trust-grid { grid-template-columns: 1fr; }
  .wk-stat { padding: 18px 12px; }
  .wk-stat b { font-size: 22px; }
}

/* ---------- Blog ---------- */
.wk-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wk-blog-card {
  background: #fff;
  border-radius: var(--wk-radius);
  overflow: hidden;
  border: 1px solid var(--wk-border);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  color: var(--wk-text);
}
.wk-blog-card:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(0,0,0,.08); }
.wk-blog-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.wk-blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wk-blog-card:hover .wk-blog-media img { transform: scale(1.05); }
.wk-blog-cat {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.95);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--wk-primary-dark);
}
.wk-blog-info { padding: 18px; }
.wk-blog-meta { color: var(--wk-text-muted); font-size: 12px; margin-bottom: 8px; }
.wk-blog-info h3 {
  font-size: 14px; font-weight: 700; margin: 0 0 8px; color: var(--wk-text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wk-blog-info p { color: var(--wk-text-muted); font-size: 11px; margin: 0 0 14px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wk-blog-read { display: inline-flex; align-items: center; gap: 6px; color: var(--wk-primary-dark); font-weight: 600; font-size: 11px; transition: gap .2s ease; }
.wk-blog-card:hover .wk-blog-read { gap: 10px; }

@media (max-width: 1199.98px) { .wk-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .wk-blog-grid { grid-template-columns: 1fr; } }

/* ---------- CTA Sell ---------- */
.wk-cta {
  background: var(--wk-gradient);
  color: #fff;
  border-radius: var(--wk-radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wk-cta::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.wk-cta::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}
.wk-cta > * { position: relative; z-index: 2; }
.wk-cta-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 16px;
}
.wk-cta h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 12px; }
.wk-cta p { font-size: 15px; opacity: .95; max-width: 560px; margin: 0 auto 28px; }
.wk-cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

@media (max-width: 767.98px) {
  .wk-cta { padding: 40px 20px; }
  .wk-cta h2 { font-size: 26px; }
}

@media (max-width: 575.98px) {
  .wk-cta { padding: 32px 16px; border-radius: 16px; }
  .wk-cta h2 { font-size: 22px; }
  .wk-cta p { font-size: 13px; margin-bottom: 20px; }
  .wk-cta-btns { flex-direction: column; }
  .wk-cta-btns .wk-btn { width: 100%; justify-content: center; }
}

/* ---------- Touch + compact layouts ---------- */
@media (hover: none) and (min-width: 768px) {
  .wk-product-add {
    opacity: 1;
    transform: none;
  }
  .wk-product:hover,
  .wk-fresh-card:hover,
  .wk-blog-card:hover,
  .wk-cat-card:hover {
    transform: none;
  }
  .wk-product:hover .wk-product-media img,
  .wk-cat-card:hover .wk-cat-img img {
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .wk-deals-top { margin-bottom: 24px; }
  .wk-timer-card { width: 100%; }
  .wk-picked-title { font-size: 20px; }
}

@media (max-width: 767.98px) {
  .wk-hero-benefits,
  .wk-hero-counter,
  .wk-hero .carousel-control-prev,
  .wk-hero .carousel-control-next {
    display: none;
  }
  .wk-hero-content { padding: 56px 0 40px; }
  .wk-hero-title { font-size: clamp(28px, 8vw, 34px); }
  .wk-hero-sub { font-size: 14px; margin-bottom: 22px; }
  .wk-hero-ctas {
    flex-direction: column;
    margin-bottom: 0;
    gap: 10px;
  }
  .wk-hero-ctas .wk-btn {
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 20px;
  }

  .wk-section-head .wk-head-actions { display: none; }
  .wk-scroll-dots { display: flex; }

  .wk-product-add { display: none; }
  .wk-product-info { padding: 10px 10px 12px; }
  .wk-product-name { -webkit-line-clamp: 2; font-size: 12px; }
  .wk-product-rating { flex-wrap: wrap; }
  .wk-product-rating .wk-reviews { font-size: 10px; }
  .wk-price-now { font-size: 14px; }
  .wk-product-discount { width: 38px; height: 38px; font-size: 10px; }

  .wk-deals-top { flex-direction: column; align-items: stretch; }
  .wk-timer-card { padding: 16px; }
  .wk-timer-boxes { justify-content: center; }
  .wk-timer-box { min-width: 64px; padding: 10px 12px; }
  .wk-section-deals .wk-product-scroll .wk-product {
    flex: 0 0 78%;
    min-width: 240px;
  }

  .wk-banner { border-radius: 20px; min-height: 200px; padding: 24px; }
  .wk-banner h3 { font-size: 22px; }
  .wk-banner-content { max-width: 100%; }
  .wk-banner .wk-btn { border-radius: 999px; }

  .wk-picked-head { margin-bottom: 18px; }
  .wk-picked-head .wk-scroll-nav { display: inline-flex; }
  .wk-section-picked .wk-product-scroll .wk-product {
    flex: 0 0 78%;
    min-width: 240px;
  }

  .wk-live-badge { font-size: 11px; flex-wrap: wrap; }
  .wk-community-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .wk-community-card:nth-child(n) { grid-row: auto; }
  .wk-fresh-info h4 { font-size: 11px; }
  .wk-fresh-seller { flex-wrap: wrap; }

  .wk-spotlight-feature { border-radius: 20px; }
  .wk-spotlight-foot { flex-direction: column; align-items: stretch; }
  .wk-spotlight-foot .wk-btn { width: 100%; justify-content: center; }
}

@media (max-width: 575.98px) {
  .wk-cat-scroll { gap: 16px; }
  .wk-cat-scroll .wk-cat-card { flex: 0 0 88px; min-width: 88px; }
  .wk-cat-name { font-size: 11px; }
  .wk-head-actions .wk-scroll-nav { display: none; }
  .wk-quiz-opts { grid-template-columns: 1fr; }
  .wk-quiz-opt { padding: 14px 14px; }
}

/* ========== Figma Make polish (existing sections only) ========== */
.wk-hero-content {
  padding: 48px 0 72px;
  max-width: 640px;
  width: 100%;
}
.wk-hero-ctas .wk-btn {
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
}
.wk-hero-cta-primary { font-size: 15px; }
.wk-hero-benefit-div {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.3);
  align-self: center;
}
.wk-hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  margin: 0;
  z-index: 4;
}
.wk-hero-dots [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  border: 0;
  opacity: 1;
  margin: 0 4px;
  text-indent: 0;
}
.wk-hero-dots .active {
  width: 28px;
  background: #fff;
}
.wk-hero .carousel-control-prev,
.wk-hero .carousel-control-next {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 1;
}

@media (min-width: 640px) {
  .wk-hero .carousel-item { height: 500px; min-height: 500px; }
}
@media (min-width: 768px) {
  .wk-hero .carousel-item { height: 600px; min-height: 600px; }
  .wk-hero-title { font-size: 56px; }
}
@media (min-width: 1024px) {
  .wk-hero .carousel-item { height: 680px; min-height: 680px; }
}

.wk-section-cats { background: #f9fafb; }
.wk-section-cats .wk-cat-img {
  width: 80px;
  height: 80px;
  aspect-ratio: auto;
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.wk-section-cats .wk-cat-card { flex: 0 0 80px; min-width: 80px; }
.wk-section-cats .wk-cat-see-inner {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  border-color: transparent;
}
@media (min-width: 768px) {
  .wk-section-cats .wk-cat-img { width: 96px; height: 96px; }
  .wk-section-cats .wk-cat-card { flex: 0 0 96px; min-width: 96px; }
}

.wk-section-banners { padding-top: 8px; }
.wk-banner {
  min-height: 200px;
  border-radius: 24px;
  padding: 28px;
}
.wk-banner h3 { font-size: 26px; font-weight: 900; }
.wk-banner .wk-btn { border-radius: 999px; }
@media (min-width: 768px) {
  .wk-banner { min-height: 224px; }
}

.wk-section-trending { background: linear-gradient(180deg, #f9fafb 0%, #fff 100%); }
.wk-section-trending .wk-icon-eyebrow i { color: #eab308; fill: #eab308; }

.wk-product {
  border-radius: 16px;
  border-color: #e5e7eb;
}
.wk-product:hover { border-color: #e9d5ff; box-shadow: 0 20px 40px rgba(0,0,0,.1); }
.wk-product-discount {
  width: auto;
  height: auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4444, #ec4899);
  box-shadow: 0 6px 14px rgba(236,72,153,.3);
  font-size: 11px;
}
.wk-product-badge {
  background: linear-gradient(90deg, #f59e0b, #ea580c);
  color: #fff;
}
.wk-product-info { padding: 16px 18px 18px; }
.wk-product-name { -webkit-line-clamp: 2; min-height: 2.4em; font-size: 13px; font-weight: 600; }
.wk-price-save {
  background: #f0fdf4;
  color: #16a34a;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
}
.wk-product-add {
  background: #7c3aed;
  border-radius: 999px;
  left: 50%;
  right: auto;
  transform: translate(-50%, 8px);
  width: max-content;
  padding: 10px 20px;
}
.wk-product:hover .wk-product-add { transform: translate(-50%, 0); }

.wk-section-deals {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa 0%, #fee2e2 50%, #fce7f3 100%);
}
.wk-timer-card {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}
.wk-timer-unit { text-align: center; }
.wk-timer-unit small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #4b5563;
}
.wk-timer-box {
  background: linear-gradient(135deg, #f97316, #ec4899);
  min-width: 56px;
  padding: 12px 14px;
}
.wk-timer-box small { display: none; }
.wk-timer-colon { color: #9ca3af; padding-bottom: 18px; }

.wk-section-picked-wrap { background: #fff; padding-top: 32px; padding-bottom: 32px; }
.wk-picked-panel {
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.wk-picked-panel::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.wk-picked-panel > * { position: relative; z-index: 1; }
.wk-picked-panel .wk-product { border: none; }

.wk-live-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.wk-live-badge {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}
.wk-live-dot { background: #22c55e; }
.wk-live-count { color: #9ca3af; font-size: 13px; }
.wk-tag-new { background: #22c55e; }

.wk-section-head-center {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.wk-blog-more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.wk-blog-more .wk-btn { border-radius: 999px; padding: 14px 28px; }

.wk-cta {
  border-radius: 20px;
  background: linear-gradient(90deg, #7c3aed 0%, #6d28d9 45%, #2563eb 100%);
  box-shadow: 0 20px 40px rgba(124,58,237,.25);
}
.wk-cta-btns .wk-btn { border-radius: 999px; }
.wk-cta .wk-btn-white { color: #7c3aed; }

@media (max-width: 767.98px) {
  .wk-hero .carousel-item {
    height: 400px;
    min-height: 400px;
  }
  .wk-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .wk-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .wk-hero-content {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 40px 0 56px;
    max-width: 100%;
  }
  .wk-hero-ctas { flex-direction: column; }
  .wk-hero-ctas .wk-btn { width: 100%; justify-content: center; }
  .wk-hero-benefits,
  .wk-hero-counter,
  .wk-hero .carousel-control-prev,
  .wk-hero .carousel-control-next { display: none; }
  .wk-picked-panel { padding: 20px 16px; border-radius: 18px; }
  .wk-picked-panel .wk-product-scroll .wk-product,
  .wk-section-deals .wk-product-scroll .wk-product {
    flex: 0 0 78%;
    min-width: 240px;
  }
}
