 :root {
    --red: #ba0005;
    --red-dark: #8a0004;
    --red-light: #e0000a;
    --gold: #f2d670;
    --gold-dark: #ad740c;
    --gold-deep: #7a5008;
    --white: #f8f8f6;
    --black: #0e0d0d;
    --gray: #1a1a1a;
    --gray2: #2a2a2a;
    --gray-light: #3a3a3a;
    --muted: #888;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: "Jost", sans-serif;
    font-size: 16px;
    overflow-x: hidden;
  }

  /* ─── TOP BAR ─── */
 .topbar {
            background: var(--red-dark, #8b0000);
            padding: 8px 10px;
            text-align: center;
            font-family: "Jost", sans-serif;
            font-size: 13px;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--gold, #d4af37);
            border-bottom: 1px solid var(--gold-dark, #b8960c);
            overflow: hidden;
            position: relative;
            z-index: 10;
        }

        /* Swiper container override - ensure full width and no hidden overflow */
        .topbar .swiper {
            width: 100%;
            overflow: hidden;
        }

        /* slider text base styling */
        .topbar .swiper-slide {
            text-align: center;
            white-space: nowrap;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            transition: all 0.2s ease;
            background: transparent;
            padding: 2px 0;
        }

        /* active slide subtle highlight (optional) */
        .topbar .swiper-slide-active {
            text-shadow: 0 0 3px rgba(0,0,0,0.2);
        }

        /* prevent any wrapping on desktop */
        .topbar .swiper-slide {
            white-space: nowrap;
        }

        /* ===== MOBILE FIXES (enhanced breakpoints) ===== */
        @media (max-width: 575px) {
            .topbar {
                font-size: 11px;
                letter-spacing: 1px;
                padding: 6px 8px;
            }

            .topbar .swiper-slide {
                 margin-top:2%;
                white-space: normal;      /* allow text wrapping on small screens */
                line-height: 1.35;        /* better legibility */
                padding: 0 12px;          /* horizontal breathing */
                word-break: break-word;   /* avoid long word overflow */
                font-weight: 500;
            }
        }

        /* extra small devices (below 400px) for even better spacing */
        @media (max-width: 400px) {
            .topbar {
                font-size: 10px;
                letter-spacing: 0.8px;
                padding: 5px 6px;
            }
            .topbar .swiper-slide {
                line-height: 1.3;
                padding: 0 8px;
            }
        }

        /* landscape mode for small heights - keep compact */
        @media (max-height: 480px) and (orientation: landscape) {
            .topbar {
                padding: 4px 10px;
            }
            .topbar .swiper-slide {
               
                white-space: nowrap; /* keep one line in landscape compact mode */
                line-height: 1.2;
            }
        }

        /* accessibility & touch improvements */
        .topbar {
            user-select: none;
            -webkit-tap-highlight-color: transparent;
        }

        /* ensure smooth autoplay transition */
        .swiper-slide {
            transition-timing-function: ease-out;
        }

  /* ─── NAVBAR ─── */
  nav {
    background: var(--black);
    border-bottom: 1px solid var(--gray2);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .nav-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 40px;
  }
  .logo-fallback {
    font-family: "Jost", sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
    text-decoration: none;
  }
  .logo-fallback span { color: var(--red); }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    flex: 1;
  }
  .nav-links li { position: relative; }
  .nav-links > li > a {
    display: block;
    padding: 0 18px;
    height: 72px;
    line-height: 72px;
    font-family:"Jost", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 3px solid transparent;
  }
  .nav-links > li > a:hover,
  .nav-links > li > a.active {
    color: var(--gold);
    border-bottom-color: var(--red);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }

  /* ─── CHANGE 1: Search Button (replaces Send Inquiry) ─── */
  .nav-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--gray-light);
    color: var(--white);
    font-family:"Jost", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 16px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .nav-search-btn:hover {
    border-color: var(--red);
    color: var(--gold);
    background: rgba(186,0,5,0.08);
  }

  /* ─── CHANGE 1: Cart Icon (replaces Get Quote button) ─── */
  .nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--gray-light);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: pointer;
    background: transparent;
  }
  .nav-cart:hover {
    border-color: var(--red);
    color: var(--gold);
    background: rgba(186,0,5,0.08);
  }
  .cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Jost", sans-serif;
  }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

  /* ─── CHANGE 2: SEARCH OVERLAY ─── */
  .search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 130px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .search-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
  .search-overlay-bg {
    position: absolute;
    inset: 0;
    background: rgba(8, 6, 6, 0.97);
    backdrop-filter: blur(8px);
  }
  /* Diagonal stripe texture */
  .search-overlay-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 70px,
      rgba(186,0,5,0.04) 70px,
      rgba(186,0,5,0.04) 71px
    );
  }
  /* Big watermark X */
  .search-overlay-bg::after {
    content: 'X';
    position: absolute;
    right: -8vw;
    bottom: -12vh;
    font-family: "Jost", sans-serif;
    font-size: 65vw;
    line-height: 1;
    color: rgba(186,0,5,0.05);
    pointer-events: none;
    letter-spacing: -10px;
  }

  /* Red accent left strip */
  .search-overlay-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--red), transparent 80%);
    z-index: 1;
  }

  /* Gold top line */
  .search-overlay-topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--red), var(--gold-dark), transparent);
    z-index: 2;
  }

  .search-close {
    position: absolute;
    top: 28px;
    right: 32px;
    background: rgba(186,0,5,0.15);
    border: 1px solid rgba(186,0,5,0.4);
    color: var(--white);
    width: 48px;
    height: 48px;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
  }
  .search-close:hover {
    background: var(--red);
    border-color: var(--red);
    transform: rotate(90deg);
  }

  .search-box-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 780px;
    padding: 0 28px;
    transform: translateY(30px);
    transition: transform 0.45s 0.1s cubic-bezier(0.22,1,0.36,1);
  }
  .search-overlay.open .search-box-wrap {
    transform: translateY(0);
  }

  .search-label {
    font-family:"Jost", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .search-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
  }

  .search-input-row {
    display: flex;
    align-items: stretch;
    border-bottom: 2px solid var(--red);
    position: relative;
  }
  .search-input-row::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
  }
  .search-input-row:focus-within::after {
    width: 40%;
  }

  .search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: "Jost", sans-serif;
    font-size: clamp(32px, 2.5vw, 58px);
    letter-spacing: 3px;
    color: var(--white);
    padding: 14px 0;
    caret-color: var(--red);
  }
  .search-input::placeholder {
    color: rgba(248,248,246,0.15);
  }

  .search-submit {
    background: var(--red);
    border: none;
    color: var(--white);
    padding: 0 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }
  .search-submit:hover {
    background: var(--red-light);
    transform: translateX(2px);
  }
  .search-submit svg { width: 20px; height: 20px; }

  /* Suggested tags */
  .search-tags-section {
    margin-top: 32px;
  }
  .search-tags-label {
    font-family: "Jost", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .search-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .search-tag {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(248,248,246,0.55);
    border: 1px solid var(--gray2);
    padding: 7px 18px;
    cursor: pointer;
    transition: all 0.2s;
    background: rgba(255,255,255,0.02);
  }
  .search-tag:hover {
    color: var(--gold);
    border-color: var(--gold-dark);
    background: rgba(173,116,12,0.12);
  }

  /* Popular searches with red dot */
  .search-popular {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .search-popular-label {
    font-family: "Jost", sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
  }
  .search-popular-label::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 1.5s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }
  .search-popular-items {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .search-popular-item {
    font-size: 13px;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.2s;
    border: none;
    background: none;
    font-family: "Jost", sans-serif;
    padding: 0;
  }
  .search-popular-item:hover { color: var(--white); }

  .search-hint {
    margin-top: 40px;
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(248,248,246,0.18);
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }
  .search-hint kbd {
    display: inline-block;
    border: 1px solid rgba(248,248,246,0.12);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
    margin: 0 3px;
    font-family: "Jost", sans-serif;
    background: rgba(255,255,255,0.04);
  }

  /* ─── HERO SLIDER ─── */
  .hero {
    position: relative;
    height: 92vh;
    min-height: 580px;
    overflow: hidden;
  }
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    display: flex;
    align-items: flex-end;
  }
  .slide.active { opacity: 1; }
  .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 7s ease;
  }
  .slide.active .slide-bg { transform: scale(1); }
  .slide-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(14,13,13,0.82) 0%, rgba(14,13,13,0.3) 60%, transparent 100%),
      linear-gradient(to top, rgba(14,13,13,0.9) 0%, transparent 60%);
  }
  .slide-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 80px,
      rgba(186,0,5,0.03) 80px,
      rgba(186,0,5,0.03) 82px
    );
  }
  .slide-accent-bar {
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 4px;
    background: var(--red);
    opacity: 0;
    transition: opacity 0.5s 0.3s;
  }
  .slide.active .slide-accent-bar { opacity: 1; }
  .slide-content {
    position: relative;
    z-index: 2;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 32px 100px;
    width: 100%;
  }
  .slide-tag {
    display: inline-block;
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border-left: 3px solid var(--red);
    padding-left: 12px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
  }
  .slide.active .slide-tag { opacity: 1; transform: translateY(0); }
  .slide-title {
       font-family: "Jost", sans-serif;
    font-size: clamp(54px, 3vw, 126px);
    line-height: 0.9;
    letter-spacing: 2px;
    color: var(--white);
    max-width: 900px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s 0.35s, transform 0.6s 0.35s;
  }
  .slide.active .slide-title { opacity: 1; transform: translateY(0); }
  .slide-title .accent { color: var(--red); }
  .slide-title .gold { color: var(--gold); }
  .slide-sub {
    margin-top: 22px;
    font-size: 16px;
    color: rgba(248,248,246,0.62);
    max-width: 460px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.5s, transform 0.6s 0.5s;
  }
  .slide.active .slide-sub { opacity: 1; transform: translateY(0); }
  .slide-cta {
    margin-top: 34px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s 0.65s, transform 0.6s 0.65s;
  }
  .slide.active .slide-cta { opacity: 1; transform: translateY(0); }
  .btn-hero-primary {
    background: var(--red);
    color: var(--white);
    font-family:"Jost", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    border: none;
    cursor: pointer;
  }
  .btn-hero-primary:hover { background: var(--red-light); transform: translateY(-2px); }
  .btn-hero-sec {
    background: transparent;
    color: var(--gold);
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 36px;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--gold-dark);
    transition: all 0.2s;
    cursor: pointer;
  }
  .btn-hero-sec:hover { background: var(--gold-dark); color: var(--black); }

  .hero-stats {
    position: absolute;
    right: 32px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: right;
    z-index: 10;
  }
  .hero-stat-num {
    font-family: "Jost", sans-serif;
    font-size: 36px;
    color: var(--gold);
    line-height: 1;
  }
  .hero-stat-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
  }

  .slider-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    align-items: center;
  }
  .dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(248,248,246,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
  }
  .dot-btn.active {
    width: 28px;
    border-radius: 4px;
    background: var(--red);
  }
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: rgba(14,13,13,0.55);
    border: 1px solid rgba(248,248,246,0.15);
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .slider-arrow:hover { background: var(--red); border-color: var(--red); }
  .slider-arrow.prev { left: 24px; }
  .slider-arrow.next { right: 24px; }
  .slider-counter {
    position: absolute;
    bottom: 28px;
    right: 32px;
    z-index: 10;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    color: rgba(248,248,246,0.35);
    letter-spacing: 2px;
  }
  .slider-counter .cur { color: var(--white); font-size: 22px; }
  .slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--red);
    z-index: 10;
    width: 0%;
    transition: width linear;
  }
  .hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
  }
  .hero-scroll span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
  }
  .scroll-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, var(--red), transparent);
    animation: scrollPulse 1.5s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.4; transform: scaleX(0.6); }
  }

  /* ─── MARQUEE ─── */
  .marquee-wrap {
    margin-top: 2px;
    background: var(--red);
    overflow: hidden;
    padding: 12px 0;
    border-top: 1px solid var(--red-dark);
    border-bottom: 1px solid var(--red-dark);
  }
  .marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
  }
  .marquee-track span {
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0 32px;
    color: var(--white);
  }
  .marquee-track .dot { color: var(--gold); padding: 0; }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ─── SECTIONS GENERAL ─── */
  section { padding: 90px 0; }
  .container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
  }
  .section-title {
    font-family: "Jost", sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    letter-spacing: 1px;
    color: var(--white);
  }
  .section-title .accent { color: var(--red); }
  .btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold-dark);
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
  }
  .btn-outline:hover { background: var(--gold-dark); color: var(--black); }

  /* ─── CHANGE 3: CATEGORIES — NKS Style Rectangular Cards ─── */
  .categories { background: var(--black); overflow: hidden; }
 
  .cat-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
  }
 
  /* Outer viewport — clips overflow */
  .cat-slider-viewport {
    position: relative;
    overflow: hidden;
    margin: 0 -32px;          /* bleed to container edges */
    padding: 20px 32px 40px;
  }
 
  /* Draggable track */
  .cat-slider-track {
    display: flex;
    gap: 24px;
    cursor: grab;
    user-select: none;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }
  .cat-slider-track.dragging {
    cursor: grabbing;
    transition: none;
  }
 
  /* ── Single sphere card ── */
  .cat-sphere-card {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    gap: 0;
  }
 
  /* Circle image */
  .cat-sphere-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2.5px solid rgba(186,0,5,0.25);
    box-shadow:
      0 0 0 6px rgba(186,0,5,0.06),
      0 12px 40px rgba(0,0,0,0.55);
    transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
    background: var(--gray2);
    flex-shrink: 0;
  }
 
  .cat-sphere-card:hover .cat-sphere-circle {
    border-color: var(--red);
    box-shadow:
      0 0 0 6px rgba(186,0,5,0.15),
      0 20px 50px rgba(186,0,5,0.25);
    transform: translateY(-8px) scale(1.03);
  }
 
  .cat-sphere-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
  }
  .cat-sphere-card:hover .cat-sphere-circle img { transform: scale(1.1); }
 
  /* Gloss sheen on sphere */
  .cat-sphere-circle::before {
    content: '';
    position: absolute;
    top: 6%;
    left: 12%;
    width: 55%;
    height: 40%;
    background: radial-gradient(ellipse at 40% 30%, rgba(255,255,255,0.18) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
  }
 
  /* Dark gradient bottom overlay inside sphere */
  .cat-sphere-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,13,13,0.55) 0%, transparent 55%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .cat-sphere-card:hover .cat-sphere-circle::after { opacity: 0.4; }
 
  /* Red dot badge */
  .cat-sphere-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -18px auto 0;
    position: relative;
    z-index: 3;
    transition: background 0.25s, transform 0.25s;
    box-shadow: 0 4px 16px rgba(186,0,5,0.5);
    flex-shrink: 0;
  }
  .cat-sphere-card:hover .cat-sphere-badge {
    background: var(--gold-dark);
    transform: scale(1.15) rotate(45deg);
  }
  .cat-sphere-badge svg {
    width: 14px; height: 14px;
    stroke: var(--white); fill: none;
    stroke-width: 2.2;
    stroke-linecap: round; stroke-linejoin: round;
    transition: transform 0.25s;
  }
  .cat-sphere-card:hover .cat-sphere-badge svg { transform: rotate(-45deg); }
 
  /* Name */
  .cat-sphere-name {
    margin-top: 16px;
    font-family: "Jost", sans-serif;
    font-size: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    transition: color 0.2s;
  }
  .cat-sphere-card:hover .cat-sphere-name { color: var(--gold); }
 
  /* Sub count */
  .cat-sphere-count {
    margin-top: 5px;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
  }
  .cat-sphere-card:hover .cat-sphere-count { color: var(--red); }
 
  /* ── Slider nav (dots + arrows) ── */
  .cat-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
  }
 
  .cat-slider-arrow {
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--gray-light);
    color: var(--white);
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
  }
  .cat-slider-arrow:hover { background: var(--red); border-color: var(--red); }
  .cat-slider-arrow:disabled { opacity: 0.25; cursor: default; }
  .cat-slider-arrow:disabled:hover { background: transparent; border-color: var(--gray-light); }
 
  .cat-dots { display: flex; gap: 8px; align-items: center; }
 
  .cat-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gray-light);
    border: none; cursor: pointer; padding: 0;
    transition: all 0.3s;
  }
  .cat-dot.active {
    width: 22px; border-radius: 4px;
    background: var(--red);
  }
 
  /* Fade edges */
  .cat-slider-viewport::before,
  .cat-slider-viewport::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .cat-slider-viewport::before {
    left: 0;
    background: linear-gradient(to right, var(--black), transparent);
  }
  .cat-slider-viewport::after {
    right: 0;
    background: linear-gradient(to left, var(--black), transparent);
  }
 
  @media (max-width: 768px) {
    .cat-sphere-circle { width: 310px; height: 310px; }
    .cat-sphere-card { flex: 0 0 160px; }
    .cat-sphere-badge { width: 30px; height: 30px; margin-top: -15px; }
    .cat-sphere-name { font-size: 16px; }
    .cat-slider-viewport { margin: 0 -18px; padding: 16px 18px 32px; }
  }

  /* ─── WHY US ─── */
/* ═══════════════════════════════
   WHY SECTION — REDESIGN
═══════════════════════════════ */
.why {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.why::before {
  content: '';
  position: absolute;
  top: -150px; right: -250px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,0,5,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Eyebrow ── */
.why-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.why-eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}
.why-eyebrow-text {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
}

/* ── Heading ── */
.why-heading {
  font-family: "Jost", sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 20px;
}

/* ── Desc ── */
.why-desc {
  font-size: 15px;
  color: rgba(248,248,246,0.5);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 440px;
}

/* ── CTA ── */
.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--red);
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, gap 0.2s ease;
}
.why-cta:hover {
  background: #a80004;
  gap: 16px;
  color: var(--white);
}

/* ── Features Grid ── */
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.why-feat {
  padding: 22px 20px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.why-feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}
.why-feat:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.why-feat:hover::before { width: 100%; }

.why-feat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.feat-icon-wrap {
  width: 36px; height: 36px;
  background: rgba(186,0,5,0.12);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.feat-icon {
  font-size: 18px;
  line-height: 1;
  color: var(--red);
}
.feat-idx {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  letter-spacing: 1px;
}
.feat-title {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.feat-desc {
  font-size: 12px;
  color: rgba(248,248,246,0.4);
  line-height: 1.6;
}
.feat-bar {
  margin-top: 14px;
  height: 1px;
  background: rgba(255,255,255,0.05);
}
.feat-bar span {
  display: block;
  width: 30%;
  height: 100%;
  background: var(--red);
  opacity: 0.5;
}

/* ═══════════════════════════════
   VISUAL SIDE
═══════════════════════════════ */
.why-visual {
  position: relative;
}
.why-visual-inner {
  position: relative;
  height: 520px;
}

/* Corner tags */
.why-corner {
  position: absolute;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--red);
  z-index: 10;
  opacity: 0.7;
}
.why-corner--tl { top: 16px; left: 16px; }
.why-corner--br { bottom: 16px; right: 16px; }

/* Image frame */
.why-img-frame {
  position: absolute;
  top: 0; left: 0;
  right: 56px; bottom: 56px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.why-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.why-visual:hover .why-img-frame img {
  transform: scale(1.04);
}
.why-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(186,0,5,0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* Stat card */
.why-stat-card {
  position: absolute;
  bottom: 0; right: 0;
  width: 180px; height: 130px;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}
.why-stat-label {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  padding: 0 12px;
  line-height: 1.3;
}
.why-stat-divider {
  width: 30px; height: 1px;
  background: rgba(255,255,255,0.4);
}
.why-stat-sub {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Decorative lines */
.why-deco-h {
  position: absolute;
  top: -16px; left: -16px; right: 72px;
  height: 1px;
  background: linear-gradient(to right, var(--red), transparent);
  opacity: 0.3;
}
.why-deco-v {
  position: absolute;
  left: -16px; top: -16px; bottom: 72px;
  width: 1px;
  background: linear-gradient(to bottom, var(--red), transparent);
  opacity: 0.3;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { gap: 50px; }
  .why-visual-inner { height: 450px; }
}
@media (max-width: 768px) {
  .why { padding: 70px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 50px; }
  .why-visual-inner { height: 380px; }
  .why-img-frame { right: 40px; bottom: 40px; }
  .why-stat-card { width: 150px; height: 110px; }
  .why-stat-label { font-size: 11px; }
  .why-features { gap: 2px; }
}
@media (max-width: 480px) {
  .why-features { grid-template-columns: 1fr; }
  .why-visual-inner { height: 320px; }
  .why-img-frame { right: 32px; bottom: 32px; }
  .why-stat-card { width: 130px; height: 100px; }
}
  /* ─── PRODUCTS ─── */
  .products { background: var(--gray); }
  .prod-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .prod-filters { display: flex; gap: 8px; flex-wrap: wrap; }
  .filter-btn {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--gray2);
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .filter-btn.active, .filter-btn:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
  }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* reference k hisaab se 3 columns */
  gap: 3px;  /* reference mein 3px gap */
}

/* Product card - EXACT same as .pdx-prd-card */
.prod-card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}

.prod-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  z-index: 2;
}

/* Image wrapper - EXACT same as .pdx-prd-img-wrap */
.prod-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--gray2);
}

/* Image - EXACT same as reference */
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
  .prod-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--red);
    color: var(--white);
    font-family: "Jost", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
  }
  .prod-badge.gold { background: var(--gold-dark); }
  .prod-body { padding: 20px; }
  .prod-cat {
    font-family: "Jost", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .prod-name {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-light);
    padding-top: 14px;
    margin-top: 4px;
  }
  .prod-inquiry {
       font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c9a03d;
    text-decoration: none;
    transition: color 0.2s;
  }
  .prod-inquiry:hover { color: var(--gold); }
  .prod-arrow {
    width: 32px; height: 32px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: background 0.2s;
    text-decoration: none;
  }
  .prod-arrow:hover { background: var(--gold-dark); }

  /* ─── INQUIRY BANNER ─── */
  .why-choose-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(225,27,34,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(201,160,61,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold, #c9a03d);
    background: rgba(201,160,61,0.1);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    font-family: "Jost", sans-serif;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--red, #e11b22);
}

.section-header p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid - 3 Boxes */
/* ═══════════════════════════════
   WHY SECTION HEADER
═══════════════════════════════ */
.why-section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 0;
}

/* Eyebrow */
.why-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.why-eyebrow-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}
.why-eyebrow-text {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
}

/* Section Title */
.why-section-title {
  font-family: "Jost", sans-serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
}
.why-accent {
  color: var(--red);
}

/* Right side */
.why-header-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-header-desc {
  font-size: 15px;
  color: rgba(248,248,246,0.45);
  line-height: 1.8;
  margin: 0;
  border-left: 2px solid rgba(186,0,5,0.4);
  padding-left: 18px;
}

/* Stats Row */
.why-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.why-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.why-stat-num {
  font-family: "Jost", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.5px;
}
.why-stat-lbl {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248,248,246,0.35);
}
.why-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  margin: 0 24px;
  flex-shrink: 0;
}

/* Divider */
.why-header-divider {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 48px 0 44px;
}
.why-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--red), rgba(255,255,255,0.06), transparent);
}
.why-divider-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.why-divider-dot:last-child {
  background: rgba(255,255,255,0.15);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .why-section-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .why-header-divider {
    margin: 36px 0 32px;
  }
  .why-stat-num { font-size: 22px; }
  .why-stat-sep { margin: 0 16px; }
}
@media (max-width: 480px) {
  .why-stats-row { gap: 0; }
  .why-stat-sep { margin: 0 12px; height: 30px; }
  .why-stat-num { font-size: 20px; }
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Feature Card */
.feature-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red, #e11b22), var(--gold, #c9a03d));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(225,27,34,0.3);
    background: rgba(255,255,255,0.05);
}

/* Icon */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(225,27,34,0.15), rgba(201,160,61,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(225,27,34,0.25), rgba(201,160,61,0.2));
}

/* Title */
.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: "Jost", sans-serif;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

/* Description */
.feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Learn More Link */
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold, #c9a03d);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 12px;
    color: var(--red, #e11b22);
}

.feature-link .arrow {
    font-size: 14px;
}

/* ────────────────────────────────────────────────────────────── */
/* RESPONSIVE */
/* ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid {
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-badge {
        font-size: 10px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
}

  /* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--black);
  padding: 80px 0 100px;
  position: relative;
}

/* section label + title */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(227, 28, 37, 0.12);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
  backdrop-filter: blur(2px);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title .accent {
  color: var(--red);
  position: relative;
  display: inline-block;
}

/* ========= SLIDER ========= */

.testimonials-slider {
  margin-top: 56px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.swiper {
  width: 100%;
  padding: 12px 0 20px;
  overflow: visible !important;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
  margin-bottom: 5px;
}

.swiper-slide {
  height: auto;
  display: flex;
}

/* ========= CARD ========= */

.testi-card {
  background: var(--gray);
  padding: 36px 32px;
  border-top: 3px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border-radius: 0px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);

  /* SAME SIZE FOR ALL CARDS */
  min-height: 380px;
  height: 100%;
  width: 100%;
}

.testi-card:hover {
  border-top-color: var(--red);
  transform: translateY(-5px);
}

.stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.testi-quote {
  font-family: "Jost", sans-serif;
  font-size: 64px;
  color: var(--red);
  line-height: 0.7;
  margin-bottom: 20px;
  opacity: 0.65;
}

.testi-text {
  font-size: 15px;
  color: rgba(248,248,246,0.8);
  line-height: 1.65;
  margin-bottom: 32px;
  font-style: italic;

  flex: 1;

  /* LIMIT TEXT */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(227,28,37,0.3);
}

.testi-name {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.testi-loc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0.3px;
}

/* ========= NAVIGATION ========= */

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 25px;
  align-items: center;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  width: 48px;
  height: 48px;
  background: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid rgba(248,248,246,0.15);
  color: var(--white);
  font-size: 28px;
  font-weight: 300;
  user-select: none;
  font-family: monospace;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.05);
}

/* ========= PAGINATION ========= */

.swiper-pagination {
  position: relative !important;
  margin-top: 30px !important;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  transition: all 0.25s ease;
  border-radius: 50%;
  margin: 0 !important;
  background: #f2d670 !important;
}

.swiper-pagination-bullet-active {
  background: #8a0004 !important;
  width: 28px;
  border-radius: 12px;
}

/* ========= ANIMATION ========= */

.reveal {
  animation: fadeUp 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
  opacity: 0;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========= RESPONSIVE ========= */

@media screen and (max-width: 1024px) {

  .section-title {
    font-size: 2.3rem;
  }

  .testi-card {
    padding: 28px 24px;
    min-height: 360px;
  }

  .testi-quote {
    font-size: 52px;
  }

  .testi-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {

  .testimonials {
    padding: 60px 0 70px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .slider-controls {
    justify-content: center;
    margin-top: 20px;
  }

  .swiper-pagination {
    margin-top: 20px !important;
    gap: 10px;
  }

  .swiper-pagination-bullet-active {
    width: 24px;
  }

  .testi-card {
    padding: 26px 20px;
    min-height: 340px;
  }

  .testi-avatar {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .testi-name {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {

  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1.65rem;
    letter-spacing: -0.3px;
  }

  .testi-card {
    padding: 24px 18px;
    min-height: 320px;
  }

  .testi-quote {
    font-size: 44px;
    margin-bottom: 12px;
  }

  .testi-text {
    font-size: 13px;
    margin-bottom: 24px;
    -webkit-line-clamp: 4;
  }

  .slider-controls {
    gap: 12px;
    margin-top: 15px;
  }

  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .swiper-pagination {
    margin-top: 16px !important;
    gap: 8px;
  }
}

/* ========= REVIEW FORM CSS========= */
.review-form-wrap {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(201,168,76,0.2);
}
.review-form-header {
    text-align: center;
    margin-bottom: 40px;
}
.review-form {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.rf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.rf-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rf-field label {
    font-size: 11px;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
}
.rf-field input,
.rf-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 10px 0;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}
.rf-field input:focus,
.rf-field textarea:focus {
    border-bottom-color: #c9a84c;
}
.rf-field textarea {
    resize: none;
    height: 90px;
}
.rf-field input::placeholder,
.rf-field textarea::placeholder {
    color: #444;
}
.rf-stars {
    display: flex;
    gap: 6px;
}
.rf-star {
    font-size: 30px;
    color: #333;
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
    user-select: none;
}
.rf-star.active {
    color: #c9a84c;
}
.rf-star:hover {
    transform: scale(1.15);
}
.rf-submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}
.rf-btn {
    font-weight: 800;
    background: #c9a84c;
    border: none;
    color: #0d0d0d;
    font-family: 'jost', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    padding: 13px 12px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.rf-btn:hover { background: #e0b95a; transform: translateY(-2px); }
.rf-btn:active { transform: translateY(0); }
.rf-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.rf-note {
    font-size: 12px;
    color: #555;
    letter-spacing: 1px;
    font-family: 'Barlow Condensed', sans-serif;
}
.rf-success {
    display: none;
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(201,168,76,0.3);
    color: #c9a84c;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
}
@media (max-width: 600px) {
    .rf-row { grid-template-columns: 1fr; }
    .rf-submit-row { flex-direction: column; align-items: flex-start; }
}

  /* ─── FOOTER ─── */
  footer {
    background: var(--gray);
    border-top: 1px solid var(--gray2);
    padding: 70px 0 0;
  }
  .footer-grid {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
  }
  .footer-brand-name {
    font-family: "Jost", sans-serif;
    font-size: 30px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 4px;
  }
  .footer-brand-name span { color: var(--red); }
  .footer-tagline {
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 18px;
  }
  .footer-about {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .social-links { display: flex; gap: 10px; }
  .social-link {
    width: 36px; height: 36px;
    background: var(--gray2);
    border: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
  }
  .social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }
  .footer-col-title {
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray2);
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-links a:hover::before { content: '→'; font-size: 11px; }
  .contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
  .contact-icon { color: var(--red); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
  .contact-text { font-size: 13px; color: var(--muted); line-height: 1.5; }
  .footer-bottom {
    max-width: 1380px;
    margin: 60px auto 0;
    padding: 20px 32px;
    border-top: 1px solid var(--gray2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-copy { font-size: 16px; color: var(--muted); }
  .footer-copy span { color: var(--red); }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a {
    font-size: 16px;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  .footer-legal a:hover { color: var(--white); }

  /* ─── MOBILE NAV ─── */
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    z-index: 9999;
    flex-direction: column;
    padding: 80px 32px 32px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-close {
    position: absolute;
    top: 24px; right: 28px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
  }
  .mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .mobile-nav-links a {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 40px;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid var(--gray2);
    padding: 12px 0;
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-nav-links a:hover { color: var(--gold); padding-left: 12px; }

  /* ─── ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    .cat-nks-grid { grid-template-columns: 1fr; }
    .cat-nks-featured { min-height: 400px; grid-row: span 1; }
    .cat-nks-right { grid-template-columns: 1fr 1fr; }
    .cat-nks-small { min-height: 220px; }
    .cat-nks-bottom { grid-template-columns: 1fr 1fr; }
    .prod-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .inquiry-inner { grid-template-columns: 1fr; }
    .inquiry-form-wrap { min-width: unset; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { display: none; }
    .slider-arrow { width: 36px; height: 36px; font-size: 16px; }
    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }
    .slider-counter { display: none; }
    section { padding: 60px 0; }
    .slide-title { font-size: clamp(52px, 14vw, 100px); }
    .cat-nks-bottom { grid-template-columns: 1fr; }
    .cat-nks-right { grid-template-columns: 1fr; }
    .nav-search-btn span { display: none; }
  }
  @media (max-width: 480px) {
    .slide-title {
    font-family: "Jost", sans-serif;
    font-size: clamp(40px, 3vw, 126px);
    line-height: 0.9;
    letter-spacing: 2px;
    color: var(--white);
    max-width: 900px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s 0.35s, transform 0.6s 0.35s;
  }
  .btn-hero-primary{
        background: var(--red);
    color: var(--white);
    font-family: "Jost", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 22px) 100%, 0% 92%);
    border: none;
    cursor: pointer;
  }

    .prod-grid { grid-template-columns: 1fr; }
    .container { padding: 0 18px; }
    .nav-inner { padding: 0 18px; }
    .search-input{
             flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: "Jost", sans-serif;
    font-size: clamp(21px, 4.5vw, 48px);
    letter-spacing: 0px;
    color: var(--white);
    padding: 13px 0;
    caret-color: var(--red);}

    .search-submit{
    background: var(--red);
    border: none;
    color: var(--white);
    padding: 0px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
    font-family: "Jost", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
   
    }
  }
  .logo-wrapper img {
    width: 130px;   /* Desktop size (bara logo) */
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Mobile Responsive */

  /* ═══════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════ */
.products-section {
  background: var(--gray);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Background watermark */
.products-section::before {
  content: 'PARADOX';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Jost", sans-serif;
  font-size: 260px;
  color: rgba(186,0,5,0.04);
  letter-spacing: 10px;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

.container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Section Header ── */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family:"Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.sec-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.sec-title {
  font-family: "Jost", sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 1.5px;
  color: var(--white);
}
.sec-title .accent { color: var(--red); }

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.ftab {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--gray2);
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
}
.ftab:hover { border-color: var(--gray-light); color: var(--white); }
.ftab.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ── Carousel Wrapper ── */
.carousel-outer {
  position: relative;
}

.carousel-track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.carousel-track-wrap:active { cursor: grabbing; }

.carousel-track {
  display: flex;
  gap: 3px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── Product Card ── */
.prod-card {
  flex: 0 0 calc(25% - 3px);
  min-width: 260px;
  background: var(--gray2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  z-index: 2;
}

/* Image area */
.prod-img-wrap {
  position: relative;
  aspect-ratio: 5/5;
  overflow: hidden;
  background: var(--gray3);
}

.prod-img-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.prod-card:hover .prod-img-bg {
  transform: scale(1.06);
}

/* Emoji fallback image */
.prod-img-emoji {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  transition: transform 0.55s ease;
}
.prod-card:hover .prod-img-emoji { transform: scale(1.06); }

/* Badge */
.prod-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: var(--red);
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 11px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.prod-badge.gold { background: var(--gold-dark); }
.prod-badge.new-badge { background: #0f5f2f; }

/* Hover overlay with actions */
.prod-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,13,13,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
}
.prod-card:hover .prod-overlay { opacity: 1; }

/* ── QUICK VIEW BUTTON ── */
.btn-product-quick-view-open {
  background: var(--white);
  color: var(--black);
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  padding: 11px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  transform: translateY(10px);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.prod-card:hover .btn-product-quick-view-open {
  transform: translateY(0);
}
.btn-product-quick-view-open:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-product-quick-view-open svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Wishlist btn */
.prod-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 34px;
  height: 34px;
  background: rgba(14,13,13,0.6);
  border: 1px solid rgba(248,248,246,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0;
  transform: translateX(10px);
}
.prod-card:hover .prod-wishlist {
  opacity: 1;
  transform: translateX(0);
}
.prod-wishlist:hover { background: var(--red); border-color: var(--red); }
.prod-wishlist svg { width: 14px; height: 14px; }

/* Card body */
.prod-body {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--gray-light);
}

.prod-cat {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.prod-name {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prod-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.prod-tag {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold-deep);
  padding: 2px 8px;
}

.prod-inquire {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, gap 0.2s;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
.prod-inquire:hover { color: var(--gold); gap: 9px; }
.prod-inquire::after { content: '→'; font-size: 13px; }

/* ── Carousel Controls ── */
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  justify-content: center;
}

.carr-btn {
  width: 48px;
  height: 48px;
  background: var(--gray2);
  border: 1px solid var(--gray-light);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.carr-btn:hover { background: var(--red); border-color: var(--red); }
.carr-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.carr-btn:disabled:hover { background: var(--gray2); border-color: var(--gray-light); }
.carr-btn svg { width: 18px; height: 18px; }

/* Dots */
.carr-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carr-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.carr-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--red);
}

/* Progress bar */
.carr-progress-wrap {
  flex: 1;
  max-width: 180px;
  height: 2px;
  background: var(--gray2);
  border-radius: 1px;
  overflow: hidden;
}
.carr-progress-bar {
  height: 100%;
  background: var(--red);
  border-radius: 1px;
  transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── QUICK VIEW MODAL ── */
  /* ── Backdrop ── */
.qv-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.qv-backdrop.active { display: block; }

/* ── Modal wrapper ── */
.qv-modal-img-only {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
}
.qv-modal-img-only.active { display: flex; }

/* ── Image box ── */
.qv-img-wrap {
    width: min(80vw, 620px);
    height: min(82vh, 680px);
    background: linear-gradient(135deg, #1a0606, #3a1010);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.qv-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.qv-img-emoji {
    font-size: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Close button ── */
.qv-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    line-height: 1;
}
.qv-close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.08);
}

/* ── Nav arrows ── */
.qv-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s, opacity 0.2s;
    line-height: 1;
}
.qv-arrow:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.08);
}
.qv-arrow:disabled {
    opacity: 0.2;
    cursor: default;
    transform: none;
}

/* ── Counter ── */
.qv-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    letter-spacing: 0.08em;
    z-index: 10001;
    font-family: inherit;
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .qv-modal-img-only { gap: 12px; padding: 16px; }
    .qv-img-wrap { width: min(72vw, 320px); height: min(70vh, 420px); }
    .qv-arrow { width: 40px; height: 40px; font-size: 18px; }
}

/* View All button */
.view-all-wrap {
  text-align: center;
  margin-top: 52px;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray-light);
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 40px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-view-all:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn-view-all svg { width: 14px; height: 14px; transition: transform 0.2s; }
.btn-view-all:hover svg { transform: translateX(4px); }

/* ── Responsive ── */
@media(max-width:1100px){
  .prod-card { flex: 0 0 calc(33.33% - 3px); }
}
@media(max-width:768px){
  .prod-card { flex: 0 0 calc(50% - 3px); min-width: 200px; }
  .qv-modal { grid-template-columns: 1fr; width: min(440px, 95vw); }
  .qv-img-pane { min-height: 260px; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 18px; }
  .products-section { padding: 60px 0 70px; }
}
@media(max-width:480px){
  .prod-card { flex: 0 0 calc(100% - 3px); }
}
.contact-link {
  color: inherit;       /* parent jaisa color */
  text-decoration: none; /* underline remove */
}

.contact-link:hover {
  text-decoration: underline; /* hover pe optional */
}