/* SK Enterprise – Main Stylesheet */

  :root {
    --gold: #C8860A;
    --gold-light: #E4A020;
    --gold-pale: #F5DFA0;
    --cream: #FAF6EE;
    --dark: #1A1208;
    --brown: #3D2B0E;
    --warm-mid: #7A5C2A;
    --white: #FFFFFF;
    --border: rgba(200,134,10,0.2);
  }

  * { margin:0; padding:0; box-sizing:border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top:0; left:0; bottom: 0; right:0; z-index: 1000;
    background: rgba(26,18,8,0.97);
    backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    border-bottom: 1px solid rgba(200,134,10,0.25);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .nav-logo-mark {
    width: 62px; height: 62px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0;
    /* background: #000; */
  }
  .nav-logo-mark img {
    width: 100%; height: 100%; object-fit: contain; display: block;
  }
  .nav-logo-text { color: #fff; }
  .nav-logo-text span { display: block; }
  .nav-logo-text .brand { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--gold-light); }
  .nav-logo-text .sub { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,0.75); text-decoration: none;
    font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
    text-transform: uppercase; transition: color 0.25s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--gold-light); }

  .nav-cta {
    background: var(--gold); color: #fff; text-decoration: none;
    padding: 9px 22px; border-radius: 4px; font-size: 13px;
    font-weight: 600; letter-spacing: 0.3px; transition: background 0.25s;
  }
  .nav-cta:hover { background: var(--gold-light); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--gold-light); transition: 0.3s; }

  /* ─── PAGES ─── */
  .page { display: none; padding-top: 72px; min-height: 100vh; }
  .page.active { display: block; }

  /* ─── HOME ─── */
  /* Hero Banner */
  .hero {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0F0A02 0%, #2C1A04 45%, #1A1208 100%);
    min-height: calc(100vh - 72px);
    display: flex; align-items: center;
  }
  .hero-bg-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .hero-glow {
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,134,10,0.15) 0%, transparent 70%);
  }
  .hero-glow2 {
    position: absolute; bottom: -150px; left: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,134,10,0.08) 0%, transparent 70%);
  }

  .hero-content {
    position: relative; z-index: 2; padding: 80px 5%;
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,134,10,0.15); border: 1px solid rgba(200,134,10,0.35);
    padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
    font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold-light); font-weight: 600;
  }
  .hero-badge::before { content: '●'; font-size: 8px; }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5vw, 78px);
    font-weight: 900; line-height: 1.05;
    color: #fff; margin-bottom: 24px;
  }
  .hero-title .accent { color: var(--gold-light); display: block; }
.hero-title span{
    display:block;
    background:linear-gradient(180deg,#FFD978,#D89000);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    animation:textGlow 4s ease-in-out infinite;
}

@keyframes textGlow{
    0%,100%{
        filter:drop-shadow(0 0 0px rgba(255,190,90,.2));
    }
    50%{
        /* filter:drop-shadow(0 0 18px rgba(230, 218, 201, 0.35)); */
        filter:drop-shadow(0 0 18px #c4a65b);
    }
}

  .hero-desc {
    font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.65);
    margin-bottom: 44px; font-weight: 300;
  }

  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #fff; text-decoration: none; padding: 15px 34px;
    border-radius: 6px; font-size: 14px; font-weight: 600;
    letter-spacing: 0.5px; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 30px rgba(200,134,10,0.35);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,134,10,0.5); }

  .btn-ghost {
    color: #fff; text-decoration: none; padding: 15px 34px;
    border-radius: 6px; font-size: 14px; font-weight: 500;
    letter-spacing: 0.5px; border: 1px solid rgba(255,255,255,0.25);
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-ghost:hover { border-color: var(--gold-light); background: rgba(200,134,10,0.1); }

  .hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    margin-top: 52px; padding-top: 44px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .hero-stat { text-align: center; padding: 0 10px; }
  .hero-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-num {
    font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700;
    color: var(--gold-light); line-height: 1;
  }
  .stat-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 6px; }

  /* Hero visual */
  .hero-visual { position: relative; }
  .hero-img-frame {
    position: relative; border-radius: 16px; overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #3D2B0E, #1A1208);
    display: flex; align-items: center; justify-content: center;
  }
.hero-img-frame::before{
    content:'';
    position:absolute;
    inset:-2px;
    border-radius:inherit;
    padding:2px;
    background:linear-gradient(
        130deg,
        rgba(255,183,0,.5),
        transparent,
        rgba(255,183,0,.35)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;
    animation:borderRotate 9s linear infinite;
}

@keyframes borderRotate{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
  .hero-img-inner {
    font-size: 120px; opacity: 0.85;
    animation:floatPeanut 5s ease-in-out infinite;
  }
  @keyframes floatPeanut{
    0%,100%{
        transform:translateY(0px) rotate(-8deg);
    }
    50%{
        transform:translateY(-18px) rotate(8deg);
    }
}


  .hero-badge-float {
    position: absolute; bottom: -20px; left: -30px;
    background: #fff; padding: 18px 24px; border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation:floatCard 5s ease-in-out infinite;
  }
  .hero-badge-float .bf-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--warm-mid); font-weight: 600; }
  .hero-badge-float .bf-val { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); }

  .hero-badge-float2 {
    position: absolute; top: -20px; right: -20px;
    background: var(--gold); padding: 14px 20px; border-radius: 10px;
    box-shadow: 0 12px 35px rgba(200,134,10,0.4);
    text-align: center;
     animation:floatCard 4s ease-in-out infinite reverse;
  }
  .hero-badge-float2 .bf2-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: #fff; line-height: 1; }
  .hero-badge-float2 .bf2-label { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.85); }
@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

  /* Why Us */
  .section { padding: 100px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-tag {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Playfair Display', serif; font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 700; line-height: 1.15; color: var(--dark); margin-bottom: 20px;
  }
  .section-desc { font-size: 16px; line-height: 1.8; color: var(--warm-mid); max-width: 560px; }

  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
  .why-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 16px; padding: 40px 32px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
  }
  .why-card::before {
    content: ''; position: absolute; top:0; left:0; right:0; height:3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
  }
  .why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(200,134,10,0.12); }
  .why-card:hover::before { transform: scaleX(1); }
  .why-icon { font-size: 44px; margin-bottom: 20px; }
  .why-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
  .why-card p { font-size: 15px; line-height: 1.75; color: var(--warm-mid); }

  /* Products preview */
  .products-preview { background: var(--dark); padding: 100px 5%; }
  .products-preview .section-title { color: #fff; }
  .products-preview .section-desc { color: rgba(255,255,255,0.55); }
  .products-preview .section-tag { color: var(--gold-light); }

  .products-grid-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
  .product-card-home {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(200,134,10,0.2);
    border-radius: 16px; overflow: hidden;
    transition: border-color 0.3s, transform 0.35s, box-shadow 0.35s;
    cursor: pointer;
  }
  .product-card-home:hover {
    border-color: rgba(200,134,10,0.6);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  }
  .pch-img {
    position: relative; height: 190px; overflow: hidden; background: #1A1208;
  }
  .pch-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
  }
  .product-card-home:hover .pch-img img { transform: scale(1.08); }
  .pch-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10,5,0,0.65));
  }
  .pch-badge {
    position: absolute; bottom: 12px; left: 14px; z-index: 2;
    background: rgba(200,134,10,0.85); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 100px;
  }
  .pch-body { padding: 20px 20px 22px; }
  .product-card-home h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.25; }
  .product-card-home p { font-size: 12.5px; line-height: 1.65; color: rgba(255,255,255,0.48); margin-bottom: 14px; }
  .pch-footer { display: flex; align-items: center; justify-content: space-between; }
  .pch-moq { font-size: 11px; color: var(--gold-light); font-weight: 600; letter-spacing: 0.3px; }
  .pch-arrow {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(200,134,10,0.2); border: 1px solid rgba(200,134,10,0.35);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light); font-size: 13px; transition: background 0.2s;
  }
  .product-card-home:hover .pch-arrow { background: var(--gold); border-color: var(--gold); color: #fff; }

  .view-all-wrap { text-align: center; margin-top: 50px; }

  /* Markets */
  .markets { background: var(--cream); }
  .markets-logos { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 50px; justify-content: center; }
  .market-pill {
    background: #fff; border: 1px solid var(--border); border-radius: 100px;
    padding: 12px 28px; font-size: 14px; font-weight: 500; color: var(--brown);
    display: flex; align-items: center; gap: 8px;
    transition: background 0.2s, border-color 0.2s;
  }
  .market-pill:hover { background: var(--gold-pale); border-color: var(--gold); }
  .market-pill .flag { font-size: 18px; }

  /* CTA band */
  .cta-band {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), #8B5E08);
    padding: 80px 5%; text-align: center;
  }
  .cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 46px); font-weight: 700; color: #fff; margin-bottom: 16px; }
  .cta-band p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 40px; }
  .btn-white {
    background: #fff; color: var(--gold); text-decoration: none;
    padding: 15px 40px; border-radius: 6px; font-size: 15px; font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.2); }

  /* ─── ABOUT PAGE ─── */
  .about-hero {
    background: linear-gradient(135deg, #1A1208, #3D2B0E);
    padding: 100px 5%;
    text-align: center;
  }
  .about-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 4vw, 68px); font-weight: 900; color: #fff; margin-bottom: 20px; }
  .about-hero p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; line-height: 1.75; }

  .about-story { padding: 100px 5%; }
  .about-story .section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-story-img {
    background: linear-gradient(135deg, var(--gold-pale), var(--cream));
    border-radius: 20px; aspect-ratio: 1; display: flex;
    align-items: center; justify-content: center;
    font-size: 140px; border: 2px solid var(--border);
    box-shadow: 0 30px 80px rgba(200,134,10,0.12);
    animation: float 8s ease-in-out infinite;
  }
  .about-story-text .section-title { margin-top: 0; }
  .about-story-text p { font-size: 16px; line-height: 1.85; color: var(--warm-mid); margin-bottom: 20px; }

  .about-values { background: #fff; padding: 100px 5%; }
  .values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; }
  .value-card {
    background: var(--cream); border: 1px solid var(--border);
    border-radius: 14px; padding: 36px;
  }
  .value-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; margin-top: 14px; }
  .value-card p { font-size: 15px; line-height: 1.75; color: var(--warm-mid); }
  .value-icon { font-size: 36px; }

  .team-section { padding: 100px 5%; }
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
  .team-card {
    background: #fff; border: 1px solid var(--border); border-radius: 16px;
    padding: 40px 28px; text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .team-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(200,134,10,0.1); }
  .team-avatar {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
  }
  .team-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
  .team-card .role { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; }

  /* ─── PRODUCTS PAGE ─── */
  .products-hero {
    background: linear-gradient(135deg, #0F0A02, #2C1A04);
    padding: 100px 5%; text-align: center;
  }
  .products-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 4vw, 68px); font-weight: 900; color: #fff; margin-bottom: 20px; }
  .products-hero p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; }

  .products-main { padding: 28px 0 80px; }

  .products-catalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .catalog-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }
  .catalog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(200,134,10,0.15); }
  .catalog-card-img {
    height: 200px; position: relative; overflow: hidden; background: #2C1A04;
  }
  .catalog-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform 0.45s ease;
  }
  .catalog-card:hover .catalog-card-img img { transform: scale(1.06); }
  .catalog-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(15,8,0,0.32));
    z-index: 1;
  }
  .catalog-card-body { padding: 28px 24px; }
  .catalog-card-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
  .catalog-card-body p { font-size: 14px; line-height: 1.7; color: var(--warm-mid); margin-bottom: 20px; }
  .catalog-specs { display: flex; flex-direction: column; gap: 7px; }
  .spec-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
  .spec-key { color: var(--warm-mid); font-weight: 500; }
  .spec-val { color: var(--dark); font-weight: 600; background: var(--cream); padding: 2px 10px; border-radius: 100px; }
  .catalog-tag {
    display: inline-block; padding: 4px 12px; border-radius: 100px;
    background: rgba(200,134,10,0.1); color: var(--gold); font-size: 11px;
    font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px;
  }
  .catalog-card-footer {
    padding: 16px 24px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
  }
  .moq-label { font-size: 11px; color: var(--warm-mid); text-transform: uppercase; letter-spacing: 1px; }
  .moq-val { font-size: 14px; font-weight: 700; color: var(--dark); }
  .inquire-btn {
    background: var(--gold); color: #fff; border: none;
    padding: 8px 18px; border-radius: 6px; font-size: 13px;
    font-weight: 600; cursor: pointer; transition: background 0.2s;
  }
  .inquire-btn:hover { background: var(--gold-light); }

  /* ─── BRAND FILTER BAR ─── */
  .brand-filter-wrap {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky; top: 72px; z-index: 100;
    box-shadow: 0 4px 20px rgba(200,134,10,0.07);
    /* Full viewport width – NO max-width constraint here */
  }

  /* Single row: [label | left-arrow | ←pill-strip→ | right-arrow] */
  .brand-filter-row {
    /* Stretch edge-to-edge with only enough side padding for breathing room */
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .brand-filter-label {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--warm-mid); font-weight: 600; white-space: nowrap;
    padding: 18px 16px 18px 0;
    border-right: 1px solid var(--border);
    flex-shrink: 0;
  }

  /* Arrows sit OUTSIDE the track so they don't overlap pills */
  .bf-arrow {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: #fff; border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 3;
    transition: background 0.2s, border-color 0.2s, opacity 0.25s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: var(--warm-mid);
    position: relative;
  }
  .bf-arrow:hover {
    background: var(--gold-pale);
    border-color: var(--gold-light);
    color: var(--gold);
    transform: scale(1.07);
  }
  .bf-arrow:active { transform: scale(0.95); }
  .bf-arrow.hidden {
    opacity: 0;
    pointer-events: none;
    /* keep its space so pill strip doesn't jump */
    visibility: hidden;
  }
  .bf-arrow svg { width: 13px; height: 13px; display: block; flex-shrink: 0; }
  .bf-arrow-left  { margin-left: 8px;  margin-right: 4px; }
  .bf-arrow-right { margin-left: 4px; margin-right: 0; }

  /* Scroll track – takes the remaining space between the two arrows */
  .brand-filter-track {
    flex: 1;
    min-width: 0;        /* critical: allows flex child to shrink below content size */
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;    /* clip the fade pseudo-elements */
  }

  /* Left/right fade hints */
  .brand-filter-track::before,
  .brand-filter-track::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 32px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s;
  }
  .brand-filter-track::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1), transparent);
  }
  .brand-filter-track::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1), transparent);
  }
  .brand-filter-track.can-scroll-left::before  { opacity: 1; }
  .brand-filter-track.can-scroll-right::after  { opacity: 1; }

  /* The actual scrollable pill strip */
  .brand-filter-inner {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 0 6px;
    /* Must fill the track's width */
    flex: 1;
    min-width: 0;
  }
  .brand-filter-inner::-webkit-scrollbar { display: none; }

  .brand-pill {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px; border-radius: 100px; cursor: pointer;
    white-space: nowrap; flex-shrink: 0;
    border: 1.5px solid transparent;
    transition: all 0.25s; margin: 10px 6px 10px 0;
    background: var(--cream);
    font-size: 13px; font-weight: 600; color: var(--warm-mid);
    user-select: none;
  }
  .brand-pill:hover {
    border-color: var(--gold-light);
    color: var(--gold);
    background: rgba(200,134,10,0.05);
  }
  .brand-pill.active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #fff; border-color: transparent;
    box-shadow: 0 6px 18px rgba(200,134,10,0.35);
  }
  .brand-pill .bp-logo {
    width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 900; letter-spacing: -0.5px;
    flex-shrink: 0;
  }
  .brand-pill:not(.active) .bp-logo {
    /* background: linear-gradient(135deg, var(--gold-light), var(--gold)); */
    /* color: #fff; */
  }
  .brand-pill.active .bp-logo {
    background: rgba(255,255,255,0.25); color: #fff;
  }
  .brand-pill .bp-count {
    background: rgba(0,0,0,0.08); border-radius: 100px;
    padding: 1px 8px; font-size: 11px; font-weight: 700;
  }
  .brand-pill.active .bp-count { background: rgba(255,255,255,0.2); }

  /* Brand pill "All" */
  .brand-pill-all .bp-logo { background: var(--dark); color: var(--gold-light); }

  /* Products count line */
  .products-count-bar {
    max-width: 1200px; margin: 0 auto; padding: 28px 5% 0;
    display: flex; align-items: center; justify-content: space-between;
  }
  .products-count-bar .showing {
    font-size: 13px; color: var(--warm-mid);
  }
  .products-count-bar .showing strong { color: var(--dark); font-weight: 700; }
  .products-count-bar .active-brand-badge {
    display: flex; align-items: center; gap: 8px;
    background: rgba(200,134,10,0.1); border: 1px solid var(--border);
    border-radius: 100px; padding: 6px 14px;
    font-size: 12px; font-weight: 600; color: var(--gold);
  }
  .products-count-bar .active-brand-badge .clear-btn {
    cursor: pointer; opacity: 0.7; transition: opacity 0.2s;
    font-size: 14px; line-height: 1;
  }
  .products-count-bar .active-brand-badge .clear-btn:hover { opacity: 1; }

  /* catalog-tag becomes brand name tag */
  .catalog-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; border-radius: 100px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase; margin-bottom: 14px;
  }
  .catalog-tag .ct-dot {
    width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  }
  /* Brand color themes */
  .brand-sk      { background: rgba(200,134,10,0.12); color: #a06a00; }
  .brand-sk      .ct-dot { background: var(--gold); }
  .brand-premium { background: rgba(34,80,34,0.1);   color: #2a5e2a; }
  .brand-premium .ct-dot { background: #3a8a3a; }
  .brand-rajkot  { background: rgba(30,60,120,0.1);  color: #1e3c78; }
  .brand-rajkot  .ct-dot { background: #2a55b8; }
  .brand-gujarat { background: rgba(120,30,30,0.1);  color: #7a1e1e; }
  .brand-gujarat .ct-dot { background: #b82a2a; }

  /* card hidden state */
  .catalog-card.hidden {
    display: none;
  }
  /* card appear animation */
  .catalog-card.visible {
    animation: cardReveal 0.35s ease both;
  }
  @keyframes cardReveal {
    from { opacity: 0; transform: scale(0.96) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }

  /* empty state */
  .no-products {
    display: none; grid-column: 1/-1;
    text-align: center; padding: 80px 20px;
  }
  .no-products .np-icon { font-size: 56px; margin-bottom: 16px; }
  .no-products p { font-size: 17px; color: var(--warm-mid); }

  /* ─── CONTACT PAGE ─── */
  .contact-hero {
    background: linear-gradient(135deg, #1A1208, #3D2B0E);
    padding: 100px 5%; text-align: center;
  }
  .contact-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 4vw, 68px); font-weight: 900; color: #fff; margin-bottom: 20px; }
  .contact-hero p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; }

  .contact-main { padding: 100px 5%; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; }

  .contact-info h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
  .contact-info p { font-size: 16px; line-height: 1.8; color: var(--warm-mid); margin-bottom: 40px; }
  .contact-details { display: flex; flex-direction: column; gap: 24px; }
  .contact-item { display: flex; align-items: flex-start; gap: 18px; }
  .contact-item-icon {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; box-shadow: 0 6px 20px rgba(200,134,10,0.3);
  }
  .contact-item-text .ci-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
  .contact-item-text .ci-val { font-size: 16px; font-weight: 500; color: var(--dark); }
  .contact-item-text .ci-sub { font-size: 13px; color: var(--warm-mid); margin-top: 2px; }

  .contact-form-wrap {
    background: #fff; border-radius: 20px; padding: 50px 44px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(200,134,10,0.08);
  }
  .contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
  .contact-form-wrap .form-sub { font-size: 14px; color: var(--warm-mid); margin-bottom: 36px; }

  .form-group { margin-bottom: 22px; }
  .form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--warm-mid); margin-bottom: 8px; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 13px 16px;
    border: 1px solid var(--border); border-radius: 8px;
    font-family: 'DM Sans', sans-serif; font-size: 15px;
    color: var(--dark); background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(200,134,10,0.12);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select { appearance: none; cursor: pointer; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

  .submit-btn {
    width: 100%; background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #fff; border: none; padding: 15px; border-radius: 8px;
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
    cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(200,134,10,0.3); letter-spacing: 0.5px;
  }
  .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,134,10,0.45); }
  .submit-msg { display: none; text-align: center; padding: 16px; color: #2d7a2d; font-weight: 600; font-size: 15px; }

  /* Map area */
  .map-section { background: #fff; padding: 80px 5%; }
  .map-inner { max-width: 1200px; margin: 0 auto; }
  .map-embed {
    border-radius: 16px; overflow: hidden; margin-top: 40px;
    height: 380px; border: 2px solid var(--border);
    background: linear-gradient(135deg, var(--cream), var(--gold-pale));
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 16px;
  }
  .map-embed .map-icon { font-size: 64px; }
  .map-embed p { font-size: 17px; color: var(--warm-mid); font-weight: 500; }
  .map-embed a {
    background: var(--gold); color: #fff; padding: 10px 24px; border-radius: 6px;
    text-decoration: none; font-weight: 600; font-size: 14px;
    transition: background 0.2s;
  }
  .map-embed a:hover { background: var(--gold-light); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark); padding: 70px 5% 32px;
  }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
  .footer-brand .brand-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--gold-light); margin-bottom: 12px; }
  .footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.45); max-width: 280px; }
  .footer-col h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; font-weight: 600; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--gold-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

  /* Mobile */
  @media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .products-grid-home { grid-template-columns: 1fr 1fr; }
    .about-story .section-inner { grid-template-columns: 1fr; }
    .about-story-img { display: none; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .products-catalog { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
    .products-grid-home { grid-template-columns: 1fr; }
    .products-catalog { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
  }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-in { animation: fadeUp 0.8s ease both; }
  .delay-1 { animation-delay: 0.4s; }
  .delay-2 { animation-delay: 0.9s; }
  .delay-3 { animation-delay: 1.4s; }

  /* ─── PRODUCT DETAIL DRAWER ─── */
  .pd-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(15,10,2,0.72);
    backdrop-filter: blur(6px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .pd-overlay.open { opacity: 1; pointer-events: all; }

  .pd-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 2100;
    width: min(680px, 100vw);
    background: var(--cream);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -20px 0 80px rgba(0,0,0,0.35);
    display: flex; flex-direction: column;
  }
  .pd-drawer.open { transform: translateX(0); }

  .pd-close {
    position: sticky; top: 0; z-index: 10;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 28px;
    background: rgba(250,246,238,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }
  .pd-close-left { display: flex; align-items: center; gap: 10px; }
  .pd-close-brand {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); font-weight: 700;
  }
  .pd-close-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--dark); color: #fff; border: none;
    font-size: 18px; cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: background 0.2s; line-height: 1;
  }
  .pd-close-btn:hover { background: var(--gold); }

  .pd-hero {
    background: linear-gradient(135deg, #1A1208, #3D2B0E);
    height: 320px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; flex-shrink: 0;
  }
  .pd-hero-pattern {
    position: absolute; inset: 0; opacity: 0.05;
    background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
    background-size: 28px 28px; z-index: 1;
  }
  .pd-hero-glow {
    position: absolute; top: -80px; right: -80px;
    width: 340px; height: 340px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,134,10,0.2) 0%, transparent 70%);
    z-index: 1;
  }
  .pd-emoji {
    position: absolute; inset: 0; z-index: 0;
  }
  .pd-emoji img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform 0.6s ease;
  }
  .pd-drawer.open .pd-emoji img { transform: scale(1.04); }
  /* dark overlay on drawer hero image */
  .pd-hero::before {
    content: ''; position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to bottom, rgba(15,8,0,0.3) 0%, rgba(15,8,0,0.55) 100%);
  }
  .pd-hero-badge {
    position: absolute; bottom: 18px; left: 24px;
    background: rgba(200,134,10,0.92); color: #fff;
    padding: 6px 16px; border-radius: 100px;
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; z-index: 3;
  }

  .pd-body { padding: 36px 32px; flex: 1; }

  .pd-tag-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
  .pd-brand-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; border-radius: 100px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  }
  .pd-feature-pill {
    background: var(--dark); color: var(--gold-light);
    padding: 4px 12px; border-radius: 100px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  }

  .pd-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 900; color: var(--dark); line-height: 1.15;
    margin-bottom: 18px;
  }
  .pd-desc {
    font-size: 16px; line-height: 1.8; color: var(--warm-mid);
    margin-bottom: 36px; padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
  }

  .pd-specs-title {
    font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold); font-weight: 700; margin-bottom: 20px;
  }
  .pd-specs-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    margin-bottom: 36px;
  }
  .pd-spec-item {
    background: #fff; border: 1px solid var(--border);
    border-radius: 12px; padding: 16px 18px;
    transition: border-color 0.2s;
  }
  .pd-spec-item:hover { border-color: var(--gold-light); }
  .pd-spec-key {
    font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--warm-mid); font-weight: 600; margin-bottom: 6px;
  }
  .pd-spec-val {
    font-size: 15px; font-weight: 700; color: var(--dark);
  }

  .pd-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 36px; }

  .pd-moq-bar {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--dark); border-radius: 14px;
    padding: 22px 28px; margin-bottom: 36px;
  }
  .pd-moq-left .moq-lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 600; }
  .pd-moq-left .moq-num { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--gold-light); margin-top: 4px; }
  .pd-moq-right .moq-lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 600; }
  .pd-moq-right .moq-num { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85); margin-top: 4px; }

  .pd-cta-wrap { display: flex; gap: 14px; padding-bottom: 40px; }
  .pd-cta-primary {
    flex: 1; background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #fff; border: none; padding: 16px 24px; border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
    cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 28px rgba(200,134,10,0.35); letter-spacing: 0.3px;
  }
  .pd-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(200,134,10,0.5); }
  .pd-cta-secondary {
    background: #fff; color: var(--dark); border: 1.5px solid var(--border);
    padding: 16px 22px; border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
    cursor: pointer; transition: border-color 0.2s, background 0.2s;
  }
  .pd-cta-secondary:hover { border-color: var(--gold-light); background: var(--gold-pale); }

  /* Mobile Nav */
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 999; top: 72px;
    background: rgba(26,18,8,0.98); flex-direction: column; align-items: center;
    justify-content: center; gap: 30px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { color: #fff; text-decoration: none; font-size: 22px; font-family: 'Playfair Display', serif; transition: color 0.2s; }
  .mobile-menu a:hover { color: var(--gold-light); }
  
/* ═══════════════════════════════════════════════════
   PRODUCTS MEGA DROPDOWN – Desktop
   ═══════════════════════════════════════════════════ */

/* Wrap the <li> so dropdown positions relative to it */
.nav-dropdown-wrap {
    position: static;
}

/* Trigger link */
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.25s;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active { color: var(--gold-light); }

/* Chevron icon */
.nav-chevron {
    width: 9px; height: 6px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    opacity: 0.7;
}
.nav-dropdown-wrap:hover .nav-chevron,
.nav-dropdown-wrap.open   .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown panel */
.nav-dropdown {
    position: fixed;
    top: 48px;               /* below sticky nav */
    left: 0; right: 0;
    z-index: 990;
    /* hidden by default */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

/* Show on hover (desktop) */
.nav-dropdown-wrap:hover .nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

/* Inner container – constrained width */
.nav-dropdown-inner {
    max-width: 540px;
    margin: 0 auto;
    background: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.18),
        0 0 0 1px rgba(200,134,10,0.12);
    overflow: hidden;
    padding: 8px;
}

/* "All Products" row */
.nd-all-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.18s;
    margin-bottom: 4px;
}
.nd-all-link:hover { background: var(--cream); }
.nd-all-icon {
    font-size: 28px;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold-pale), #edd998);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.nd-all-title {
    font-size: 14px; font-weight: 700; color: var(--dark);
    font-family: 'Playfair Display', serif;
}
.nd-all-sub { font-size: 12px; color: var(--warm-mid); margin-top: 1px; }

/* Divider with label */
.nd-divider {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 16px 10px;
}
.nd-divider span {
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--warm-mid);
    white-space: nowrap;
}
.nd-divider::before,
.nd-divider::after {
    content: ''; flex: 1;
    height: 1px; background: var(--border);
}

/* Brand cards grid */
.nd-brands-grid {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-bottom: 4px;
}
.nd-brand-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s;
    border: 1px solid transparent;
}
.nd-brand-card:hover {
    background: var(--cream);
    border-color: var(--border);
    transform: translateX(3px);
}
.nd-brand-badge {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 11px; letter-spacing: -0.5px;
    flex-shrink: 0; color: #fff;
}
/* Map brand color classes to badge backgrounds */
.nd-brand-badge.brand-sk      { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.nd-brand-badge.brand-gujarat { background: linear-gradient(135deg, #d44c4c, #b82a2a); }
.nd-brand-badge.brand-rajkot  { background: linear-gradient(135deg, #4c7fd4, #2a55b8); }
.nd-brand-badge.brand-premium { background: linear-gradient(135deg, #4caf6a, #2d8a45); }

.nd-brand-info { flex: 1; min-width: 0; }
.nd-brand-name {
    font-size: 14px; font-weight: 700; color: var(--dark);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nd-brand-count { font-size: 11px; color: var(--warm-mid); margin-top: 1px; }

.nd-brand-arrow {
    width: 14px; height: 14px; flex-shrink: 0;
    color: var(--warm-mid);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.18s, transform 0.18s;
}
.nd-brand-card:hover .nd-brand-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ═══════════════════════════════════════════════════
   PRODUCTS ACCORDION – Mobile Menu
   ═══════════════════════════════════════════════════ */

.mm-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mm-accordion-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    cursor: pointer;
    padding: 6px 0;
    transition: color 0.2s;
    user-select: none;
    background: none;
    border: none;
}
.mm-accordion-trigger:hover { color: var(--gold-light); }
.mm-accordion-trigger.open  { color: var(--gold-light); }

.mm-acc-chevron {
    width: 12px; height: 8px;
    transition: transform 0.28s ease;
    flex-shrink: 0;
}
.mm-accordion-trigger.open .mm-acc-chevron {
    transform: rotate(180deg);
}

/* Slide panel */
.mm-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    opacity: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.mm-accordion-body.open {
    max-height: 500px;
    opacity: 1;
    padding: 12px 0 4px;
}

.mm-sub-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    background: rgba(200,134,10,0.15);
    border: 1px solid rgba(200,134,10,0.3);
    transition: background 0.2s;
    width: 100%;
    max-width: 280px;
    justify-content: center;
}
.mm-sub-all:hover {
    background: rgba(200,134,10,0.28);
    color: #fff;
}

.mm-sub-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 9px 20px;
    border-radius: 10px;
    transition: color 0.2s, background 0.2s;
    width: 100%;
    max-width: 280px;
}
.mm-sub-brand:hover {
    color: var(--gold-light);
    background: rgba(255,255,255,0.06);
}

/* Colored dot for brand in mobile */
.mm-brand-dot {
    width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.mm-brand-dot.brand-sk      { background: var(--gold-light); }
.mm-brand-dot.brand-gujarat { background: #d44c4c; }
.mm-brand-dot.brand-rajkot  { background: #4c7fd4; }
.mm-brand-dot.brand-premium { background: #4caf6a; }

.mm-brand-cnt {
    margin-left: auto;
    background: rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 2px 9px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
}

/* ─── Brand Filter – Responsive ─── */
@media (max-width: 768px) {
  /* Hide text label on tablet – pills need the space */
  .brand-filter-label { display: none; }
  .brand-filter-row { padding: 0 10px; }
  .bf-arrow-left  { margin-left: 2px; margin-right: 2px; }
  .bf-arrow-right { margin-left: 2px; }
  .brand-pill { padding: 8px 14px; font-size: 12px; margin: 8px 4px 8px 0; }
  .brand-pill .bp-logo { width: 22px; height: 22px; font-size: 9px; }
}

@media (max-width: 480px) {
  /* On very small screens reduce pill further */
  .brand-pill { padding: 7px 12px; font-size: 11px; gap: 7px; }
  .brand-pill .bp-count { padding: 1px 6px; font-size: 10px; }
  .bf-arrow { width: 28px; height: 28px; }
  .bf-arrow svg { width: 11px; height: 11px; }
}

  
/* ── FLOATING ACTION BUTTONS (FAB) ───────────────────── */
.fab-stack {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Base FAB button style */
.fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.3s ease;
}

.fab-btn:hover {
    transform: scale(1.1);
}

/* Tooltip */
.fab-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.73rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 5px 11px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--dark);
}

.fab-btn:hover .fab-tooltip {
    opacity: 1;
}

/* ── Scroll-to-top button ── */
.fab-scroll {
    background: #AE7509;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(232, 115, 10, 0.4), 0 2px 6px rgba(0, 0, 0, 0.12);
    /* hidden until user scrolls down */
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.22s ease;
}

.fab-scroll.visible {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.fab-scroll:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 20px rgba(190, 91, 3, 0.5);
    transform: scale(1.1);
}

/* ── WhatsApp button ── */
.fab-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.12);
    animation: fab-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both;
}

@keyframes fab-pop {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fab-wa:hover {
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.55);
    transform: scale(1.1);
}

/* Pulse ring on WhatsApp */
.fab-wa::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: fab-pulse 2.8s ease-out 3s infinite;
    z-index: -1;
}

@keyframes fab-pulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .fab-stack {
        bottom: 18px;
        right: 18px;
        gap: 8px;
    }

    .fab-btn {
        width: 46px;
        height: 46px;
    }
}

/* ── PAGE LOADER ──────────────────────────────────────── */
#page-loader {
    position: fixed;
    inset: 0;
    background: #111418;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#page-loader img {
    width: 90px;
    height: auto;
    animation: loaderPulse 1.1s infinite ease-in-out;
}

@keyframes loaderPulse {
    0% {
        transform: scale(1);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.18);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.65;
    }
}