/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  z-index: 0;
}

/* Inner container */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(100% - 200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 30px;
}

/* ── LEFT: Text ── */
.hero-text {
  flex: 0 0 50%;
  max-width: 50%;
  height: 250px;
}



.hero-text h1 {
  /* font-family: 'Montserrat', sans-serif; */
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* ── RIGHT: Image ── */
.hero-image {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  animation: floatUp 0.8s ease-out both;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   TABLET VIEW — 768px to 1199px
   ══════════════════════════════════════ */

/* Large Tablet: 992px – 1199px */
@media (max-width: 1199px) {
  .hero-section {
    min-height: 320px;
    max-height: 380px;
  }

  .hero-bg {
    object-fit: cover;
    object-position: center;
  }

  .hero-inner {
    max-width: calc(100% - 80px);
    padding: 10px 0;
    gap: 24px;
    align-items: center;
  }

  .hero-text {
    flex: 0 0 50%;
    max-width: 50%;
    height: 100px;
  }

  .hero-text h1 {
    font-size: clamp(1.7rem, 3.8vw, 2.8rem);
    margin-bottom: 12px;
  }

  .hero-text p {
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  }

  .hero-image {
    flex: 0 0 47%;
    max-width: 47%;
    align-items: center;
  }

  .hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));
  }
}

/* Small Tablet: 768px – 991px */
@media (max-width: 991px) {
  .hero-section {
    min-height: 220px;
    max-height: 300px;
  }

  .hero-bg {
    object-fit: cover;
    object-position: center center;
  }

  .hero-inner {
    max-width: 100%;
    padding: 10px 28px;
    gap: 16px;
    align-items: center;
  }

  .hero-text {
    flex: 0 0 52%;
    max-width: 52%;
  }

  .hero-text h1 {
    font-size: clamp(1.3rem, 4vw, 2rem);
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .hero-text p {
    font-size: clamp(0.78rem, 2.2vw, 1rem);
    line-height: 1.4;
  }

  .hero-image {
    flex: 0 0 46%;
    max-width: 46%;
    align-items: center;
    justify-content: flex-end;
  }

  .hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4));
  }
}

/* ══════════════════════════════════════
   MOBILE VIEW — up to 767px
   ══════════════════════════════════════ */

/* Large Mobile: 576px – 767px */
@media (max-width: 767px) {
  .hero-section {
    min-height: 140px;
    max-height: 180px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
  }

  .hero-inner {
    max-width: 100%;
    padding: 8px 14px;
    gap: 10px;
    align-items: center;
    min-height: unset;
  }

  .hero-text {
    flex: 0 0 52%;
    max-width: 52%;
    height: 60px;
  }

  .hero-text h1 {
    font-size: clamp(1rem, 5vw, 1.5rem);
  }

  .hero-text p {
    font-size: clamp(0.65rem, 2.8vw, 0.85rem);
    line-height: 1.3;
  }

  .hero-image {
    flex: 0 0 44%;
    max-width: 44%;
    align-items: center;
    justify-content: flex-start;
    padding-left: 6px;
  }

  .hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
    animation: none; /* disable animation on mobile for perf */
  }
}

/* Small Mobile: up to 575px */
@media (max-width: 575px) {
  .hero-section {
    min-height: 110px;
    max-height: 150px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
  }

  .hero-inner {
    max-width: 100%;
    padding: 6px 12px;
    gap: 8px;
    align-items: center;
    min-height: unset;
  }

  .hero-text {
    flex: 0 0 54%;
    max-width: 54%;
    height: 60px;
  }

  .hero-text h1 {
    font-size: clamp(0.9rem, 5.5vw, 1.25rem);
    margin-bottom: 4px;
  }

  .hero-text p {
    font-size: clamp(0.58rem, 3vw, 0.75rem);
    line-height: 1.3;
  }

  .hero-image {
    flex: 0 0 44%;
    max-width: 44%;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
    padding-left: 6px;
  }

  .hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.4));
    animation: none;
  }
  .stat-label{
    font-size: 0.7rem !important;
  }
}

/* Extra Small: up to 380px (very small phones) */
@media (max-width: 380px) {
  .hero-section {
    min-height: 95px;
    max-height: 130px;
  }

  .hero-inner {
    padding: 5px 10px;
    gap: 6px;
  }

  .hero-text h1 {
    font-size: clamp(0.82rem, 5.8vw, 1.05rem);
    margin-bottom: 3px;
  }

  .hero-text p {
    font-size: clamp(0.55rem, 3.2vw, 0.68rem);
  }
}
 /* ── PREVENTION SECTION ── */
  .prevention-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 80px;
  }

  .section-heading {
    margin-bottom: 10px;
  }

  .section-heading h2 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .section-heading h2 span {
    color: #bf023f;
  }

  .section-heading p {
    margin-top: 10px;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: #444;
    line-height: 1.65;
    max-width: 620px;
  }

  /* ── SCROLL WRAPPER ── */
  .cards-scroll-wrapper {
    position: relative;
    margin-top: 45px;
  }

  .cards-scroll-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    scroll-behavior: smooth;
  }

  .cards-scroll-track::-webkit-scrollbar {
    display: none;
  }

  /* ── NAV ARROWS ── */
  .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    cursor: pointer;
    box-shadow: 0 2px 14px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, background 0.2s;
    padding: 0;
  }

  .scroll-btn:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.28);
    background: #f7f7f7;
  }

  .scroll-btn svg {
    width: 22px;
    height: 22px;
    display: block;
  }

  .scroll-btn.prev { left: -23px; }
  .scroll-btn.next { right: -23px; }

  /* ── FEATURE CARD ── */
  .feature-card {
    flex: 0 0 337.94px;
    width: 337.94px;
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
    border: 1.88px solid rgba(172, 172, 172, 1);
    background: #fff;
    cursor: pointer;
    box-shadow: 0px 7.51px 7.51px 0px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(191,2,63,0.18);
    border-color: #bf023f;
  }

  /* Image takes ~75% of card height */
  .feature-card .card-img-wrap {
    width: 100%;
    aspect-ratio: 338 / 330;
    overflow: hidden;
    flex-shrink: 0;
  }

  .feature-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.45s ease;
    display: block;
  }

  .feature-card:hover .card-img {
    transform: scale(1.05);
  }

  .feature-card .card-content {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .feature-card .card-content h3 {
    font-size: 0.97rem;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.25;
    margin: 0 0 6px 0;
  }

  .feature-card .card-content h3 span {
    color: #bf023f;
  }

  .feature-card .card-content p {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.55;
    margin: 0;
  }

  /* ── BIG CARD ──
  .big-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1.88px solid rgba(172, 172, 172, 1);
    background: #fff;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    box-shadow: 0px 7.51px 7.51px 0px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .big-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(191,2,63,0.18);
    border-color: #bf023f;
  }

  .big-card .card-img-wrap {
    flex: 0 0 55%;
    height: 270px;
    overflow: hidden;
  }

  .big-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.45s ease;
    display: block;
  }

  .big-card:hover .card-img {
    transform: scale(1.04);
  }

  .big-card .card-content {
    flex: 1;
    padding: 28px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .big-card .card-content h3 {
    font-size: clamp(1.1rem, 2vw, 1.7rem);
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.2;
    margin: 0 0 12px 0;
  }

  .big-card .card-content h3 span {
    color: #bf023f;
  }

  .big-card .card-content p {
    font-size: clamp(0.78rem, 1.1vw, 0.92rem);
    color: #555;
    line-height: 1.65;
    margin: 0;
  } */

  /* ── TABLET ── */
  @media (max-width: 1199px) {
    .feature-card {
      flex: 0 0 280px;
      width: 280px;
    }
  }

  /* ── MOBILE ── */
  @media (max-width: 767px) {
    .scroll-btn { display: none; }

    .cards-scroll-wrapper {
      margin-top: 20px;
    }

    .cards-scroll-track {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      overflow-x: visible;
      scroll-snap-type: none;
      padding-bottom: 0;
    }

    .feature-card {
      flex: unset;
      width: 100%;
    }

    .feature-card .card-img-wrap {
      aspect-ratio: 4 / 3;
    }

    /* Last odd card full width */
    .feature-card:last-child:nth-child(odd) {
      grid-column: 1 / -1;
    }

    .feature-card .card-content h3 {
      font-size: 0.78rem;
    }

    .feature-card .card-content p {
      font-size: 0.68rem;
    }

    .big-card {
      flex-direction: column;
    }

    .big-card .card-img-wrap {
      flex: unset;
      height: 190px;
      width: 100%;
    }

    .big-card .card-content {
      padding: 16px 18px 20px;
    }
  }

  @media (max-width: 480px) {
    .cards-scroll-track { gap: 10px; }

    .feature-card .card-content {
      padding: 10px 12px 14px;
    }

    .feature-card .card-content h3 { font-size: 0.7rem; }
    .feature-card .card-content p  { font-size: 0.62rem; }
  }
/* How it works section  */
  .how-section {
      padding: 80px 20px;
      max-width: 1380px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: flex-start;
    }

    .video-wrapper {
      position: relative;
      border-radius: var(--border-radius);
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
      aspect-ratio: 16/9;
      background: #000;
    }

    .video-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .video-wrapper:hover video {
      transform: scale(1.03);
    }
    .video-wrapper:hover iframe {
      transform: scale(1.03);
    } 
      .video-wrapper iframe,
    .modal-container iframe {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Gradient overlay */
    .video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.15) 50%,
        rgba(0,0,0,0.05) 100%
      );
      transition: background 0.3s ease;
    }

    .video-wrapper:hover .video-overlay {
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.05) 60%,
        transparent 100%
      );
    }

    /* Play button */
    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 45px;
      height: 45px;
      background: rgba(255,255,255,0.92);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .video-wrapper:hover .play-btn {
      transform: translate(-50%, -50%) scale(1.12);
      background: #fff;
    }

    .play-btn svg {
      margin-left: 4px;
      fill: var(--brand);
      width: 35px;
      height: 35px;
    }

    /* Muted badge */
    .muted-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(0,0,0,0.55);
      color: #fff;
      font-size: 11px;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      letter-spacing: 0.5px;
      padding: 4px 10px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 5px;
      backdrop-filter: blur(6px);
    }

    .muted-badge svg {
      width: 13px;
      height: 13px;
      fill: #fff;
      opacity: 0.85;
    }
    .content-block .section-label {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      letter-spacing: -0.5px;
      line-height: 1.15;
      margin-bottom: 22px;
    }

    .section-label .highlight { color: var(--brand); }
    .section-label .normal    { color: var(--dark); }

    .content-block p {
      font-size: 15.5px;
      line-height: 1.8;
      color: #374151;
      text-align: justify;
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.88);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      backdrop-filter: blur(6px);
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .modal-container {
      position: relative;
      width: 90vw;
      max-width: 960px;
      aspect-ratio: 16/9;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,0.6);
      transform: scale(0.88);
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    }

    .modal-overlay.active .modal-container {
      transform: scale(1);
    }

    .modal-container video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .close-btn {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.15);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
      backdrop-filter: blur(4px);
      z-index: 10;
    }

    .close-btn:hover { background: rgba(255,255,255,0.3); }

    .close-btn svg {
      width: 18px;
      height: 18px;
      stroke: #fff;
      stroke-width: 2.5;
      fill: none;
    }
    @media (max-width: 768px) {
      .how-section {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 40px 20px;
      }
      .content-block p { text-align: left; }
      .video-wrapper { width: 100%; }
    }
    .mobile-heading { display: none; }

      @media (max-width: 768px) {
        .mobile-heading {
            display: block; }
        .content-block .section-label {
            display: none; }
        .how-section {
            display: flex;
            flex-direction: column; 
        }
        .mobile-heading { order: 0; }
        .video-wrapper { order: 1; width: 100%; }
        .content-block { order: 2; }
      }
  /* ── Route tracking section── */
  
  .rtt-section {
    background-color: #e8eef6;
    width: 100%;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
.rtt-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: white;
    border-radius: 0 0 50% 50%;
    transform: translateY(-50%);
}

.rtt-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: white;
    border-radius: 50% 50% 0 0;
    transform: translateY(50%);
}

  .rtt-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
  }

  .rtt-inner {
    display: flex;
    align-items: center;
    gap: 80px;
  }

  .rtt-text {
    flex: 0 0 36%;
    max-width: 36%;
  }

  .rtt-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.12;
    margin-bottom: 22px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
  }

  .rtt-text h2 span {
    color: #bf023f;
    display: block;
  }

  .rtt-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.82rem, 1.05vw, 0.96rem);
    color: #444;
    line-height: 1.8;
    text-align: justify;
  }

  .rtt-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Individual card */
  .rtt-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    min-height: 200px;
  }

  .rtt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
  }

  .rtt-card-icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding-bottom: 18px;
  }

  .rtt-card-icon img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    display: block;
  }

  .rtt-card-label {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.65rem, 0.85vw, 0.78rem);
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    width: 100%;
  }

  @media (max-width: 1199px) {
    .rtt-section { padding: 64px 0; }
    .rtt-container { padding: 0 44px; }
    .rtt-inner { gap: 56px; }
    .rtt-text {
      flex: 0 0 38%;
      max-width: 38%;
    }
    .rtt-card {
      padding: 28px 20px 20px;
      border-radius: 16px;
      min-height: 180px;
    }
    .rtt-card-icon img { width: 72px; height: 72px; }
  }

  @media (max-width: 991px) {
    .rtt-section { padding: 52px 0; }
    .rtt-container { padding: 0 32px; }
    .rtt-inner { gap: 36px; }
    .rtt-text {
      flex: 0 0 42%;
      max-width: 42%;
    }
    .rtt-text h2 {
      font-size: clamp(1.3rem, 3vw, 1.8rem);
      margin-bottom: 14px;
    }
    .rtt-text p { font-size: clamp(0.78rem, 1.4vw, 0.9rem); }
    .rtt-cards { gap: 14px; }
    .rtt-card {
      padding: 22px 16px 18px;
      border-radius: 14px;
      min-height: 160px;
    }
    .rtt-card-icon img { width: 60px; height: 60px; }
    .rtt-card-label { font-size: 0.67rem; }
  }

  @media (max-width: 767px) {
    .rtt-section {
      background-color: transparent;
      padding: 28px 0;
    }
    .rtt-section::before,
    .rtt-section::after { display: none; }

    .rtt-container { padding: 0 14px; }
    .rtt-inner {
      flex-direction: column;
      gap: 24px;
    }
    .rtt-text {
      flex: unset;
      max-width: 100%;
      width: 100%;
    }
    .rtt-text h2 {
      font-size: clamp(1.4rem, 6vw, 2rem);
      margin-bottom: 12px;
    }
    .rtt-text p { font-size: clamp(0.84rem, 3.5vw, 0.96rem); }
    .rtt-cards {
      width: 100%;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .rtt-card {
      padding: 22px 14px 16px;
      border-radius: 14px;
      min-height: 150px;
    }
    .rtt-card-icon img { width: 58px; height: 58px; }
    .rtt-card-label { font-size: 0.68rem; }
  }

 /* product section    */
 /* ── Our Products ── */
.our-products {
  padding: 40px 0 60px;
  background: #fff;
}

.products-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-section-title {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 4px;
  padding-left: 12px;
  border-left: 4px solid #bf023f;
}

/* ── Carousel wrapper ── */
.product-carousel-wrap {
  position: relative;
}

/* ── Scroll track ── */
.product-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 14px;
  scroll-behavior: smooth;
  justify-content: center; /* centers cards when few; scrolls when overflow */
}
.product-track::-webkit-scrollbar { display: none; }

/* ── Arrow buttons ── */
.product-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  transition: box-shadow 0.2s, background 0.2s;
  padding: 0;
}
.product-arrow:hover {
  background: #f7f7f7;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.product-arrow svg { width: 20px; height: 20px; color: #1a1a1a; }
.product-arrow.prev { left: -20px; }
.product-arrow.next { right: -20px; }

/* ── Product card ── */
.product-card {
  flex: 0 0 220px;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  border-color: #bf023f;
  box-shadow: 0 4px 20px rgba(191,2,63,0.12);
}

/* ── Card image — edge to edge, no padding ── */
.product-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}
.product-card-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

/* ── Card body ── */
.product-card-body {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

/* ── Title ── */
.product-card-name {
  min-height: 34px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

/* ── Badges ── */
.product-card-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
.product-badge {
  background: #0d47a1;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 4px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  text-align: center;
}


/* ── Tablet ── */
@media (max-width: 1199px) {
  .product-card { flex: 0 0 195px; min-width: 195px; }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .product-arrow { display: none; }
  .products-inner { padding: 0 12px; }
  .product-track {
    gap: 12px;
    padding: 6px 2px 12px;
    justify-content: flex-start; /* centers 1-2 cards; scrolls when overflow */
  }
  .product-card { flex: 0 0 155px; min-width: 155px; border-radius: 10px; }
  .product-card-body { padding: 8px 10px 12px; gap: 6px; }
  .product-card-name { font-size: 11px; min-height: 28px; }
  .product-badge { font-size: 5px; padding: 2px 1px; }
  
}
 .product-footer {
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

.price-container .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2px 4px;
}

.price-left {
  display: flex;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
  flex-shrink: 1;
}

.price-right {
 display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  flex-shrink: 1;
  min-width: 0;
}

.discounted-price {
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  color: #bf023f;
  white-space: nowrap;
}

.original-price {
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 400;
  color: #9ca3af;
  text-decoration: line-through;
  white-space: nowrap;
}

.discount-percentage {
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 700;
  color: #16a34a;
  white-space: nowrap;
}

.pack-info {
  font-size: clamp(10px, 1vw, 12px);
  color: #6b7280;
  white-space: nowrap;
}

/* ── Action Row ── */
.footer-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-view-details {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #bf023f 0%, #a00235 100%);
  color: #ffffff;
  font-size: clamp(10px, 1.1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 7px 3px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-view-details:hover {
  background: linear-gradient(135deg, #d1034a 0%, #bf023f 100%);
  transform: translateY(-1px);
  color: #ffffff;
}

.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #bf023f 0%, #a00235 100%);
  border-radius: 8px;
  padding: 7px 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.btn-cart img,
.btn-cart svg {
  width: clamp(15px, 1.5vw, 20px);
  height: clamp(15px, 1.5vw, 20px);
  display: block;
}

.btn-cart:hover {
  background: linear-gradient(135deg, #d1034a 0%, #bf023f 100%);
  transform: translateY(-1px);
  color: #ffffff;
}
.asterisk {
  color: #bf023f;
  font-weight: 700;
}
@media (max-width: 420px){
  .product-card { flex: 0 0 140px; min-width: 140px; }
}
.product-btn-view {
  flex-shrink: 0;
}
/* ═══════════════════════════════════════════
   DESKTOP APP DOWNLOAD SECTION
   ═══════════════════════════════════════════ */
.app-download-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.2s;
  cursor: pointer;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.app-download-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-download-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.app-download-title {
  font-size: 3rem;
  font-weight: 800;
  color: #333;
  line-height: 1.2;
  margin: 0;
}

.text-brand { color: #bf023f; }

.app-download-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  max-width: 500px;
  position: relative;
}

.quote-img {
  width: 40px;
  height: 40px;
  color: #bf023f;
  opacity: 0.7;
  float: left;
  margin-right: 10px;
  margin-top: -5px;
}

.app-download-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.qr-code-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  background: white;
  border: 3px solid #e0e0e0;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.qr-code-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-mascot {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  animation: bounce 2s ease-in-out infinite;
}

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

.download-button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.download-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
}

.google-play-button {
  display: block;
  width: 150px;
  transition: transform 0.3s ease;
}

.google-play-button:hover { transform: scale(1.05); }
.google-play-button img   { width: 100%; height: auto; }

.app-stats {
  display: flex;
  gap: 40px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #333;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #777;
  margin-top: 4px;
}

.app-phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-container {
  width: 100%;
  max-width: 500px;
}

.phone-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.zoom-phone {
  transform: scale(0.8) translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.zoom-phone.show {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Desktop responsive */
@media (max-width: 1200px) {
  .app-download-container { gap: 60px; }
  .app-download-title     { font-size: 2.5rem; }
  .phone-container        { max-width: 400px; }
}

/* Hide desktop on mobile */
@media (max-width: 992px) {
  .app-download-section { display: none !important; }
}
/* MOBILE APP SECTION */

.app-mobile-section { display: none; }

@media (max-width: 768px) {

  .app-mobile-section {
    display: block;
    background: #fff;
    padding: 0 14px 24px;
  }

  .app-mobile-card {
    background: #efefef;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-height: 280px;              
    padding: 24px 0 24px 20px;
    position: relative;
  }

  .app-mobile-text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 56%;
  }

  .app-mobile-title {
    font-size: 22px;                
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
  }
  .app-mobile-title span { color: #bf023f; }

  .app-mobile-desc {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
  }

  .app-mobile-label {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
  }

  .app-mobile-play {
    display: block;
    width: 130px;
  }
  .app-mobile-play img { width: 100%; height: auto; display: block; }

  .app-mobile-try {
    display: block;
    background: #bf023f;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 10px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    margin-top: 2px;
    box-shadow: 0 4px 14px rgba(191,2,63,0.28);
    letter-spacing: 0.03em;
  }
  .app-mobile-try:hover { background: #a0022f; transform: translateY(-2px); }

  /* ── RIGHT: phone — overflows above card ── */
  .app-mobile-phone-col {
    flex: 0 0 auto;
    width: 190px;
    align-self: flex-start;
    margin-top: -60px !important;              
  }
  .app-mobile-phone-col img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(-4px 8px 22px rgba(0,0,0,0.30));
  }
}

@media (max-width: 576px) {

  .app-mobile-section {
    padding: 0 10px 20px;
  }

  .app-mobile-card {
    min-height: 230px;              
    padding: 20px 0 20px 16px;
    border-radius: 16px;
  }

  .app-mobile-text {
    gap: 8px;
    max-width: 54%;
  }

  .app-mobile-title {
    font-size: 18px;
  }

  .app-mobile-desc {
    font-size: 11px;
  }

  .app-mobile-label {
    font-size: 11px;
  }

  .app-mobile-play {
    width: 110px;
  }

  .app-mobile-try {
    font-size: 13px;
    padding: 11px 8px;
    border-radius: 8px;
  }

  .app-mobile-phone-col {
    width: 150px;
    margin-top: -45px;
  }
}