/* ═══════════════════════════════════════════════════════════════════════════
   SportsAdvanced – Main Stylesheet
   ════════════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────────────────────────────────────── */
:root {
    --primary:    #e31e24;
    --primary-d:  #b71c1c;
    --secondary:  #1a1a2e;
    --accent:     #f5a623;
    --ui-hover-accent: #f97316;
    --dark:       #111827;
    --light:      #f8f9fa;
    --text:       #333;
    --muted:      #6c757d;
    --border:     #e5e7eb;
    --radius:     12px;
    --shadow:     0 4px 24px rgba(0,0,0,.10);
    --shadow-lg:  0 8px 48px rgba(0,0,0,.16);
    --transition: all .3s ease;
    --font-head:  'Oswald', sans-serif;
    --font-body:  'Poppins', sans-serif;
}

/* ── Base ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-d); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 600; }
img { max-width: 100%; height: auto; }
body.image-protection-enabled img,
body.image-protection-enabled picture,
body.image-protection-enabled video {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
}
.section-padding { padding: 70px 0; }
.text-primary { color: var(--primary) !important; }
.bg-primary  { background-color: var(--primary) !important; }
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
    letter-spacing: .5px;
}
.btn-primary:hover {
    background: var(--primary-d);
    border-color: var(--primary-d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227,30,36,.35);
}
.btn-outline-primary { color: var(--primary); border-color: var(--primary); font-weight: 600; }
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ── Top Bar ──────────────────────────────────────────────────────────────── */
.topbar {
    background: var(--secondary);
    color: rgba(255,255,255,.85);
    font-size: .78rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-link {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: var(--transition);
}
.topbar-link:hover { color: var(--accent); }
.topbar-notice { color: rgba(255,255,255,.75); font-size: .76rem; }
.social-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    color: rgba(255,255,255,.8);
    font-size: .7rem;
    transition: var(--transition);
}
.social-icon:hover, .social-icon.whatsapp-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.social-icon.whatsapp-icon { background: rgba(37,211,102,.2); color: #25d366; }
.auth-links a { color: rgba(255,255,255,.75); font-size: .75rem; }
.auth-links a:hover { color: var(--accent); }

/* ── Header ──────────────────────────────────────────────────────────────── */
.main-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    z-index: 1030;
    position: sticky;
    top: 0;
    overflow: visible;
}
.main-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--primary);
    z-index: 1031;
}
html[dir="rtl"] .main-header .navbar {
    direction: ltr;
}
.topbar {
    position: relative;
    z-index: 1045;
    overflow: visible;
}
.topbar .container,
.main-header .container {
    max-width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.topbar .dropdown-menu {
    z-index: 1060;
}
.topbar .btn,
.topbar-link,
.topbar-notice,
.auth-links a,
.social-icon {
    white-space: nowrap;
}
.navbar { gap: 8px; }
.site-brand {
    margin-right: 1rem !important;
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-main {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
}
.logo-main span { color: var(--primary); }
.logo-sub { font-size: .65rem; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }
.site-logo { max-height: 60px; width: auto; }
.navbar-nav .nav-link {
    font-weight: 500;
    font-size: .9rem;
    color: var(--secondary) !important;
    padding: .5rem .75rem !important;
    border-radius: 6px;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: rgba(227,30,36,.06);
}

/* Mega Menu */
.mega-dropdown .dropdown-menu {
    width: min(900px, 95vw);
    left: 50%;
    transform: translateX(-50%);
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    border-top: 3px solid var(--primary);
}
.mega-menu-item {
    display: block;
    font-weight: 600;
    color: var(--secondary);
    padding: .4rem 0;
    font-size: .9rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: .25rem;
}
.mega-menu-item:hover { color: var(--primary); }
.mega-menu-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--menu-accent, var(--primary)) 18%, #fff);
    color: var(--menu-accent, var(--primary));
    flex-shrink: 0;
    transition: var(--transition);
}
.mega-menu-item:hover .mega-menu-icon {
    background: var(--menu-accent, var(--primary));
    color: #fff;
}
.mega-menu-count {
    font-size: .68rem;
    font-weight: 700;
    line-height: 1;
    color: var(--muted);
    background: #f3f4f6;
    border-radius: 999px;
    padding: 4px 8px;
}
.mega-sub-list {
    list-style: none;
    padding: 0;
    margin: .25rem 0 0;
}
.mega-sub-list li a {
    color: var(--muted);
    font-size: .82rem;
    display: flex;
    align-items: center;
    padding: .2rem 0 .2rem .75rem;
    transition: var(--transition);
}
.mega-sub-list li a:hover { color: var(--primary); padding-left: 1rem; }

/* Search */
.search-form { gap: 4px; }
.search-input {
    width: 180px;
    border-radius: 20px 0 0 20px !important;
    border: 1px solid var(--border);
    font-size: .85rem;
    transition: var(--transition);
}
.search-input:focus { width: 220px; border-color: var(--primary); box-shadow: none; }
.search-form .btn { border-radius: 0 20px 20px 0 !important; }

/* Nav icon buttons */
.nav-icon-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background: var(--light);
    border-radius: 50%;
    color: var(--secondary);
    font-size: .95rem;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.nav-icon-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.price-list-btn,
.quote-cta-btn {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .2px;
    box-shadow: none;
    padding-inline: 1rem;
    border-width: 1px !important;
}
.price-list-btn {
    border-color: rgba(26,26,46,.18) !important;
    color: var(--secondary) !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}
.price-list-btn:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2ff 100%) !important;
    color: var(--secondary) !important;
    border-color: rgba(67,97,238,.35) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(26,26,46,.12);
}
.quote-cta-btn {
    color: #fff !important;
    background: linear-gradient(135deg, #e31e24 0%, #ff4d4d 55%, #ff7a59 100%) !important;
    border-color: rgba(227,30,36,.35) !important;
    box-shadow: 0 10px 22px rgba(227,30,36,.22) !important;
}
.quote-cta-btn:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #c91a20 0%, #f44336 55%, #ff6f61 100%) !important;
    border-color: rgba(227,30,36,.4) !important;
    box-shadow: 0 12px 26px rgba(227,30,36,.3) !important;
}
.nav-badge {
    position: absolute;
    top: -6px; right: -6px;
    background: var(--primary);
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    min-width: 18px; height: 18px;
    border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    line-height: 1;
    padding: 0 4px;
    border: 2px solid #fff;
}

/* ── Hero Slider ──────────────────────────────────────────────────────────── */
.hero-slider-section { position: relative; }
.hero-slider,
.heroSwiper,
.hero-default {
    height: 680px;
}
@media (max-width: 991px) {
    .hero-slider,
    .heroSwiper,
    .hero-default {
        height: 560px;
    }
}
@media (max-width: 768px) {
    .hero-slider,
    .heroSwiper,
    .hero-default {
        height: 500px;
    }
}
@media (max-width: 480px) {
    .hero-slider,
    .heroSwiper,
    .hero-default {
        height: 430px;
    }
}

.hero-slide {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
}
.hero-overlay {
    position: absolute; inset: 0;
}
.hero-default {
    min-height: 560px;
    background: linear-gradient(135deg, var(--secondary) 0%, #2d1b6b 50%, var(--primary) 100%);
    display: flex;
    align-items: center;
    position: relative;
}
.hero-default .hero-overlay {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,.05)'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-pre-title {
    display: inline-block;
    background: rgba(0,0,0,.35);
    color: var(--accent);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,.2);
}
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
    margin-bottom: .75rem;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 1rem;
}
.hero-features { gap: 1.5rem !important; }
.hero-feature { color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 500; }
.hero-btn-primary { box-shadow: 0 4px 20px rgba(227,30,36,.4); }
.hero-btn-outline { border-width: 2px; }

/* Swiper overrides */
.swiper-button-next, .swiper-button-prev {
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    width: 44px; height: 44px;
    color: var(--primary) !important;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 14px; font-weight: 900; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* ── Ticker ───────────────────────────────────────────────────────────────── */
.ticker-strip {
    position: relative;
    overflow: hidden;
    padding: .85rem 0;
    background: linear-gradient(90deg, #0f172a 0%, #111827 48%, #0f172a 100%);
    border-top: 1px solid rgba(239,68,68,.28);
    border-bottom: 1px solid rgba(148,163,184,.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
    color: #fff;
    font-weight: 500;
    font-size: .88rem;
    white-space: nowrap;
    padding-right: 100px;
}
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Features Strip ─────────────────────────────────────────────────────── */
.features-strip {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: linear-gradient(160deg, #0d0d1a 0%, #1a1a2e 60%, #0f0f1e 100%);
    border-top: 3px solid var(--primary);
}
.features-strip::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(227,30,36,.12) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 50%, rgba(245,166,35,.08) 0%, transparent 55%);
    pointer-events: none;
}
.feature-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    transition: all .35s cubic-bezier(.25,.8,.25,1);
    cursor: default;
}
.feature-box:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    background: rgba(255,255,255,.08);
}
.feature-box-inner {
    padding: 36px 26px 28px;
}
.feature-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.feature-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.9rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #ff5b5b);
    box-shadow: 0 12px 28px rgba(227,30,36,.35);
    flex-shrink: 0;
    transition: transform .35s ease;
}
.feature-box:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }
.features-strip .col-lg-3:nth-child(2) .feature-icon { background: linear-gradient(135deg, #4361ee, #7c3aed); box-shadow: 0 12px 28px rgba(67,97,238,.35); }
.features-strip .col-lg-3:nth-child(3) .feature-icon { background: linear-gradient(135deg, #2ec4b6, #10b981); box-shadow: 0 12px 28px rgba(46,196,182,.35); }
.features-strip .col-lg-3:nth-child(4) .feature-icon { background: linear-gradient(135deg, #ffb703, #f97316); box-shadow: 0 12px 28px rgba(255,183,3,.35); }
.feature-number {
    font-family: var(--font-head);
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(255,255,255,.05);
    line-height: 1;
    user-select: none;
}
.feature-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.feature-text {
    font-size: .87rem;
    color: rgba(255,255,255,.55);
    line-height: 1.75;
    margin-bottom: 20px;
}
.feature-stat {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(245,166,35,.1);
    border: 1px solid rgba(245,166,35,.2);
    padding: 4px 12px;
    border-radius: 30px;
}
.features-strip .col-lg-3:nth-child(2) .feature-stat { color: #a78bfa; background: rgba(167,139,250,.1); border-color: rgba(167,139,250,.2); }
.features-strip .col-lg-3:nth-child(3) .feature-stat { color: #2ec4b6; background: rgba(46,196,182,.1); border-color: rgba(46,196,182,.2); }
.features-strip .col-lg-3:nth-child(4) .feature-stat { color: #f97316; background: rgba(249,115,22,.1); border-color: rgba(249,115,22,.2); }
.feature-bottom-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff5b5b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.feature-box:hover .feature-bottom-bar { transform: scaleX(1); }
.features-strip .col-lg-3:nth-child(2) .feature-bottom-bar { background: linear-gradient(90deg, #4361ee, #7c3aed); }
.features-strip .col-lg-3:nth-child(3) .feature-bottom-bar { background: linear-gradient(90deg, #2ec4b6, #10b981); }
.features-strip .col-lg-3:nth-child(4) .feature-bottom-bar { background: linear-gradient(90deg, #ffb703, #f97316); }
@media (max-width: 575px) {
    .feature-box-inner { padding: 24px 18px 20px; }
    .feature-title { font-size: 1rem; }
    .feature-icon { width: 56px; height: 56px; font-size: 1.4rem; border-radius: 14px; }
    .feature-number { font-size: 3rem; }
}

.text-white-75 { color: rgba(255,255,255,.75) !important; }

/* ── Custom Homepage Blocks ────────────────────────────────────────────── */
.homepage-custom-section { position: relative; }
.homepage-image-block-section .section-header { margin-bottom: 2rem; }
.homepage-image-block-wrap {
    position: relative;
}
.homepage-image-block-centered {
    max-width: 920px;
    margin: 0 auto;
}
.homepage-image-block-full {
    max-width: 100%;
}
.homepage-image-block-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.homepage-image-block-card {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #fff;
}
.homepage-image-block-card.is-card {
    border: 1px solid rgba(0,0,0,.06);
}
.homepage-image-block-image {
    display: block;
    width: 100%;
    height: auto;
}
.homepage-image-block-placeholder {
    min-height: 320px;
    border-radius: 28px;
    background: linear-gradient(135deg, #101828 0%, #1f2937 50%, #111827 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.homepage-image-block-copy {
    color: rgba(255,255,255,.8);
}
.homepage-parallax-section {
    display: flex;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    overflow: hidden;
    color: #fff;
}
.homepage-parallax-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.homepage-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,13,26,.82) 0%, rgba(27,27,50,.78) 50%, rgba(227,30,36,.38) 100%);
    pointer-events: none;
    z-index: 1;
}
.homepage-parallax-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 1rem 0;
}
.homepage-parallax-copy {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 760px;
}
/* parallax fallback (kept for legacy reference) */

/* ── Section Headers ────────────────────────────────────────────────────── */
.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: .5rem;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: .75rem;
}
.section-desc { color: var(--muted); max-width: 540px; margin: 0 auto; }

/* ── Category Cards ─────────────────────────────────────────────────────── */
/* Legacy selectors kept for other pages that may use them */
.category-card { display: block; }
.category-card-inner { border-radius: var(--radius); overflow: hidden; position: relative; transition: var(--transition); box-shadow: var(--shadow); }
.category-card-inner:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.category-img-wrap { position: relative; padding-top: 100%; overflow: hidden; background: var(--cat-color, var(--primary)); }
.category-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-card-inner:hover .category-img-wrap img { transform: scale(1.08); }
.category-icon-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,.8); }
.category-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.7) 100%); }
.category-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; color: #fff; }
.category-info h5 { font-family: var(--font-head); font-size: 1rem; margin: 0 0 2px; }
.category-info p { font-size: .78rem; color: rgba(255,255,255,.8); }

/* ── NEW Professional Category Cards ─────────────────────────────────── */
.cat-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 28px rgba(0,0,0,.09);
    transition: all .38s cubic-bezier(.25,.8,.25,1);
    border: 1px solid rgba(0,0,0,.05);
    position: relative;
}
.cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 64px rgba(0,0,0,.16);
    border-color: var(--cat-accent, var(--primary));
}
.cat-card-media {
    position: relative;
    padding-top: 70%; /* 10:7 ratio – taller than square */
    overflow: hidden;
    background: var(--cat-accent, var(--primary));
}
.cat-card-media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}
.cat-card:hover .cat-card-media img { transform: scale(1.08); }
.cat-card-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.cat-icon-bg {
    position: absolute; inset: 0;
    background: linear-gradient(140deg, var(--cat-accent, #e31e24) 0%, color-mix(in srgb, var(--cat-accent, #e31e24) 70%, #000) 100%);
}
.cat-card-placeholder > i {
    position: relative; z-index: 1;
    font-size: 3.8rem;
    color: rgba(255,255,255,.55);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
    transition: transform .4s ease;
}
.cat-card:hover .cat-card-placeholder > i { transform: scale(1.15) rotate(-8deg); }
.cat-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
        transparent 30%,
        rgba(0,0,0,.15) 60%,
        rgba(0,0,0,.55) 100%);
}
.cat-card-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    letter-spacing: .5px;
    border: 1px solid rgba(255,255,255,.15);
}
.cat-card-sub-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--cat-accent, var(--primary));
    color: #fff;
    font-size: .67rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    letter-spacing: .5px;
}
.cat-card-body {
    padding: 20px 20px 22px;
    position: relative;
}
.cat-card-icon-pill {
    position: absolute;
    top: -22px; left: 20px;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--cat-accent, var(--primary));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    border: 3px solid #fff;
    transition: transform .35s ease;
}
.cat-card:hover .cat-card-icon-pill { transform: scale(1.12) rotate(-6deg); }
.cat-card-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 12px 0 6px;
}
.cat-card-desc {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.6;
}
.cat-card-cta {
    font-size: .78rem;
    font-weight: 700;
    color: var(--cat-accent, var(--primary));
    display: inline-flex; align-items: center; gap: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap .25s ease;
}
.cat-card:hover .cat-card-cta { gap: 8px; }
@media (max-width: 575px) {
    .cat-card-body { padding: 16px 14px 18px; }
    .cat-card-title { font-size: .95rem; margin-top: 10px; }
    .cat-card-desc { display: none; }
    .cat-card-icon-pill { top: -18px; width: 36px; height: 36px; font-size: .9rem; }
}

/* ── Category Navigation / Index ──────────────────────────────────────── */
.category-page-layout {
    display: grid;
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    direction: ltr;
}
.category-sidebar-panel {
    position: sticky;
    top: 88px;
    background: linear-gradient(180deg, #1f232b 0%, #171b22 100%);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.06);
    padding: 16px;
    box-shadow: 0 18px 48px rgba(17,24,39,.18);
}
.category-sidebar-head { margin-bottom: 12px; }
.category-sidebar-kicker {
    display: inline-block;
    color: var(--ui-hover-accent);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 2px;
}
.category-sidebar-title {
    color: #fff;
    font-size: 1.12rem;
    margin-bottom: 2px;
}
.category-sidebar-summary {
    color: rgba(255,255,255,.55);
    font-size: .74rem;
}
.category-sidebar-all-wrap { margin-bottom: 12px; }
.category-sidebar-list,
.category-sidebar-children {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-sidebar-list { display: grid; gap: 8px; }
.category-sidebar-item { position: relative; }
.category-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    color: rgba(255,255,255,.78);
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    text-decoration: none;
    transition: var(--transition);
}
.category-sidebar-link:hover,
.category-sidebar-link.active {
    background: var(--ui-hover-accent);
    color: #fff;
    border-color: var(--ui-hover-accent);
    transform: translateX(2px);
    box-shadow: 0 14px 28px rgba(0,0,0,.18);
}
.category-sidebar-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: color-mix(in srgb, var(--menu-accent, var(--ui-hover-accent)) 22%, #fff);
    color: var(--menu-accent, var(--ui-hover-accent));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
    transition: var(--transition);
}
.category-sidebar-link:hover .category-sidebar-icon,
.category-sidebar-link.active .category-sidebar-icon {
    background: rgba(255,255,255,.18);
    color: #fff;
}
.category-sidebar-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.category-sidebar-name {
    font-size: .84rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.category-sidebar-subtitle {
    font-size: .66rem;
    color: rgba(255,255,255,.55);
    line-height: 1.1;
}
.category-sidebar-link:hover .category-sidebar-subtitle,
.category-sidebar-link.active .category-sidebar-subtitle {
    color: rgba(255,255,255,.8);
}
.category-sidebar-count {
    margin-left: auto;
    min-width: 26px;
    height: 26px;
    padding: 0 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
}
.category-sidebar-children {
    margin: 8px 0 0 12px;
    padding: 0 0 0 10px;
    border-left: 1px dashed rgba(255,255,255,.08);
    display: grid;
    gap: 6px;
}
.category-sidebar-children .category-sidebar-link {
    padding: 8px 10px;
    background: rgba(255,255,255,.02);
}
.category-sidebar-children .category-sidebar-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
}
.category-sidebar-children .category-sidebar-name { font-size: .78rem; }
.category-sidebar-children .category-sidebar-count {
    min-width: 22px;
    height: 22px;
    font-size: .62rem;
}
.category-banner-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.category-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--ui-hover-accent) 0%, color-mix(in srgb, var(--ui-hover-accent) 55%, #fff) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 14px 30px rgba(0,0,0,.2);
    border: 1px solid rgba(255,255,255,.14);
    overflow: hidden;
}
.category-banner-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .category-page-layout { grid-template-columns: 1fr; }
    .category-sidebar-panel {
        position: static;
        margin-bottom: 12px;
    }
}

.category-page-main {
    min-width: 0;
}
.category-sidebar-toggle {
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: .2px;
}
.category-sidebar-mobile-wrap {
    width: 100%;
}
@media (max-width: 991px) {
    .category-sidebar-mobile-wrap {
        display: none;
        margin-bottom: 12px;
    }
    .category-sidebar-mobile-wrap.is-open {
        display: block;
    }
}

/* ── Product Cards ──────────────────────────────────────────────────────── */
.product-card { position: relative; border-radius: var(--radius) !important; transition: var(--transition); overflow: hidden; border: 1px solid transparent !important; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg) !important; border-color: var(--ui-hover-accent) !important; }
.product-img-wrap {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--light);
}
.product-img-wrap .product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-card .card-body { position: relative; z-index: 2; }
.product-card-swatches {
    display: grid;
    gap: .55rem;
    margin: .15rem 0 .7rem;
}
.product-card-swatches-row {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    flex-wrap: wrap;
}
.product-card-swatches-label {
    flex: 0 0 auto;
    min-width: 3rem;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: .2rem;
}
.product-card-swatches-values {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
}
.product-card-swatch-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .22rem .5rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,.2);
    background: #fff;
    box-shadow: 0 4px 10px rgba(15,23,42,.05);
    font-size: .68rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
    cursor: pointer;
}
.product-card-swatch-chip--color {
    padding-inline: .42rem .6rem;
}
.product-card-swatch-chip:hover,
.product-card-swatch-chip:focus-visible {
    transform: translateY(-1px);
    border-color: var(--primary);
    box-shadow: 0 10px 22px rgba(239,68,68,.12);
    color: var(--secondary);
}
.product-card-swatch-chip:focus-visible {
    outline: 2px solid rgba(239,68,68,.25);
    outline-offset: 2px;
}
.product-card-swatch-name {
    line-height: 1;
}
.product-card-swatch-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.12);
    flex: 0 0 auto;
}
.product-card-swatch-media {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    overflow: hidden;
    flex: 0 0 auto;
}
.product-card-swatch-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    border-radius: inherit;
    text-decoration: none;
}
.product-thumb {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.product-card:hover .product-thumb { transform: scale(1.06); }
.product-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.45);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay .btn { pointer-events: auto; }
.product-actions { opacity: 0; transition: var(--transition); z-index: 3; pointer-events: auto; }
.product-card:hover .product-actions { opacity: 1; }
.product-card .wishlist-btn,
.product-card .compare-btn,
.product-card .add-to-quote-btn,
.product-card .product-quickview-btn {
    position: relative;
    z-index: 4;
}
.product-card:hover .product-price { color: var(--ui-hover-accent); }
.product-price { color: var(--primary); font-size: 1.1rem; }
.add-quote-btn { font-size: .78rem; padding: .3rem .7rem; }

/* ── Stats ──────────────────────────────────────────────────────────────── */
.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #0d0d1a 100%);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(227,30,36,.15) 0%, transparent 70%);
}
.stat-box { position: relative; z-index: 1; padding: 20px; }
.stat-number {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.stat-plus { font-size: 1.5rem; color: var(--accent); font-weight: 700; display: inline; }
.stat-label { color: rgba(255,255,255,.7); font-size: .88rem; margin-top: .5rem; text-transform: uppercase; letter-spacing: 1px; }

/* ── Why Section ────────────────────────────────────────────────────────── */
.bg-dark-custom { background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%); }
.why-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-4px);
}
.why-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}
.why-content h5 { color: #fff; font-size: 1rem; margin-bottom: .4rem; }
.why-content p { color: rgba(255,255,255,.65); font-size: .85rem; }

/* ── CTA Section ────────────────────────────────────────────────────────── */
.cta-section { padding: 60px 0; }
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, #8B0000 100%);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(227,30,36,.3);
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 70%);
}
.cta-title { font-family: var(--font-head); font-size: clamp(1.6rem,3vw,2.4rem); color: #fff; font-weight: 700; margin-bottom: .5rem; }
.cta-subtitle { color: rgba(255,255,255,.85); font-size: 1rem; }

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testimonialsSwiper { padding-bottom: 40px !important; }
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px; right: 20px;
    font-size: 6rem;
    color: var(--primary);
    opacity: .15;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-text { color: var(--text); line-height: 1.7; font-style: italic; font-size: .92rem; }
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ── Newsletter ─────────────────────────────────────────────────────────── */
.newsletter-section { background: linear-gradient(135deg, var(--secondary) 0%, #0d0d1a 100%); padding: 40px 0; }
.newsletter-box h3 { color: #fff; font-family: var(--font-head); }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.main-footer { background: #0d0d1a; color: rgba(255,255,255,.75); }
.footer-logo-text {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}
.footer-desc { font-size: .87rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 1rem; }
.footer-contact { font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: .4rem; }
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--accent); }
.footer-heading {
    font-family: var(--font-head);
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
    color: rgba(255,255,255,.55);
    font-size: .85rem;
    transition: var(--transition);
    display: block;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}
.footer-bottom-link { color: rgba(255,255,255,.4); font-size: .8rem; }
.footer-bottom-link:hover { color: var(--accent); }

/* Social Buttons */
.social-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    color: #fff;
    font-size: .85rem;
    transition: var(--transition);
}
.social-btn:hover { transform: translateY(-3px) scale(1.1); color: #fff; }
.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.twitter { background: #000; }
.social-btn.linkedin { background: #0a66c2; }
.social-btn.youtube { background: #ff0000; }
.social-btn.whatsapp { background: #25d366; }

/* ── WhatsApp Float ──────────────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 90px; right: 24px;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff !important;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.5);
    z-index: 1040;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,.7);
    color: #fff !important;
}
.whatsapp-tooltip {
    position: absolute;
    right: 66px;
    background: rgba(0,0,0,.8);
    color: #fff;
    font-size: .78rem;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
    pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
@keyframes whatsappPulse {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
    50%      { box-shadow: 0 4px 30px rgba(37,211,102,.8), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ── Back To Top ────────────────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 44px; height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: .9rem;
    cursor: pointer;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1039;
    box-shadow: 0 4px 16px rgba(227,30,36,.4);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-d); transform: translateY(-3px); }

/* ── Compare Bar ────────────────────────────────────────────────────────── */
.compare-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 3px solid var(--primary);
    padding: 12px 0;
    z-index: 1035;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
    animation: slideUp .3s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* ── Brands Section ─────────────────────────────────────────────────────── */
.brands-ticker { animation: brandScroll 20s linear infinite; width: max-content; }
.brand-item { font-family: var(--font-head); letter-spacing: 2px; opacity: .5; transition: var(--transition); }
.brand-item:hover { opacity: 1; color: var(--primary); }
@keyframes brandScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Product Detail Zoom ────────────────────────────────────────────────── */
.zoom-container {
    position: relative;
    overflow: visible;
    border-radius: var(--radius);
    cursor: zoom-in;
    border: 1px solid var(--border);
}
.zoom-container img { width: 100%; display: block; transition: transform .1s ease; }
.zoom-lens {
    position: absolute;
    border: 2px solid var(--primary);
    width: 120px; height: 120px;
    pointer-events: none;
    display: none;
    border-radius: 50%;
    box-shadow: 0 0 0 2000px rgba(0,0,0,.3);
    z-index: 10;
}
.zoom-result {
    position: absolute;
    top: 0; left: calc(100% + 15px);
    width: 400px; height: 400px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: none;
    z-index: 20;
    background: #fff;
    box-shadow: var(--shadow-lg);
}
.zoom-result img { position: absolute; max-width: none; }

/* ── Product Swatches ──────────────────────────────────────────────────── */
.product-swatches-panel {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(148,163,184,.16);
    border-radius: 22px;
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(15,23,42,.08);
}
.product-swatches-head { margin-bottom: .85rem; }
.product-swatches-kicker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .35rem;
}
.product-swatches-title {
    font-family: var(--font-head);
    color: var(--secondary);
    font-size: 1rem;
}
.product-swatches-copy {
    color: var(--muted);
    font-size: .82rem;
}
.swatch-selection-summary {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.swatch-summary-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .75rem;
    border-radius: 999px;
    background: rgba(15,23,42,.04);
    font-size: .78rem;
    color: var(--muted);
}
.swatch-summary-chip strong { color: var(--secondary); }
.swatch-group-label {
    font-family: var(--font-head);
    font-size: .92rem;
    color: var(--secondary);
    letter-spacing: .02em;
}
.swatch-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}
.swatch-option {
    appearance: none;
    border: 1px solid rgba(148,163,184,.24);
    background: #fff;
    color: var(--secondary);
    border-radius: 999px;
    padding: .58rem .88rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: .8rem;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.swatch-option:hover {
    transform: translateY(-1px);
    border-color: var(--primary);
    box-shadow: 0 10px 22px rgba(239,68,68,.12);
}
.swatch-option.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(239,68,68,.08), rgba(245,158,11,.08));
    box-shadow: 0 12px 24px rgba(239,68,68,.12);
}
.swatch-option--color {
    padding-inline: .72rem .95rem;
}
.swatch-color-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.12);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
    flex-shrink: 0;
}
.swatch-media {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,.2);
    flex-shrink: 0;
    background: #fff;
}
.swatch-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .zoom-lens,
    .zoom-result {
        display: none !important;
    }
}

/* Thumbnail gallery */
.thumb-gallery { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.thumb-item {
    width: 72px; height: 72px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}
.thumb-item:hover, .thumb-item.active { border-color: var(--primary); }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── Price Variation Table ──────────────────────────────────────────────── */
.price-table { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.price-table thead th { background: var(--secondary); color: #fff; font-family: var(--font-head); }
.price-row.active { background: rgba(227,30,36,.08); font-weight: 600; }
.price-row.active td { color: var(--primary); }

/* ── Page banner ────────────────────────────────────────────────────────── */
.page-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #0d0d1a 100%);
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}
.page-banner::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.page-banner h1 { color: #fff; font-family: var(--font-head); font-size: clamp(1.8rem,4vw,2.8rem); }
.breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-item.active, .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ── Utility ─────────────────────────────────────────────────────────────── */
.border-radius-lg { border-radius: var(--radius); }
.shadow-card { box-shadow: var(--shadow); }

/* ── Manufacturing Process Section ─────────────────────────────────────── */
.process-section {
    background: linear-gradient(160deg, #0d0d1a 0%, #1a1a2e 50%, #0d0d1a 100%);
    position: relative;
    overflow: hidden;
}
.process-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent, transparent 40px,
        rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 80px
    );
    pointer-events: none;
}
.process-step-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-top: 3px solid var(--ps-color, var(--primary));
    border-radius: 16px;
    padding: 28px 18px 22px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all .35s ease;
}
.process-step-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
    border-color: var(--ps-color, var(--primary));
}
.ps-step-num {
    position: absolute;
    top: 10px; right: 14px;
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,.06);
    line-height: 1;
    user-select: none;
}
.ps-icon-circle {
    width: 78px; height: 78px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--ps-color, #e31e24) 18%, transparent);
    border: 2px solid color-mix(in srgb, var(--ps-color, #e31e24) 35%, transparent);
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.85rem;
    color: var(--ps-color, var(--primary));
    transition: all .35s ease;
}
.process-step-card:hover .ps-icon-circle {
    background: var(--ps-color, var(--primary));
    color: #fff;
    border-color: transparent;
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 8px 28px color-mix(in srgb, var(--ps-color, #e31e24) 55%, transparent);
}
.ps-title {
    font-family: var(--font-head);
    font-size: .98rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.ps-desc {
    font-size: .79rem;
    color: rgba(255,255,255,.52);
    line-height: 1.7;
    margin-bottom: 12px;
}
.ps-tags {
    display: flex; flex-wrap: wrap; gap: 4px; justify-content: center;
}
.ps-tags span {
    font-size: .67rem;
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 30px;
    padding: 2px 8px;
    white-space: nowrap;
}
.ps-connector {
    position: absolute;
    right: -18px; top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,.35);
    font-size: .78rem;
}
.process-factory-bar {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 28px 20px;
}
.factory-stat-item {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 10px;
}
.factory-stat-item > i {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 4px;
}
.fsi-val {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.fsi-val span {
    font-size: .72rem;
    color: var(--accent);
    margin-left: 2px;
}
.fsi-label {
    font-size: .7rem;
    color: rgba(255,255,255,.48);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Certifications Strip ───────────────────────────────────────────────── */
.cert-strip {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}
.cert-strip-label {
    font-size: .74rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}
.cert-badge {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    transition: var(--transition);
    display: inline-flex; align-items: center;
}
.cert-badge:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

/* ── Shipping & Logistics Section ───────────────────────────────────────── */
.shipping-section { background: #f8f9fb; }
.ship-sub-heading {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}
.ship-feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    height: 100%;
    transition: all .3s ease;
    border-bottom: 3px solid transparent;
}
.ship-feature-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--primary);
    box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.ship-feature-icon {
    width: 62px; height: 62px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.ship-feature-card h6 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.ship-feature-card p { font-size: .83rem; color: var(--muted); margin: 0; line-height: 1.7; }
.ship-zones { display: flex; flex-direction: column; gap: 10px; }
.ship-zone-row {
    display: grid;
    grid-template-columns: 34px 1fr auto auto;
    gap: 10px 14px;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 13px 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: var(--transition);
}
.ship-zone-row:hover { transform: translateX(4px); box-shadow: 0 4px 18px rgba(0,0,0,.1); }
.sz-flag { font-size: 1.3rem; line-height: 1; }
.sz-region { font-weight: 600; font-size: .88rem; color: var(--dark); }
.sz-days {
    color: #fff; font-size: .72rem; font-weight: 700;
    padding: 4px 11px; border-radius: 20px; white-space: nowrap;
}
.sz-carriers { font-size: .72rem; color: var(--muted); white-space: nowrap; }
.carrier-pill {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 5px 14px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .5px;
    transition: var(--transition);
    display: inline-block;
}
.carrier-pill:hover { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.order-journey-card {
    background: linear-gradient(160deg, var(--secondary) 0%, #0d0d1a 100%);
    border-radius: 20px;
    padding: 32px 28px;
    color: #fff;
    box-shadow: 0 16px 60px rgba(0,0,0,.22);
}
.order-journey-card h5 { color: #fff; }
.journey-timeline { display: flex; flex-direction: column; }
.journey-step {
    display: flex;
    gap: 16px;
    padding-bottom: 22px;
    position: relative;
}
.journey-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px; top: 32px; bottom: 0;
    width: 2px;
    background: rgba(255,255,255,.12);
}
.journey-dot {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem;
    color: rgba(255,255,255,.5);
    position: relative; z-index: 1;
    transition: var(--transition);
}
.journey-step.active .journey-dot,
.journey-step:hover .journey-dot {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(227,30,36,.25);
}
.journey-content { flex: 1; }
.journey-content strong { display: block; font-size: .88rem; color: #fff; margin-bottom: 2px; }
.journey-content span { font-size: .76rem; color: rgba(255,255,255,.5); line-height: 1.5; }
@media (max-width: 575px) {
    .ship-zone-row { grid-template-columns: 28px 1fr auto; }
    .sz-carriers { display: none; }
    .order-journey-card { padding: 22px 18px; }
}
@media (max-width: 1199px) {
    .ps-connector { display: none !important; }
}

/* ── How-to-Order Section ────────────────────────────────────────────────── */
.how-order-section { background: #f8f9fb; }
.how-steps-wrap { position: relative; }
.how-connector {
    display: none;
}
@media (min-width: 992px) {
    .how-connector {
        display: block;
        position: absolute;
        top: 54px;
        left: calc(12.5% + 36px);
        right: calc(12.5% + 36px);
        height: 2px;
        background: linear-gradient(90deg, var(--primary), #f5a623, #16a085, #2980b9);
        z-index: 0;
        opacity: .35;
    }
}
.how-step-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 24px 28px;
    box-shadow: 0 6px 28px rgba(0,0,0,.07);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all .35s ease;
    overflow: hidden;
    text-align: center;
}
.how-step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ff7a59);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.how-order-section .col-lg-3:nth-child(2) .how-step-card::before { background: linear-gradient(90deg, #f5a623, #ff9500); }
.how-order-section .col-lg-3:nth-child(3) .how-step-card::before { background: linear-gradient(90deg, #16a085, #1abc9c); }
.how-order-section .col-lg-3:nth-child(4) .how-step-card::before { background: linear-gradient(90deg, #2980b9, #3498db); }
.how-step-card:hover::before { transform: scaleX(1); }
.how-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(0,0,0,.13);
    border-color: transparent;
}
.how-step-num {
    position: absolute;
    top: 14px; right: 18px;
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(0,0,0,.04);
    line-height: 1;
    user-select: none;
}
.how-step-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(227,30,36,.1), rgba(227,30,36,.05));
    border: 2px solid rgba(227,30,36,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 18px;
    transition: all .35s ease;
    position: relative; z-index: 1;
}
.how-step-card:hover .how-step-icon {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(227,30,36,.35);
    transform: scale(1.1);
}
.how-order-section .col-lg-3:nth-child(2) .how-step-icon { color: #f5a623; background: rgba(245,166,35,.08); border-color: rgba(245,166,35,.2); }
.how-order-section .col-lg-3:nth-child(2) .how-step-card:hover .how-step-icon { background: #f5a623; color: #fff; box-shadow: 0 10px 30px rgba(245,166,35,.35); }
.how-order-section .col-lg-3:nth-child(3) .how-step-icon { color: #16a085; background: rgba(22,160,133,.08); border-color: rgba(22,160,133,.2); }
.how-order-section .col-lg-3:nth-child(3) .how-step-card:hover .how-step-icon { background: #16a085; color: #fff; box-shadow: 0 10px 30px rgba(22,160,133,.35); }
.how-order-section .col-lg-3:nth-child(4) .how-step-icon { color: #2980b9; background: rgba(41,128,185,.08); border-color: rgba(41,128,185,.2); }
.how-order-section .col-lg-3:nth-child(4) .how-step-card:hover .how-step-icon { background: #2980b9; color: #fff; box-shadow: 0 10px 30px rgba(41,128,185,.35); }
.how-step-badge {
    display: inline-block;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: .68rem;
    font-weight: 700;
    color: var(--muted);
    padding: 3px 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.how-step-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.how-step-text {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
}
.how-step-link {
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex; align-items: center; gap: 4px;
    transition: gap .25s ease;
}
.how-step-link:hover { gap: 8px; color: var(--primary-d); }
@media (max-width: 575px) {
    .how-step-card { padding: 26px 18px 22px; }
    .how-step-icon { width: 60px; height: 60px; font-size: 1.4rem; }
    .how-step-title { font-size: .95rem; }
}

/* ── Free Sample Promo Section ───────────────────────────────────────────── */
.sample-promo-section { background: linear-gradient(160deg, #f8f9fb 0%, #fff 100%); }
.sample-promo-card {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.06);
}
/* Left visual panel */
.sample-promo-visual {
    background: linear-gradient(140deg, #1a0a0b 0%, #2d0a0e 100%);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 460px;
    display: flex; align-items: center; justify-content: center;
}
.spv-shape-1 {
    position: absolute;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227,30,36,.35) 0%, transparent 70%);
    top: -80px; right: -80px;
}
.spv-shape-2 {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,.2) 0%, transparent 70%);
    bottom: -40px; left: -40px;
}
.spv-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    padding: 30px;
    position: relative; z-index: 1;
}
.spv-icon-item {
    width: 72px; height: 72px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--sp-c, #e31e24) 15%, rgba(0,0,0,.3));
    border: 1px solid color-mix(in srgb, var(--sp-c, #e31e24) 30%, transparent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--sp-c, #e31e24);
    transition: all .35s ease;
}
.sample-promo-card:hover .spv-icon-item {
    transform: scale(1.05);
    background: color-mix(in srgb, var(--sp-c, #e31e24) 25%, rgba(0,0,0,.3));
}
.spv-center-badge {
    position: absolute;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary), #b71c1c);
    border-radius: 50%;
    width: 100px; height: 100px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 12px 40px rgba(227,30,36,.5), 0 0 0 8px rgba(227,30,36,.12);
    animation: samplePulse 2.5s ease-in-out infinite;
}
.spv-center-badge span {
    font-size: .55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    line-height: 1;
}
@keyframes samplePulse {
    0%,100% { box-shadow: 0 12px 40px rgba(227,30,36,.5), 0 0 0 8px rgba(227,30,36,.12); }
    50%      { box-shadow: 0 16px 50px rgba(227,30,36,.65), 0 0 0 16px rgba(227,30,36,.06); }
}
/* Right content */
.sample-promo-content {
    padding: 52px 44px;
}
.spc-tag {
    display: inline-flex; align-items: center;
    background: rgba(245,166,35,.12);
    border: 1px solid rgba(245,166,35,.25);
    color: var(--accent);
    font-size: .76rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.spc-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}
.spc-subtitle {
    color: rgba(255,255,255,.6);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 26px;
}
.spc-bullets {
    list-style: none;
    padding: 0; margin: 0 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}
.spc-bullets li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .84rem;
    color: rgba(255,255,255,.75);
    line-height: 1.5;
}
.spc-bullets li i {
    color: #22c55e;
    font-size: .9rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.spc-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.spc-note {
    font-size: .78rem;
    color: rgba(255,255,255,.4);
    margin: 0;
}
@media (max-width: 991px) {
    .sample-promo-content { padding: 36px 28px; }
    .spc-bullets { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .sample-promo-content { padding: 28px 20px; }
    .spc-title { font-size: 1.5rem; }
    .spc-actions { flex-direction: column; }
    .spc-actions .btn { width: 100%; justify-content: center; }
}

/* ── Print / PDF Styles ─────────────────────────────────────────────────── */
@media print {
    .topbar, .main-header, .hero-slider-section, .ticker-strip,
    .newsletter-section, .main-footer, .whatsapp-float, .back-to-top,
    .compare-bar, .modal, .btn, nav, header, footer { display: none !important; }
    body { font-size: 12px; color: #000; }
    .print-section { display: block !important; }
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .mega-dropdown .dropdown-menu { width: 100%; left: 0; transform: none; }
    .section-padding { padding: 48px 0; }
    .zoom-result { display: none !important; }
}
@media (max-width: 767px) {
    .cta-box { padding: 28px 20px; }
    .hero-features { display: none !important; }
    .stats-section .py-4 { padding: 24px 0 !important; }
}

/* ── Quote Page ─────────────────────────────────────────────────────────── */
.quote-table img { border-radius: 6px; }
.qty-input { width: 80px; text-align: center; }

/* ── Auth Forms ─────────────────────────────────────────────────────────── */
.auth-wrapper {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    background:
        radial-gradient(circle at top left, rgba(239,68,68,.08), transparent 26%),
        radial-gradient(circle at 92% 12%, rgba(245,158,11,.08), transparent 22%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}
.auth-card {
    background: rgba(255,255,255,.92);
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(15,23,42,.12);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,.16);
    backdrop-filter: blur(16px);
}
.auth-brand {
    background: linear-gradient(145deg, #0f172a 0%, #111827 40%, #1e293b 100%);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* ── Public Theme Refresh ─────────────────────────────────────────────── */
:root {
    --primary: #ef4444;
    --primary-d: #b91c1c;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --dark: #0f172a;
    --light: #f8fafc;
    --text: #1f2937;
    --muted: #64748b;
    --border: rgba(148,163,184,.18);
    --radius: 18px;
    --shadow: 0 12px 32px rgba(15,23,42,.08);
    --shadow-lg: 0 24px 60px rgba(15,23,42,.14);
    --font-head: 'Teko', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

body.public-shell {
    background:
        radial-gradient(circle at top left, rgba(239,68,68,.08), transparent 24%),
        radial-gradient(circle at 94% 8%, rgba(245,158,11,.08), transparent 20%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    color: var(--text);
    position: relative;
}

body.public-shell::before,
body.public-shell::after {
    content: '';
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 999px;
    filter: blur(64px);
    opacity: .6;
}

body.public-shell::before {
    width: 280px;
    height: 280px;
    left: -120px;
    top: 140px;
    background: rgba(239,68,68,.12);
}

body.public-shell::after {
    width: 340px;
    height: 340px;
    right: -150px;
    top: 60px;
    background: rgba(245,158,11,.12);
}

body.public-shell .topbar,
body.public-shell .section-padding,
body.public-shell .page-banner,
body.public-shell .newsletter-section,
body.public-shell .main-footer {
    position: relative;
    z-index: 1;
}

body.public-shell .topbar {
    z-index: 1085;
}

body.public-shell .main-header {
    position: sticky;
    top: 0;
    z-index: 1080;
}

body.public-shell .hero-slider-section {
    position: relative;
    z-index: 0;
}

a { text-decoration-thickness: 1.5px; text-underline-offset: .15em; }

.topbar {
    background: rgba(8,12,24,.97);
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.86);
}
.topbar-link,
.auth-links a,
.topbar-notice {
    color: rgba(255,255,255,.82);
}
.topbar-link:hover,
.auth-links a:hover { color: #fff; }
.social-icon {
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.08);
}
.topbar .dropdown-toggle,
.topbar .btn-outline-light {
    border-radius: 999px;
    border-color: rgba(255,255,255,.16) !important;
}

.main-header {
    background: rgba(255,255,255,.96);
    backdrop-filter: none;
    box-shadow: 0 12px 30px rgba(15,23,42,.06);
    border-bottom: 1px solid rgba(148,163,184,.18);
}
.main-header::after {
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #fb7185 32%, #f59e0b 66%, #0ea5e9 100%);
}
.navbar { gap: 10px; }
.site-brand { margin-right: .5rem !important; }
.logo-text { gap: 2px; }
.logo-main {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--secondary);
    letter-spacing: .06em;
}
.logo-sub {
    font-size: .72rem;
    color: var(--muted);
    letter-spacing: .22em;
    text-transform: uppercase;
}
.site-logo { max-height: 64px; width: auto; filter: drop-shadow(0 10px 20px rgba(15,23,42,.08)); }
.navbar-toggler {
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,.2);
    background: rgba(15,23,42,.04);
}
.navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2823, 42, 58, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-nav .nav-link {
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--secondary) !important;
    padding: .55rem .7rem !important;
    border-radius: 999px;
    background: transparent;
    border: 1px solid transparent;
    white-space: nowrap;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: rgba(239,68,68,.08);
    border-color: rgba(239,68,68,.12);
    transform: translateY(-1px);
}
.mega-dropdown .dropdown-menu {
    width: min(980px, 96vw);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    backdrop-filter: none;
    box-shadow: 0 28px 60px rgba(15,23,42,.14);
    border: 1px solid rgba(148,163,184,.16);
    border-top: 3px solid var(--primary);
    padding: 1rem;
}
.mega-menu-item {
    border-radius: 16px;
    border-bottom: 0;
    padding: .7rem .8rem;
    background: rgba(15,23,42,.03);
}
.mega-menu-item:hover {
    background: rgba(239,68,68,.08);
    transform: translateX(2px);
}
.mega-menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
}
.mega-menu-count {
    background: rgba(15,23,42,.06);
    color: var(--text);
}
.mega-sub-list li a {
    color: var(--muted);
}
.mega-sub-list li a:hover { color: var(--primary); }
.search-form .search-input {
    width: 210px;
    border-radius: 999px 0 0 999px !important;
    border-color: rgba(148,163,184,.22);
    background: rgba(255,255,255,.92);
}
.search-form .btn {
    border-radius: 0 999px 999px 0 !important;
}
.nav-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,.18);
    background: rgba(15,23,42,.04);
    box-shadow: 0 10px 22px rgba(15,23,42,.06);
}
.nav-icon-btn i { color: inherit; }
.nav-icon-btn[href$="/wishlist.php"] {
    background: linear-gradient(135deg, #fb7185, #e11d48);
    color: #fff;
}
.nav-icon-btn[href$="/compare.php"] {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
    color: #fff;
}
.nav-icon-btn[href$="/account.php"] {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #fff;
}
.nav-icon-btn[href$="/quote.php"] {
    background: linear-gradient(135deg, #ef4444, #fb7185);
    color: #fff;
}
.nav-icon-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.price-list-btn,
.quote-cta-btn {
    border-radius: 999px;
    padding-inline: 1rem;
}
.price-list-btn {
    background: rgba(255,255,255,.96) !important;
    border-color: rgba(148,163,184,.24) !important;
}
.quote-cta-btn {
    box-shadow: 0 12px 26px rgba(239,68,68,.22) !important;
}
.nav-badge {
    top: -8px;
    right: -8px;
    border-color: #fff;
    box-shadow: 0 4px 12px rgba(15,23,42,.14);
}

.section-header { max-width: 760px; margin-inline: auto; }
.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(239,68,68,.08);
    color: var(--primary);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 4rem);
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--secondary);
}
.section-desc {
    max-width: 640px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.page-banner {
    background:
        linear-gradient(135deg, rgba(15,23,42,.96), rgba(15,23,42,.88)),
        radial-gradient(circle at top right, rgba(239,68,68,.18), transparent 30%);
    padding: 64px 0 54px;
    position: relative;
    overflow: hidden;
}
.page-banner::after {
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #f59e0b, #0ea5e9);
}
.page-banner h1 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.product-card {
    border-radius: 24px !important;
    overflow: hidden;
    background: rgba(255,255,255,.96);
    box-shadow: 0 16px 38px rgba(15,23,42,.08) !important;
    border: 1px solid rgba(148,163,184,.14) !important;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15,23,42,.14) !important;
    border-color: rgba(239,68,68,.18) !important;
}
.product-img-wrap { background: linear-gradient(180deg, rgba(15,23,42,.03), rgba(15,23,42,.08)); }
.product-card .card-body { padding: 1rem !important; }
.product-card .card-title {
    font-size: .98rem;
    font-weight: 700;
    color: var(--secondary);
}
.product-card-link { z-index: 2; }
.product-badges .badge { border-radius: 999px; }
.product-actions .btn {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.6);
    background: rgba(255,255,255,.92);
}
.product-overlay {
    background: linear-gradient(180deg, rgba(15,23,42,.12), rgba(15,23,42,.7));
}
.product-overlay .btn { border-radius: 999px; }
.product-price {
    font-family: var(--font-head);
    font-size: 1.25rem;
    letter-spacing: .02em;
}
.add-to-quote-btn {
    border-radius: 999px;
    padding-inline: .85rem;
    background: linear-gradient(135deg, var(--primary), #fb7185);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(239,68,68,.18);
}

.cat-card {
    border-radius: 24px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 16px 38px rgba(15,23,42,.08);
    border: 1px solid rgba(148,163,184,.14);
}
.cat-card-body { padding: 22px 20px 24px; }
.cat-card-title { color: var(--secondary); }

.stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
}
.stat-box {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 24px 18px;
}
.stat-number { color: #fff; }
.stat-label { color: rgba(255,255,255,.68); }

.bg-dark-custom,
.why-section,
.process-section,
.sample-promo-card,
.shipping-section,
.how-order-section,
.faq-section {
    background: linear-gradient(160deg, #0f172a 0%, #020617 100%);
}
.why-card {
    border-radius: 22px;
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.08);
}
.cta-box {
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%);
    box-shadow: 0 28px 70px rgba(239,68,68,.28);
}
.newsletter-section {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    padding: 48px 0;
}
.newsletter-box {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    padding: 28px 32px;
    box-shadow: 0 24px 50px rgba(15,23,42,.22);
}

.main-footer {
    background:
        radial-gradient(circle at top left, rgba(239,68,68,.08), transparent 28%),
        linear-gradient(180deg, #020617 0%, #0f172a 100%);
    color: rgba(255,255,255,.74);
}
.footer-logo-text,
.footer-heading {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.footer-logo-text { font-size: 2.4rem; color: #fff; }
.footer-desc,
.footer-contact,
.footer-links a,
.footer-bottom,
.footer-bottom-link { color: rgba(255,255,255,.66); }
.footer-heading {
    color: #fff;
    border-bottom-color: rgba(239,68,68,.75);
    font-size: 1.2rem;
}
.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom-link:hover { color: #fde68a; }
.footer-bottom {
    border-top-color: rgba(255,255,255,.08);
}
.social-btn {
    width: 40px;
    height: 40px;
    box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 18px 32px rgba(34,197,94,.28);
}
.back-to-top {
    background: linear-gradient(135deg, var(--primary), #fb7185);
    box-shadow: 0 14px 28px rgba(239,68,68,.28);
}
.compare-bar {
    background: #fff;
    border-top: 1px solid rgba(239,68,68,.2);
}

/* ── Hero Content pointer-events safety (AOS must not block hero interactions) ── */
.hero-content,
.hero-content * { pointer-events: auto !important; }

body.public-shell.public-shell-lean {
    background: #f8fafc;
}
body.public-shell.public-shell-lean::before,
body.public-shell.public-shell-lean::after {
    display: none;
}
body.public-shell.public-shell-lean .hero-content {
    color: #fff;
    padding: clamp(1.1rem, 2.5vw, 1.85rem);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(2,6,23,.72), rgba(15,23,42,.3));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 48px rgba(2,6,23,.22);
    backdrop-filter: blur(4px);
}
body.public-shell.public-shell-lean .hero-pre-title,
body.public-shell.public-shell-lean .hero-title,
body.public-shell.public-shell-lean .hero-subtitle,
body.public-shell.public-shell-lean .hero-feature {
    text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
body.public-shell.public-shell-lean .hero-btn-outline {
    box-shadow: 0 10px 26px rgba(2,6,23,.22);
}
body.public-shell.public-shell-lean .how-order-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}
body.public-shell.public-shell-lean .how-order-section .section-title {
    color: var(--secondary);
}
body.public-shell.public-shell-lean .how-order-section .section-desc {
    color: var(--muted);
}
.simple-public-header {
    background: #fff;
    box-shadow: 0 10px 24px rgba(15,23,42,.08);
    border-bottom: 1px solid rgba(148,163,184,.18);
}
.simple-public-header::after {
    display: none;
}
.simple-public-header .navbar {
    gap: .85rem;
    min-height: 82px;
}
.simple-public-header .site-brand {
    margin-right: 0 !important;
}
.simple-public-header .navbar-nav {
    gap: .15rem;
}
.simple-public-header .header-tools {
    flex: 0 0 auto;
}
.simple-public-header .search-form .search-input {
    width: 190px;
}
.simple-public-header .price-list-btn.active,
.simple-public-header .quote-cta-btn.active,
.simple-public-header .btn-outline-dark.active {
    border-color: rgba(239,68,68,.18) !important;
    color: var(--primary) !important;
    background: rgba(239,68,68,.08) !important;
}

@media (max-width: 991.98px) {
    .simple-public-header .navbar-collapse {
        margin-top: .75rem;
        padding: .85rem;
        border: 1px solid rgba(148,163,184,.18);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 16px 36px rgba(15,23,42,.08);
    }
    .simple-public-header .navbar-nav {
        align-items: stretch !important;
    }
    .simple-public-header .header-tools {
        padding-top: .85rem;
        border-top: 1px solid rgba(148,163,184,.16);
    }
    .simple-public-header .search-form {
        display: flex !important;
    }
    .simple-public-header .search-form .search-input {
        width: 100%;
    }
    /* ── Mobile navbar: constrain height so it cannot "stick" the page ── */
    #mainNav {
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: rgba(255,255,255,.98);
        border-top: 1px solid rgba(148,163,184,.15);
        border-radius: 0 0 18px 18px;
        box-shadow: 0 16px 40px rgba(15,23,42,.08);
        padding-bottom: .75rem;
    }
    /* Nav-link padding */
    .navbar-nav .nav-link { padding: .6rem .85rem !important; }
    /* Compact mega-menu dropdown inside the collapsed nav */
    .mega-dropdown .dropdown-menu {
        max-height: 55vh;
        overflow-y: auto;
    }
    /* Hero slider adjustments for tablet / large mobile */
    .hero-title { font-size: clamp(1.8rem, 6vw, 3rem); }
    .hero-subtitle { font-size: .95rem; }
    .hero-content { padding: 0 1rem; }
    .swiper-button-next,
    .swiper-button-prev { display: none; }
}

@media (max-width: 767px) {
    .section-title { font-size: clamp(1.9rem, 10vw, 3rem); }
    .newsletter-box { padding: 22px 18px; }
    .cta-box { padding: 28px 20px; }
    .topbar { font-size: .72rem; }
    /* Hero slider – show buttons inline on small screens */
    .hero-btn-primary,
    .hero-btn-outline {
        font-size: .82rem;
        padding: .5rem 1.1rem;
    }
    .hero-pre-title { font-size: .72rem; letter-spacing: 1px; }
}

@media (max-width: 575px) {
    .nav-icon-btn { width: 40px; height: 40px; }
    .page-banner { padding: 54px 0 44px; }
    /* Hero on small phones */
    .hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem); line-height: 1.15; }
    .hero-subtitle { font-size: .85rem; margin-bottom: .6rem; }
    .hero-content { padding: 0 .5rem; }
    .hero-content .d-flex.gap-3 { gap: .6rem !important; }
    /* Ensure slider fills the screen edge-to-edge */
    .hero-slider-section { margin-left: 0; margin-right: 0; }
    .hero-slider,
    .heroSwiper,
    .hero-default { height: 380px; }
}
