/* ═══════════════════════════════════════════════════════════
 * V28 HOMEPAGE — Complete Stylesheet
 * ═══════════════════════════════════════════════════════════
 * T-Shirt Planet · mytshirt.be
 * Design system: Charcoal #363030 + Lime #C1E53E
 * Fonts: Outfit (headings+body) · JetBrains Mono (labels)
 *
 * Sections:
 *   1. Hero
 *   2. Categories (Shop by Occasion)
 *   3. Trending  (Popular Designs)
 *   4. Virtual Try-On
 *   5. Express 24H
 *   6. Reviews
 *   7. Newsletter
 *   8. Fade-up animations
 *
 * All responsive rules included per section.
 * NO inline styles needed in HTML — everything lives here.
 * ═══════════════════════════════════════════════════════════ */


/* ─── Shared ──────────────────────────────────── */

.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #E63946;
    text-align: center;
    line-height: 1.6;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: #363030;
    text-align: center;
    margin: 4px 0 32px;
    letter-spacing: -0.5px;
    line-height: 1.12;
}


/* ═══════════════════════════════════════════════════════════
 1. HERO — Prototype Match
 ═══════════════════════════════════════════════════════════ */

/* ── Hero Container ─────────────────────────────────────── */
.v28-hero {
  contain: layout style;
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #1a1a2e;
  background-size: cover;
  background-position: center 30%;
}

/* ── Gradient Overlay ────────────────────────────────────── */
.v28-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(54, 48, 48, 0.85) 0%,
    rgba(54, 48, 48, 0.65) 35%,
    rgba(54, 48, 48, 0.15) 65%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── Content Wrapper ─────────────────────────────────────── */
.v28-hero > .e-con-inner,
.v28-hero > .v28-hero-content,
.v28-hero .v28-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ── Hero Badge ──────────────────────────────────────────── */
.v28-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFC633;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 28px;
  width: fit-content;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.v28-hero-badge .dot {
  width: 10px;
  height: 10px;
  background: #FFC633;
  border-radius: 50%;
  animation: v28pulse 2s ease infinite;
}

@keyframes v28pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Title ────────────────────────────────────────────────── */
.v28-hero .v28-hero-title,
.v28-hero .v28-hero-title .elementor-heading-title,
.v28-hero h1.elementor-heading-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.06;
  color: #ffffff;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 22px;
}

/* ── Title em — Lime Green ───────────────────────────────── */
.v28-hero h1 em,
.v28-hero .elementor-heading-title em {
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: #C1E53E;
  -webkit-text-fill-color: #C1E53E;
}

/* ── Description ─────────────────────────────────────────── */
.v28-hero .v28-hero-desc,
.v28-hero .v28-hero-desc p,
.v28-hero .v28-hero-desc .elementor-widget-container {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

/* ── Buttons Row ─────────────────────────────────────────── */
.v28-hero-btns,
.v28-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Primary Button ──────────────────────────────────────── */
.v28-hero .v28-hero-btn-primary .elementor-button,
.v28-hero-btn-primary,
a.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  background: #E63946;
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 24px rgba(230, 57, 70, 0.35);
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}

.v28-hero .v28-hero-btn-primary .elementor-button:hover,
.v28-hero-btn-primary:hover,
a.btn-hero-primary:hover {
  background: #CC2936;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(230, 57, 70, 0.45);
}

/* ── Secondary Button ────────────────────────────────────── */
.v28-hero .v28-hero-btn-secondary .elementor-button,
.v28-hero-btn-secondary,
a.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  background: #ffffff;
  color: #363030;
  border: none;
  box-shadow: none;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}

.v28-hero .v28-hero-btn-secondary .elementor-button:hover,
.v28-hero-btn-secondary:hover,
a.btn-hero-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ── Hero Responsive — Tablet ────────────────────────────── */
@media (max-width: 1024px) {
  .v28-hero {
    min-height: 460px;
  }
  .v28-hero > .e-con-inner,
  .v28-hero > .v28-hero-content,
  .v28-hero .v28-hero-content {
    padding: 48px 32px;
  }
  .v28-hero .v28-hero-title .elementor-heading-title,
  .v28-hero h1.elementor-heading-title {
    font-size: clamp(36px, 5vw, 54px);
  }
  .v28-hero .v28-hero-desc,
  .v28-hero .v28-hero-desc p {
    font-size: 19px;
    max-width: 440px;
  }
  .v28-hero .v28-hero-btn-primary .elementor-button,
  .v28-hero .v28-hero-btn-secondary .elementor-button {
    font-size: 18px;
    padding: 16px 28px;
  }
  .v28-hero-badge {
    font-size: 15px;
    padding: 8px 16px;
    margin-bottom: 20px;
  }
}

/* ── Hero Responsive — Mobile ────────────────────────────── */
@media (max-width: 768px) {
  .v28-hero {
    min-height: 420px;
  }
  .v28-hero::before {
    background: linear-gradient(
      180deg,
      rgba(54, 48, 48, 0.78) 0%,
      rgba(54, 48, 48, 0.55) 50%,
      rgba(54, 48, 48, 0.3) 100%
    );
  }
  .v28-hero > .e-con-inner,
  .v28-hero > .v28-hero-content,
  .v28-hero .v28-hero-content {
    padding: 40px 20px;
    align-items: flex-start;
  }
  .v28-hero .v28-hero-title .elementor-heading-title,
  .v28-hero h1.elementor-heading-title {
    font-size: 32px;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
  .v28-hero .v28-hero-desc,
  .v28-hero .v28-hero-desc p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .v28-hero .v28-hero-btn-primary .elementor-button,
  .v28-hero .v28-hero-btn-secondary .elementor-button,
  .v28-hero-btn-primary,
  .v28-hero-btn-secondary {
    font-size: 17px;
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }
  .v28-hero-btns,
  .v28-hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .v28-hero-badge {
    font-size: 13px;
    padding: 7px 14px;
    gap: 8px;
    margin-bottom: 16px;
  }
  .v28-hero-badge .dot {
    width: 8px;
    height: 8px;
  }
}

/* ── Hero Responsive — Small Mobile ──────────────────────── */
@media (max-width: 480px) {
  .v28-hero {
    min-height: 380px;
  }
  .v28-hero > .e-con-inner,
  .v28-hero > .v28-hero-content,
  .v28-hero .v28-hero-content {
    padding: 32px 16px;
  }
  .v28-hero .v28-hero-title .elementor-heading-title,
  .v28-hero h1.elementor-heading-title {
    font-size: 28px;
    letter-spacing: -0.8px;
  }
  .v28-hero .v28-hero-desc,
  .v28-hero .v28-hero-desc p {
    font-size: 15px;
  }
  .v28-hero .v28-hero-btn-primary .elementor-button,
  .v28-hero .v28-hero-btn-secondary .elementor-button {
    font-size: 16px;
    padding: 13px 24px;
  }
}

/* ═══════════════════════════════════════════
   2. CATEGORIES
   ═══════════════════════════════════════════ */

.v28-categories {
    padding: 64px 0 48px;
    background: #FAFAFA;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
}

.cat-card {
    background: #f0f2fa;
    padding: 26px 28px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: #363030;                /* prevent WP link color bleeding into SVG */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cat-card-inner {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cat-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: #dde1f3;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #363030;                /* SVG stroke="currentColor" → charcoal */
}

.cat-card-icon svg {
    width: 28px;
    height: 28px;
}

.cat-name {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #363030;
}

.cat-count {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #7a7575;
}

.v28-categories .btn-ghost {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #7A7575;
    border: 1px solid #E0DEDE;
    border-radius: 6px;
    padding: 14px 28px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 32px;
}

.v28-categories .btn-ghost:hover {
    background: #363030;
    color: #fff;
    border-color: #363030;
}

.v28-categories .section-cta {
    text-align: center;
    margin-top: 32px;
}

/* Categories responsive */
@media (max-width: 1024px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 24px; }
    .v28-categories .section-title { font-size: 42px; }
}

@media (max-width: 768px) {
    .v28-categories { padding: 48px 0 36px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 16px; }
    .v28-categories .section-title { font-size: 32px; margin-bottom: 20px; }
    .cat-card { padding: 12px 14px; border-radius: 12px; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
    .cat-card-icon { width: 38px; height: 38px; min-width: 38px; border-radius: 10px; }
    .cat-card-icon svg { width: 20px; height: 20px; }
    .cat-name { font-size: 15px; }
    .cat-count { font-size: 12px; }
    .v28-categories .btn-ghost { font-size: 15px; padding: 12px 24px; width: calc(100% - 32px); display: block; margin: 24px 16px 0; text-align: center; box-sizing: border-box; }
}

@media (max-width: 480px) {
    .cat-grid { gap: 8px; padding: 0 14px; }
    .cat-card { padding: 10px 10px; gap: 6px; border-radius: 10px; }
    .cat-card-icon { width: 34px; height: 34px; min-width: 34px; }
    .cat-card-icon svg { width: 18px; height: 18px; }
    .cat-name { font-size: 14px; }
    .cat-count { font-size: 11px; }
}


/* ═══════════════════════════════════════════
   3. TRENDING
   ═══════════════════════════════════════════ */

.v28-trending {
    padding: 64px 0 48px;
    background: #fff;
}

.v28-trending .trending-header {
    text-align: center;
    margin-bottom: 28px;
}

.trending-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 16px;
}

.trending-tab {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #888;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 6px 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.trending-tab.active {
    font-weight: 700;
    color: #363030;
    border-bottom: 2.5px solid #C1E53E;
}

.trending-tab:hover {
    color: #363030;
}

/* Products grid */
.products-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 32px 4px;
    max-width: 1360px;
    margin: 0 auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.products-grid::-webkit-scrollbar { display: none; }

/* Product card */
.product-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 260px;
    background: #FAFAFA;
    border: 1px solid #EEECEC;
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.product-img {
    aspect-ratio: 1 / 1;
    background: #F5F4F4;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover overlay — hidden */
.product-img .action-btn {
    display: none;
}

/* Card info */
.product-info {
    padding: 16px;
}

.product-name {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #363030;
    line-height: 1.3;
    margin-bottom: 6px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.cat-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #7A7575;
}

/* Language badges */
.badge-lang {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    border-radius: 10px;
    padding: 2px 7px;
}

.badge-lang-nl { background: rgba(232,144,12,0.08); color: #E85D3A; }
.badge-lang-fr { background: rgba(59,130,246,0.08); color: #2563EB; }
.badge-lang-de { background: rgba(239,68,68,0.08); color: #16A34A; }
.badge-lang-uni { background: rgba(45,127,249,0.08); color: #FFB74D; }

.badge-express {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    color: #E63946;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #363030;
}

.wear-it-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #363030;
    background: #fff;
    border: 1px solid #363030;
    border-radius: 8px;
    padding: 7px 16px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.wear-it-btn:hover {
    background: #363030;
    color: #fff;
}

/* Carousel controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.carousel-arrow {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #E0DEDE;
    border-radius: 50%;
    font-size: 20px;
    color: #363030;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
}

.carousel-arrow:hover {
    background: #363030;
    color: #fff;
}

.v28-trending .section-cta {
    text-align: center;
    margin-top: 48px;
}

.v28-trending .btn-outline {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #363030;
    border: 1px solid #363030;
    border-radius: 6px;
    padding: 14px 28px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.v28-trending .btn-outline:hover {
    background: #363030;
    color: #fff;
}

/* Trending responsive */
@media (max-width: 1024px) {
    .v28-trending .section-title { font-size: 42px; }
    .product-card { flex: 0 0 calc(33.33% - 14px); }
}

@media (max-width: 768px) {
    .v28-trending { padding: 48px 0 36px; }
    .trending-tab { font-size: 14px; padding: 6px 10px; }
    .trending-tabs { flex-wrap: wrap; }
    .products-grid { padding: 0 16px 4px; gap: 14px; }
    .product-card { flex: 0 0 75vw; min-width: 240px; }
    .product-name { font-size: 15px; }
    .product-price { font-size: 18px; }
    .wear-it-btn { font-size: 13px; padding: 6px 12px; }
    .carousel-arrow { width: 32px; height: 32px; font-size: 16px; }
    .v28-trending .btn-outline { font-size: 15px; padding: 12px 24px; width: calc(100% - 32px); display: block; margin: 36px 16px 0; text-align: center; box-sizing: border-box; }
    .v28-trending .section-cta { margin-top: 0; }
}

@media (max-width: 480px) {
    .product-card { flex: 0 0 78vw; }
    .product-info { padding: 12px; }
    .product-name { font-size: 14px; }
    .product-price { font-size: 17px; }
}


/* ═══════════════════════════════════════════
   4. VIRTUAL TRY-ON — Version B (Approved)
   ═══════════════════════════════════════════ */

.v28-tryon {
    padding: 48px 32px;
    background: #fff;
}

.tryon-card {
    background: linear-gradient(145deg, #4A4545, #5A5454);
    border-radius: 24px;
    padding: 56px 64px;
    display: flex;
    flex-direction: row-reverse;
    gap: 56px;
    align-items: center;
    overflow: hidden;
    max-width: 1360px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.tryon-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,57,70,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.tryon-visual-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.tryon-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.tryon-phone-frame {
    width: 260px;
    height: 420px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 28px;
    border: 3px solid rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.tryon-phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    z-index: 4;
}

.tryon-phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
}

.tryon-before-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 25px;
}

.tryon-after-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 2;
    border-radius: 25px;
    clip-path: inset(0 0 100% 0);
    animation: scanReveal 5s ease-in-out infinite;
}

.tryon-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E63946, #E63946, transparent);
    box-shadow: 0 0 12px rgba(230,57,70,0.6), 0 0 24px rgba(230,57,70,0.3);
    z-index: 3;
    animation: scanLine 5s ease-in-out infinite;
}

.tryon-btn {
    display: inline-block;
    background: #E63946;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: 22px 56px;
    border-radius: 14px;
    text-decoration: none;
    text-align: center;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    transition: all 0.2s ease;
    animation: badgePulse 2s ease-in-out infinite;
}

.tryon-btn:hover {
    background: #d32f3f;
    transform: translateY(-2px);
}

.tryon-text {
    flex: 1;
}

.tryon-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.tryon-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 560px;
}

.tryon-stats {
    display: flex;
    align-items: stretch;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-bottom: 24px;
}

.tryon-stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tryon-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.tryon-stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.tryon-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.tryon-features {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0;
}

.tryon-feature {
    flex: 1;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    padding: 0 8px;
}

@keyframes scanLine {
    0%      { top: 0%;   opacity: 1; }
    42%     { top: 98%;  opacity: 1; }
    46%     { top: 98%;  opacity: 0; }
    100%    { top: 98%;  opacity: 0; }
}

@keyframes scanReveal {
    0%        { clip-path: inset(0 0 100% 0); opacity: 1; }
    42%       { clip-path: inset(0 0 0% 0);   opacity: 1; }
    55%       { clip-path: inset(0 0 0% 0);   opacity: 1; }
    72%       { clip-path: inset(0 0 0% 0);   opacity: 0; }
    72.01%    { clip-path: inset(0 0 100% 0); opacity: 0; }
    88%       { clip-path: inset(0 0 100% 0); opacity: 1; }
    100%      { clip-path: inset(0 0 100% 0); opacity: 1; }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: rgba(230,57,70,0.35) 0 4px 20px; }
    50% { box-shadow: rgba(230,57,70,0.55) 0 6px 28px; }
}

@media (max-width: 1024px) {
    .tryon-card { padding: 44px 40px; gap: 36px; }
    .tryon-phone-frame { width: 220px; height: 360px; }
    .tryon-title { font-size: 38px; }
    .tryon-desc { font-size: 17px; }
    .tryon-stat-num { font-size: 26px; }
    .tryon-btn { font-size: 18px; padding: 18px 40px; }
}

@media (max-width: 768px) {
    .v28-tryon { padding: 36px 16px; }
    .tryon-card { flex-direction: column; padding: 32px 24px; gap: 24px; margin: 0; }
    .tryon-visual-top { order: -1; }
    .tryon-phone-frame { width: 200px; height: 320px; }
    .tryon-title { font-size: 30px; text-align: center; }
    .tryon-desc { font-size: 17px; text-align: center; max-width: 100%; line-height: 1.6; }
    .tryon-stats { padding: 16px 0; }
    .tryon-stat-num { font-size: 22px; }
    .tryon-stat-label { font-size: 10px; }
    .tryon-features { flex-direction: column; align-items: center; gap: 8px; }
    .tryon-feature { font-size: 13px; }
    .tryon-visual-top { width: 100%; align-self: stretch; }
    .tryon-cta-group { width: 100%; }
    .tryon-btn { font-size: 20px; padding: 18px 36px; max-width: 100%; width: 100%; box-sizing: border-box; text-align: center; display: block; }
}

@media (max-width: 480px) {
    .v28-tryon { padding: 36px 12px; }
    .tryon-card { padding: 24px 18px; border-radius: 16px; margin: 0; }
    .tryon-phone-frame { width: 180px; height: 290px; }
    .tryon-title { font-size: 28px; }
    .tryon-desc { font-size: 16px; line-height: 1.7; }
    .tryon-stat-num { font-size: 20px; }
    .tryon-stat-label { font-size: 9px; }
    .tryon-visual-top { width: 100%; align-self: stretch; }
    .tryon-cta-group { width: 100%; }
    .tryon-btn { font-size: 18px; padding: 16px 28px; max-width: 100%; width: 100%; box-sizing: border-box; text-align: center; display: block; }
}

/* ═══════════════════════════════════════════
   5. EXPRESS 24H
   ═══════════════════════════════════════════ */

.v28-express {
    padding: 48px 32px;
    background: #FAFAFA;
}

.xpress-card {
    background: linear-gradient(135deg, #FFC633 0%, #FFD866 40%, #FFBA08 100%);
    border-radius: 20px;
    padding: 36px 44px 32px;
    max-width: 1360px;
    margin: 0 auto;
}

.xpress-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 32px;
}

.xpress-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #363030;
    background: rgba(54,48,48,0.1);
    border-radius: 6px;
    padding: 6px 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.xpress-title {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #363030;
    line-height: 1.1;
}

.xpress-title em {
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    color: #fff;
    background: #363030;
    padding: 2px 16px 6px;
    border-radius: 10px;
    display: inline-block;
}

.xpress-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #363030;
    max-width: 400px;
    line-height: 1.5;
}

.xpress-stepper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 0 20px;
    gap: 0;
}

.xpress-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Connector line between steps */
.xpress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(50% + 40px);
    right: calc(-50% + 40px);
    height: 3px;
    background: rgba(54,48,48,0.15);
    z-index: 0;
}

.xpress-connector { display: none; }

.xpress-label img.emoji {
    filter: brightness(0) saturate(100%);
}

.xpress-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(54,48,48,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 32px;
}

.xpress-step-icon svg {
    width: 32px;
    height: 32px;
}

.xpress-step-icon img.emoji { display: none; }

.xpress-step-label {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #363030;
}

.xpress-step-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #363030;
    opacity: 0.7;
    margin-top: 4px;
}

.xpress-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.xpress-btns {
    display: flex;
    gap: 16px;
}

.btn-express {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFC633;
    background: #363030;
    border: none;
    border-radius: 6px;
    padding: 14px 32px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-express:hover { background: #1a1a1a; transform: translateY(-2px); }

.btn-3d {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: #E63946;
    border: none;
    border-radius: 6px;
    padding: 14px 32px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-3d:hover { background: #d42f3d; transform: translateY(-2px); }

.xpress-tags {
    display: flex;
    gap: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #363030;
}

/* Express responsive */
@media (max-width: 1024px) {
    .xpress-title { font-size: 42px; }
    .xpress-desc { font-size: 17px; }
}

@media (max-width: 768px) {
    .v28-express { padding: 36px 16px; }
    .xpress-card { padding: 24px 20px; border-radius: 16px; margin: 0; }
    .xpress-top { flex-direction: column; gap: 12px; }
    .xpress-top > div:first-child { width: 100%; align-self: stretch; }
    .xpress-stepper { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0; }
    .xpress-step { background: rgba(54,48,48,0.06); border-radius: 16px; padding: 28px 12px 22px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .xpress-step:not(:last-child)::after { display: none; }
    .xpress-step-icon { width: 80px; height: 80px; margin: 0; }
    .xpress-step-icon svg { width: 38px; height: 38px; }
    .xpress-step-label { font-size: 17px; }
    .xpress-step-time { font-size: 14px; color: #363030; font-weight: 700; opacity: 0.7; }
    .xpress-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
    .xpress-btns { flex-direction: column; width: 100%; }
    .btn-express, .btn-3d { font-size: 16px; padding: 12px 20px; width: 100%; text-align: center; box-sizing: border-box; }
    .xpress-tags { flex-wrap: wrap; gap: 8px 16px; font-size: 13px; }
}

@media (max-width: 480px) {
    .v28-express { padding: 36px 12px; }
    .xpress-card { padding: 20px 16px; margin: 0; }
    .xpress-desc { font-size: 14px; }
    .xpress-step { padding: 24px 10px 18px; }
    .xpress-step-icon { width: 72px; height: 72px; }
    .xpress-step-icon svg { width: 38px; height: 38px; }
    .xpress-step-label { font-size: 17px; }
    .xpress-step-time { font-size: 13px; color: #363030; font-weight: 700; opacity: 0.7; }
}


/* ═══════════════════════════════════════════
   6. REVIEWS
   ═══════════════════════════════════════════ */

.v28-reviews {
    padding: 64px 0 48px;
    background: #FAFAFA;
}

.reviews-header {
    text-align: center;
    margin-bottom: 36px;
}

.reviews-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px 4px;
}

.reviews-grid::-webkit-scrollbar { display: none; }

.review-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 280px;
    background: #fff;
    border: 1px solid #EEECEC;
    border-radius: 10px;
    padding: 40px;
    scroll-snap-align: start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.review-stars {
    font-size: 22px;
    color: #FFC633;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #4A4545;
    line-height: 1.65;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: #FFF8EC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #9A5F0D;
}

.review-author-name {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #363030;
}

.review-author-meta {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #7A7575;
}

.reviews-see-all {
    text-align: center;
    margin-top: 32px;
}

.reviews-see-all a {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #363030;
    text-decoration: none;
}

.reviews-see-all a:hover { color: #E63946; }

/* Reviews responsive */
@media (max-width: 1024px) {
    .v28-reviews .section-title { font-size: 42px; }
    .review-card { flex: 0 0 calc(33.33% - 14px); }
}

@media (max-width: 768px) {
    .v28-reviews { padding: 48px 0 36px; }
    .reviews-grid { gap: 14px; padding: 0 16px 8px; }
    .review-card { flex: 0 0 80vw; min-width: 250px; padding: 24px; }
    .review-text { font-size: 15px; }
    .review-stars { font-size: 18px; }
    .review-author-name { font-size: 14px; }
    .review-author-meta { font-size: 11px; }
    .reviews-see-all a { font-size: 15px; }
}

@media (max-width: 480px) {
    .review-card { flex: 0 0 85vw; padding: 20px; }
    .review-text { font-size: 14px; line-height: 1.55; }
    .review-avatar { width: 40px; height: 40px; font-size: 18px; }
}


/* ═══════════════════════════════════════════
   7. NEWSLETTER
   ═══════════════════════════════════════════ */

.v28-newsletter {
    padding: 48px 0 64px;
    background: #fff;
}

.newsletter-inner {
    background: #FAFAFA;
    border-radius: 24px;
    padding: 56px;
    text-align: center;
    max-width: 1360px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: 'Outfit', sans-serif;
    font-size: 58px;
    font-weight: 800;
    color: #363030;
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.newsletter-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #7A7575;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 640px;
    margin: 0 auto 16px;
}

.newsletter-input {
    flex: 1;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    padding: 18px 26px;
    border: 2px solid #E0DEDE;
    border-radius: 6px;
    background: #fff;
    color: #363030;
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-input:focus { border-color: #C1E53E; }
.newsletter-input::placeholder { color: #B0ABAB; }

.btn-subscribe {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #E63946;
    border: none;
    border-radius: 6px;
    padding: 18px 32px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-subscribe:hover { background: #d42f3d; transform: translateY(-2px); }

.newsletter-consent {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #7A7575;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-consent a { color: #E63946; text-decoration: none; }

.newsletter-perks {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #7A7575;
}

/* Newsletter responsive */
@media (max-width: 1024px) {
    .newsletter-title { font-size: 42px; }
}

@media (max-width: 768px) {
    .v28-newsletter { padding: 36px 0 48px; }
    .newsletter-inner { padding: 32px 20px; border-radius: 18px; margin: 0 16px; }
    .newsletter-title { font-size: 28px; }
    .newsletter-desc { font-size: 15px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-input { font-size: 16px; padding: 14px 18px; width: 100%; box-sizing: border-box; }
    .btn-subscribe { width: 100%; font-size: 16px; padding: 14px 24px; box-sizing: border-box; }
    .newsletter-consent { font-size: 12px; flex-wrap: wrap; text-align: center; }
    .newsletter-perks { flex-direction: column; gap: 8px; font-size: 14px; }
}

@media (max-width: 480px) {
    .newsletter-inner { padding: 28px 16px; margin: 0 12px; border-radius: 14px; }
    .newsletter-title { font-size: 24px; }
    .newsletter-desc { font-size: 14px; }
    .newsletter-input { font-size: 15px; padding: 12px 16px; }
}


/* ═══════════════════════════════════════════
   8. FADE-UP ANIMATION
   ═══════════════════════════════════════════ */

.v28-fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.v28-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.v28-fade-up-d1 { transition-delay: 0.15s; }
.v28-fade-up-d2 { transition-delay: 0.3s; }
.v28-fade-up-d3 { transition-delay: 0.45s; }


/* ═══════════════════════════════════════════
   OVERFLOW PROTECTION
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
    .v28-categories,
    .v28-trending,
    .v28-tryon,
    .v28-express,
    .v28-reviews,
    .v28-newsletter {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Elementor inner container padding reset */
    .v28-categories > .e-con-inner,
    .v28-trending > .e-con-inner,
    .v28-tryon > .e-con-inner,
    .v28-express > .e-con-inner,
    .v28-reviews > .e-con-inner,
    .v28-newsletter > .e-con-inner {
        padding-left: 0;
        padding-right: 0;
    }

    .products-grid,
    .reviews-grid {
        overflow-x: auto;
        max-width: 100vw;
        -webkit-overflow-scrolling: touch;
    }
}

/* ── Section header: tighten label → title gap ─────────────────
   flex gap: 20px cannot be reduced by child margins (CSS spec).
   Override --row-gap CSS variable on the specific containers.
   Works at all breakpoints — no media query needed.
   ──────────────────────────────────────────────────────────── */
.elementor-element-87402f3,
.elementor-element-0d8e1bd,
.elementor-element-0fd5861 {
  --row-gap: 8px !important;
}

/* Desktop/tablet: swap title and desc */
@media (min-width: 768px) {
  .xpress-top {
    display: flex;
    flex-direction: row;
  }

  .xpress-top > div {
    order: 2;
  }

  .xpress-top > p.xpress-desc {
    order: 1;
  }
}
