/* Prevent accidental horizontal scroll on mobile */
html, body { max-width: 100%; overflow-x: hidden; }

/* ============================================================
   PREMIUM HEADER-TOP BAR (top bar only — nav untouched)
============================================================ */
.header-top { padding: 14px 0 !important; position: relative; z-index: 1000; }
/* search results dropdown must sit above the nav bar */
.header-top #serachresult, .header-top .search-list { z-index: 1001 !important; }
/* round all corners of the search results dropdown */
.header-top .search-list {
    border-radius: 16px !important;
    overflow: hidden;
    margin-top: 8px;
    box-shadow: 0 12px 36px rgba(15,52,96,.18) !important;
}
.header-top::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(233,69,96,.55), rgba(245,166,35,.55), transparent);
}
.htop-logo { display: inline-block; }
.htop-logo img { max-width: 190px; height: auto; }

/* Search — premium gradient-bordered pill */
.header-top .htop-search {
    position: relative; padding: 1.5px; border-radius: 24px;
    background: linear-gradient(135deg, rgba(245,166,35,.55), rgba(233,69,96,.55));
    box-shadow: 0 10px 28px rgba(10,31,60,.30);
    transition: box-shadow .25s ease;
}
.header-top .htop-search:hover { box-shadow: 0 12px 32px rgba(10,31,60,.36); }
.header-top .htop-search:focus-within {
    box-shadow: 0 0 0 4px rgba(245,166,35,.22), 0 14px 36px rgba(10,31,60,.40);
}
.header-top .htop-search .htop-search-ic {
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    color: #97a1bd; font-size: 15px; z-index: 1000000; pointer-events: none; transition: color .2s;
}
.header-top .htop-search .searchinput {
    height: 40px; border: none; border-radius: 22px; padding: 0 46px 0 40px; width: 100%; display: block;
    background: #fff; color: #0f3460; font-size: 14px; font-weight: 500; box-shadow: none;
}
.header-top .htop-search .searchinput::placeholder { color: #9aa3bf; font-weight: 400; }
.header-top .htop-search .searchinput:focus { outline: none; box-shadow: none; }
.header-top .htop-search:focus-within .htop-search-ic { color: #e94560; }
.header-top .htop-search-btn {
    position: absolute; right: 3px; top: 50%; transform: translateY(-50%);
    width: 34px; height: 34px; border: none; border-radius: 50%; z-index: 1000001; padding: 0;
    background: linear-gradient(135deg, #e94560, #c0334f); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 13px;
    cursor: pointer; box-shadow: 0 6px 16px rgba(233,69,96,.42);
    transition: transform .2s ease, box-shadow .2s ease;
}
.header-top .htop-search-btn:hover { transform: translateY(-50%) scale(1.07); box-shadow: 0 8px 20px rgba(233,69,96,.55); }
.header-top .htop-search-btn:active { transform: translateY(-50%) scale(.95); }

/* Contact CTAs */
.htop-contact { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.header-top .htop-cta { display: inline-flex; align-items: center; gap: 11px; text-decoration: none !important; transition: transform .2s; }
.header-top .htop-cta:hover { transform: translateY(-1px); }
.htop-cta-ic {
    width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: #f5a623; font-size: 16px; transition: all .25s;
}
.header-top .htop-cta:hover .htop-cta-ic { background: linear-gradient(135deg,#e94560,#c0334f); border-color: transparent; color: #fff; }
.htop-cta-meta { display: flex; flex-direction: column; line-height: 1.25; }
.htop-cta-meta small { font-size: 10.5px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: rgba(255,255,255,.5); }
.htop-cta-meta b { font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; }

@media (max-width: 991px) {
    .header-top .htop-search .searchinput { height: 40px; }
    .htop-contact { justify-content: center; gap: 16px; margin-top: 10px; flex-wrap: wrap; }
    .htop-cta-meta b { font-size: 13px; }
}
@media (max-width: 575px) {
    .htop-cta-meta small { display: none; }
    .htop-cta-ic { width: 34px; height: 34px; font-size: 14px; }
}

/* Keep the header & its dropdown menus above the hero/sections */
header { position: relative; z-index: 900; }
.header-nav { position: relative; z-index: 900; }
.main-navbar li ul { z-index: 950 !important; }

/* ============================================================
   SPEED-DIAL FLOATING ACTION BUTTON
============================================================ */
.fab-dial {
    position: fixed;
    right: 24px;
    bottom: 26px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Action items stack */
.fab-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 16px;
}

.fab-action {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    /* hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(.6);
    transition: opacity .3s ease, transform .35s cubic-bezier(.34,1.56,.64,1), visibility .3s;
}

.fab-dial.open .fab-action {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* staggered reveal */
.fab-dial.open .fab-wa   { transition-delay: .05s; }
.fab-dial.open .fab-call { transition-delay: .11s; }
.fab-dial.open .fab-mail { transition-delay: .17s; }

.fab-action-label {
    font-size: 13px;
    font-weight: 700;
    color: #0f3460;
    background: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(10,10,26,.16);
    letter-spacing: .2px;
}

.fab-action-ic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(10,10,26,.25);
    transition: transform .25s ease;
}

.fab-action-ic i { color: #fff; line-height: 1; }

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

.fab-wa   .fab-action-ic { background: linear-gradient(135deg, #25d366, #1ebd5a); }
.fab-call .fab-action-ic { background: linear-gradient(135deg, #0f3460, #1a4a80); }
.fab-mail .fab-action-ic { background: linear-gradient(135deg, #e94560, #c0334f); }

/* Main button */
.fab-main {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    position: relative;
    background: linear-gradient(135deg, #e94560, #c0334f);
    box-shadow: 0 10px 28px rgba(233,69,96,.45);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, background .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.fab-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(233,69,96,.5);
    animation: fabPulse 2.2s ease-out infinite;
}

.fab-dial.open .fab-main {
    background: linear-gradient(135deg, #0f3460, #1a4a80);
    box-shadow: 0 10px 28px rgba(15,52,96,.45);
    transform: rotate(90deg);
}

.fab-dial.open .fab-main::before { animation: none; opacity: 0; }

.fab-main i {
    position: absolute;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    transition: opacity .25s ease, transform .35s ease;
}

.fab-icon-open  { opacity: 1; transform: rotate(0); }
.fab-icon-close { opacity: 0; transform: rotate(-90deg); font-size: 20px !important; }

.fab-dial.open .fab-icon-open  { opacity: 0; transform: rotate(90deg); }
.fab-dial.open .fab-icon-close { opacity: 1; transform: rotate(0); }

@keyframes fabPulse {
    0%   { transform: scale(1);   opacity: .7; }
    70%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
    .fab-dial        { right: 16px; bottom: 16px; }
    .fab-main        { width: 56px; height: 56px; }
    .fab-main i      { font-size: 23px; }
    .fab-action-ic   { width: 46px; height: 46px; font-size: 18px; }
    .fab-action-label{ font-size: 12.5px; padding: 7px 12px; }
}

/* ============================================================
   BACK-TO-TOP BUTTON (global, bottom-left — opposite the FAB)
============================================================ */
.to-top {
    position: fixed; left: 24px; bottom: 26px; z-index: 99998;
    width: 50px; height: 50px; border: none; border-radius: 50%; cursor: pointer;
    background: linear-gradient(135deg, #0f3460, #112c54); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
    box-shadow: 0 12px 28px -8px rgba(10,31,60,.7);
    opacity: 0; visibility: hidden; transform: translateY(16px) scale(.9);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease, box-shadow .25s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.to-top:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 0 0 4px rgba(245,166,35,.25), 0 16px 32px -8px rgba(10,31,60,.8); }
.to-top:active { transform: translateY(-1px) scale(.97); }
.to-top i { line-height: 1; }
.to-top svg { display: block; }
@media (max-width: 768px) {
    .to-top { left: 16px; bottom: 16px; width: 46px; height: 46px; font-size: 18px; }
}

/* ============================================================
   HERO — FULLSCREEN CINEMATIC
============================================================ */

/* Keyframes */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroPulse {
    0%, 100% { opacity: .18; transform: scaleX(1); }
    50%       { opacity: .32; transform: scaleX(1.04); }
}

@keyframes heroBgZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}

#hero-slider {
    position: relative;
    overflow: hidden;
    height: 92vh;
    min-height: 560px;
}

#hero-slider .carousel,
#homeMainSlider {
    height: 100%;
}

/* Don't let Bootstrap's carousel-inner collapse our layout */
#hero-slider .carousel-inner {
    height: 100% !important;
    overflow: visible !important;
}

#hero-slider .carousel-item {
    height: 100% !important;
}

/* Background image track */
.hero-bg-track {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-bg-slide.active {
    opacity: 1;
    animation: heroBgZoom 6s ease forwards;
}

/* Multi-layer dark overlay */
.hero-overlay-dark {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(5,5,18,.75) 0%, rgba(5,5,18,.58) 45%, rgba(5,5,18,.82) 100%),
        linear-gradient(135deg, rgba(10,10,26,.78) 0%, rgba(10,10,26,.35) 60%);
}

/* Crimson diagonal sweep at bottom */
.hero-sweep,
.hero-sweep-2 {
    display: none;
}

/* ISO badge top-left */
.hero-iso-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10;
    background: linear-gradient(135deg, #e94560, #f5a623);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: heroFadeUp .8s ease .2s both;
}

/* Centre content */
.hero-cin-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px 100px;
    overflow: visible;
}

.hero-cin-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin-bottom: 18px;
    animation: heroFadeUp .8s ease .4s both;
}

.hero-cin-title {
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 32px rgba(0,0,0,.5);
    animation: heroFadeUp .9s ease .55s both;
    overflow: visible;
    padding-bottom: 6px;
}

.hero-cin-accent {
    background: linear-gradient(135deg, #e94560, #f5a623);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-bottom: 4px;
    line-height: 1.25;
}

.hero-cin-sub {
    font-size: clamp(14px, 1.8vw, 18px);
    color: rgba(255,255,255,.75);
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.7;
    animation: heroFadeUp .9s ease .7s both;
}

.hero-cin-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    animation: heroFadeUp .9s ease .85s both;
}

/* Icon circle inside button */
.btn-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    font-size: 13px;
    flex-shrink: 0;
    transition: background .3s;
}

.btn-icon-gold {
    background: rgba(245,166,35,.25);
}

.btn-hero-primary,
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 200px;
    height: 52px;
    border-radius: 8px;
    transition: all .35s ease;
    cursor: pointer;
    text-decoration: none !important;
    white-space: nowrap;
    box-sizing: border-box;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #e94560, #c0334f);
    color: #fff !important;
    border: none;
    box-shadow: 0 6px 24px rgba(233,69,96,.45), inset 0 1px 0 rgba(255,255,255,.15);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(233,69,96,.6);
    color: #fff !important;
    text-decoration: none !important;
}

.btn-hero-ghost {
    background: linear-gradient(135deg, #f5a623, #e08c10);
    color: #fff !important;
    border: none;
    box-shadow: 0 6px 24px rgba(245,166,35,.4), inset 0 1px 0 rgba(255,255,255,.15);
}

.btn-hero-ghost:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(245,166,35,.55);
    color: #fff !important;
}

/* Floating stats bar at bottom */
.hero-stats-bar {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
    display: flex;
    align-items: center;
    background: rgba(10,10,26,.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 60px;
    padding: 14px 32px;
    gap: 0;
    white-space: nowrap;
    animation: heroFadeUp .9s ease 1s both;
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
}

.hstat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
}

.hstat-num {
    font-size: 24px;
    font-weight: 900;
    color: #f5a623;
    line-height: 1;
    letter-spacing: -0.5px;
}

.hstat-label {
    font-size: 11px;
    color: rgba(255,255,255,.7);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hstat-sep {
    width: 1px;
    height: 38px;
    background: rgba(255,255,255,.18);
    flex-shrink: 0;
}

/* Arrow controls */
.hero-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all .3s ease;
    text-decoration: none !important;
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-ctrl:hover {
    background: #e94560;
    border-color: #e94560;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

/* Dot indicators */
.hero-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
}

.hero-dots li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: all .4s ease;
    border: none;
    text-indent: -9999px;
}

.hero-dots li.active {
    background: #f5a623;
    width: 30px;
    border-radius: 4px;
}

/* ============================================================
   STATS COUNTER BAR
============================================================ */
.stats-bar {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #0f3460 100%);
    padding: 28px 0;
    border-bottom: 3px solid #e94560;
}

.stats-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 48px;
    text-align: center;
}

.stat-num {
    font-size: 38px;
    font-weight: 900;
    color: #f5a623;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.75);
    font-weight: 500;
    margin-top: 6px;
    letter-spacing: 0.3px;
}

.stat-divider {
    width: 1px;
    height: 52px;
    background: rgba(255,255,255,.15);
    flex-shrink: 0;
}

/* ============================================================
   SHARED SECTION STYLES
============================================================ */
.sec-category,
.sec-products {
    padding: 72px 0;
    background: #fff;
}

.sec-products-alt {
    background: #f5f7fc;
}

.sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.sec-head-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sec-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #e94560;
    position: relative;
    padding-left: 22px;
}

.sec-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 3px;
    background: linear-gradient(135deg, #e94560, #f5a623);
    border-radius: 2px;
}

.sec-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    color: #0f3460;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.sec-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #e94560;
    text-decoration: none !important;
    border-bottom: 2px solid rgba(233,69,96,.3);
    padding-bottom: 2px;
    transition: all .25s;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.sec-link:hover {
    color: #0f3460;
    border-bottom-color: #0f3460;
}

/* ============================================================
   CATEGORY CARDS — POSTER STYLE
============================================================ */
.ccat-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    position: relative;
    box-shadow: 0 6px 24px rgba(15,52,96,.12);
    transition: transform .38s cubic-bezier(.25,.46,.45,.94),
                box-shadow .38s cubic-bezier(.25,.46,.45,.94);
}

.ccat-card:hover {
}

.ccat-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #1a1a2e;
}

.ccat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    display: block;
}


/* Gradient overlay — bottom to top */
.ccat-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,10,26,.92) 0%,
        rgba(10,10,26,.5) 45%,
        rgba(10,10,26,.05) 100%
    );
    transition: background .4s ease;
}


/* Bottom content */
.ccat-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px 18px;
    z-index: 2;
}

.ccat-name {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.ccat-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ccat-count {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.12);
    padding: 3px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.ccat-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    transition: all .3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.ccat-card:hover .ccat-arrow {
    background: #f5a623;
    color: #fff;
    transform: translateX(3px);
}

/* ============================================================
   AUTHORITATIVE PRODUCT SECTION
============================================================ */
.auth-prod-section {
    margin-bottom: 0;
    border-bottom: 1px solid #e8eaf5;
}

/* Dark header strip */
.auth-prod-header {
    background: linear-gradient(135deg, #0a0a1a 0%, #0f3460 100%);
    padding: 32px 0 28px;
    position: relative;
    overflow: hidden;
}

.auth-prod-header::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(233,69,96,.08);
}

.auth-prod-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.auth-prod-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #f5a623;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-prod-tag::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #f5a623;
    border-radius: 2px;
}

.auth-prod-title {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 900;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.auth-prod-title span {
    color: #e94560;
}

.auth-prod-viewall {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.8) !important;
    text-decoration: none !important;
    border: 1.5px solid rgba(255,255,255,.25);
    padding: 10px 22px;
    border-radius: 50px;
    transition: all .28s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.auth-prod-viewall:hover {
    background: linear-gradient(135deg, #e94560, #f5a623);
    border-color: transparent;
    color: #fff !important;
}

/* Cards body area */
.auth-prod-body {
    background: #f4f6fc;
    padding: 40px 0 48px;
}

/* ============================================================
   AUTHORITATIVE PRODUCT CARD
============================================================ */
.acard {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(15,52,96,.08);
    border: 1px solid #e8ecf8;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all .38s cubic-bezier(.25,.46,.45,.94);
    position: relative;
}

.acard:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(15,52,96,.16);
    border-color: #e8ecf8;
}

/* Image */
.acard-img-wrap {
    position: relative;
    height: 240px;
    background: #fff;
    overflow: hidden;
    border-bottom: 2px solid #f0f2fb;
}

.acard-img-wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.acard-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}

.acard:hover .acard-img {
    transform: scale(1.07);
}

/* Category chip — top right */
.acard-chip {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #0f3460;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
}

/* Quick view — slides up on hover */
.acard-qv {
    position: absolute;
    bottom: -48px;
    left: 0;
    right: 0;
    height: 48px;
    background: rgba(15,52,96,.95);
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: bottom .3s cubic-bezier(.25,.46,.45,.94);
    z-index: 3;
}

.acard-qv i { color: #f5a623; font-size: 15px; }

.acard:hover .acard-qv {
    bottom: 0;
}

/* Body */
.acard-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    border-top: 3px solid transparent;
    transition: border-color .3s;
}

.acard:hover .acard-body {
    border-top-color: transparent;
}

.acard-mfg {
    font-size: 10.5px;
    font-weight: 600;
    color: #8a95b8;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.acard-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(34,197,94,.2);
}

.acard-name {
    font-size: 15.5px;
    font-weight: 800;
    color: #0f3460;
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 46px;
}

.acard-name a {
    color: inherit;
    text-decoration: none !important;
    transition: color .25s;
}

.acard:hover .acard-name a {
    color: #e94560;
}

/* Action buttons */
.acard-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 6px;
    align-items: center;
}

.acard-btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 46px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #0f3460, #1a4a80);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .28s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(15,52,96,.25);
}

.acard-btn-primary:hover {
    background: linear-gradient(135deg, #e94560, #c0334f);
    box-shadow: 0 8px 24px rgba(233,69,96,.35);
    transform: translateY(-2px);
}

.acard-btn-wa {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(37,211,102,.08);
    border: 2px solid #25d366;
    color: #25d366 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all .28s ease;
    flex-shrink: 0;
}

.acard-btn-wa:hover {
    background: #25d366;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(37,211,102,.35);
    transform: translateY(-2px);
}

.auth-prod-owl .owl-stage { display: flex; }
.auth-prod-owl .owl-item  { display: flex; }
.auth-prod-owl .item      { width: 100%; display: flex; }

/* ============================================================
   PRODUCT CARDS — PREMIUM
============================================================ */
.pcard {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #eef0f8;
    box-shadow: 0 4px 24px rgba(15,52,96,.08);
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #e94560, #f5a623);
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 1;
}

.pcard:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 64px rgba(233,69,96,.18);
    border-color: rgba(233,69,96,.2);
}

.pcard:hover::before {
    opacity: 1;
}

/* Image area */
.pcard-img-wrap {
    position: relative;
    height: 240px;
    background: linear-gradient(145deg, #f8f9ff, #eef1fb);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcard-img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.pcard-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}

.pcard:hover .pcard-img {
    transform: scale(1.08);
}

/* Badge */
.pcard-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #e94560, #f5a623);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(233,69,96,.4);
    z-index: 2;
}

/* Hover quick-view bar */
.pcard-actions-hover {
    position: absolute;
    bottom: -52px;
    left: 0;
    right: 0;
    height: 52px;
    background: linear-gradient(135deg, rgba(15,52,96,.96), rgba(10,10,26,.96));
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: bottom .32s cubic-bezier(.25,.46,.45,.94);
    z-index: 3;
}

.pcard:hover .pcard-actions-hover {
    bottom: 0;
}

.pcard-quick {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: transparent;
    border: none;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    transition: color .2s;
}

.pcard-quick i {
    font-size: 16px;
    color: #f5a623;
}

.pcard-quick:hover {
    color: #f5a623;
}

/* Body */
.pcard-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
    background: #fff;
}

.pcard-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f3460;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 45px;
}

.pcard-title a {
    color: inherit;
    text-decoration: none !important;
    transition: color .25s;
}

.pcard:hover .pcard-title a {
    color: #e94560;
}

.pcard-divider {
    height: 1px;
    background: linear-gradient(90deg, #e94560, #f5a623, transparent);
    opacity: .25;
    border-radius: 1px;
}

/* Footer buttons */
.pcard-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.pcard-btn-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid #25d366;
    color: #25d366 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .28s ease;
    letter-spacing: 0.3px;
    background: rgba(37,211,102,.05);
}

.pcard-btn-whatsapp:hover {
    background: #25d366;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(37,211,102,.35);
    transform: translateY(-2px);
}

.pcard-btn-fill {
    flex: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #e94560, #c0334f);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .28s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(233,69,96,.3);
}

.pcard-btn-fill:hover {
    background: linear-gradient(135deg, #f5a623, #e08c10);
    box-shadow: 0 8px 24px rgba(245,166,35,.45);
    transform: translateY(-2px);
}

/* ============================================================
   QUICK VIEW MODAL
============================================================ */
@keyframes qvFadeIn {
    from { opacity: 0; transform: translate(-50%, -46%) scale(.96); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.qv-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,26,.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9000;
}

.qv-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9001;
    background: #fff;
    border-radius: 20px;
    width: 92%;
    max-width: 780px;
    box-shadow: 0 40px 100px rgba(10,10,26,.4);
    overflow: hidden;
}

.qv-backdrop.open { display: block; }
.qv-modal.open    { display: block; animation: qvFadeIn .32s cubic-bezier(.25,.46,.45,.94) both; }

/* Enquiry modal must sit above QV modal (z-index 9001) */
#enquiryModal { z-index: 9100 !important; }
.modal-backdrop { z-index: 9050 !important; }

/* ============================================================
   PREMIUM ENQUIRY MODAL
============================================================ */
.enq-dialog {
    max-width: 620px;
}

.enq-modal-content {
    border: none !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 32px 80px rgba(10,10,26,.3);
}

/* HEADER — high specificity so padding always wins over Bootstrap */
#enquiryModal .enq-header {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    padding: 22px 26px 20px !important;
    margin: 0 !important;
    border: none !important;
    border-bottom: none !important;
    background: linear-gradient(135deg, #0f3460 0%, #1a4a80 100%);
    position: relative;
}

#enquiryModal .enq-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e94560 0%, #f5a623 100%);
}

#enquiryModal .enq-header-left {
    min-width: 0;
}

#enquiryModal .enq-header-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f5a623;
    margin-bottom: 5px;
}

#enquiryModal .enq-header-title {
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 3px;
    line-height: 1.2;
}

#enquiryModal .enq-header-sub {
    font-size: 12.5px;
    color: rgba(255,255,255,.6);
    margin: 0;
}

#enquiryModal .enq-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .25s;
    margin: 2px 0 0 16px;
    padding: 0;
}

#enquiryModal .enq-close:hover {
    background: #e94560;
    transform: rotate(90deg);
}

/* BODY */
#enquiryModal .enq-body {
    padding: 22px 26px 6px !important;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#enquiryModal .enq-row {
    display: flex;
    gap: 14px;
    margin: 0;
}

#enquiryModal .enq-field {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#enquiryModal .enq-label {
    font-size: 11.5px;
    font-weight: 700;
    color: #5a6480;
    letter-spacing: 0.2px;
    margin: 0;
    text-transform: none;
}

#enquiryModal .enq-req {
    color: #e94560;
}

#enquiryModal .enq-input {
    height: 42px;
    border: 1.5px solid #e4e8f2;
    border-radius: 9px;
    padding: 0 13px;
    font-size: 13.5px;
    color: #0f3460;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(15,52,96,.03);
}

#enquiryModal .enq-input::placeholder {
    color: #aab2c8;
    font-size: 13px;
}

#enquiryModal .enq-input:focus {
    border-color: #0f3460;
    box-shadow: 0 0 0 3px rgba(15,52,96,.1);
}

#enquiryModal .enq-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230f3460' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

#enquiryModal .enq-textarea {
    height: auto !important;
    padding: 11px 13px !important;
    resize: vertical;
    line-height: 1.55;
    min-height: 84px;
}

#enquiryModal .enq-captcha {
    transform: scale(0.92);
    transform-origin: left center;
    margin-top: 2px;
}

/* FOOTER */
#enquiryModal .enq-footer {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 14px 26px 22px !important;
    margin: 0 !important;
    border: none !important;
    border-top: none !important;
    gap: 16px;
}

#enquiryModal .enq-footer > * {
    margin: 0;
}

#enquiryModal .enq-trust {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#enquiryModal .enq-trust span {
    font-size: 11px;
    color: #8a95b8;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

#enquiryModal .enq-trust span i {
    color: #22c55e;
    font-size: 9px;
}

#enquiryModal .enq-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 26px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, #e94560 0%, #f5a623 100%);
    color: #fff;
    font-size: 14.5px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: all .28s;
    box-shadow: 0 6px 18px rgba(233,69,96,.32);
    white-space: nowrap;
}

#enquiryModal .enq-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(233,69,96,.42);
}

@media (max-width: 576px) {
    #enquiryModal .enq-header  { padding: 18px 18px 16px !important; }
    #enquiryModal .enq-body    { padding: 18px 18px 6px !important; }
    #enquiryModal .enq-row     { flex-direction: column; gap: 12px; }
    #enquiryModal .enq-footer  { flex-direction: column; align-items: stretch; padding: 14px 18px 18px !important; }
    #enquiryModal .enq-submit  { justify-content: center; }
    #enquiryModal .enq-trust   { flex-direction: row; flex-wrap: wrap; gap: 8px 14px; }
    #enquiryModal .enq-captcha { transform: scale(0.85); }
}

/* ============================================================
   PREMIUM SEO CONTENT SECTION
============================================================ */
.seo-section {
    background:
        radial-gradient(circle at 12% 8%, rgba(233,69,96,.05), transparent 30%),
        radial-gradient(circle at 88% 92%, rgba(245,166,35,.05), transparent 32%),
        linear-gradient(180deg, #f6f8fc 0%, #eef1f8 100%);
    padding: 78px 0 64px;
    position: relative;
    overflow: hidden;
}

.seo-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15,52,96,.05) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(circle at 50% 0%, #000, transparent 60%);
    mask-image: radial-gradient(circle at 50% 0%, #000, transparent 60%);
    pointer-events: none;
}

/* Section heading */
.seo-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
    position: relative;
    z-index: 2;
}

.seo-badge {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: linear-gradient(135deg, #0f3460, #1a4a80);
    box-shadow: 0 12px 28px rgba(15,52,96,.3);
    position: relative;
}
.seo-badge::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 22px;
    border: 1.5px dashed rgba(233,69,96,.4);
}

.seo-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #e94560;
    background: rgba(233,69,96,.08);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.seo-head-title {
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 900;
    color: #0f3460;
    line-height: 1.18;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.seo-head-sub {
    font-size: 15px;
    color: #6b7494;
    line-height: 1.7;
    margin: 0 0 20px;
}

/* Topic chips */
.seo-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-bottom: 22px;
}
.seo-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: #0f3460;
    background: #fff;
    border: 1px solid #e6eaf5;
    padding: 7px 15px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(15,52,96,.05);
    transition: all .2s;
}
.seo-chip i { font-size: 9px; color: #22c55e; }
.seo-chip:hover { border-color: #e94560; transform: translateY(-2px); }

.seo-head-line {
    display: block;
    width: 70px;
    height: 4px;
    margin: 0 auto;
    border-radius: 4px;
    background: linear-gradient(90deg, #e94560, #f5a623);
}

/* Premium card framing */
.seo-card { position: relative; z-index: 2; }
.seo-card::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, #e94560, #f5a623);
    z-index: 3;
}

/* Magazine wrapper */
.seo-mag {
    max-width: 1000px;
    margin: 0 auto;
}

/* Shared typography */
.seo-mag p {
    font-size: 14.5px;
    line-height: 1.85;
    color: #5a6480;
    margin: 0 0 14px;
}

.seo-mag p:last-child { margin-bottom: 0; }

.seo-mag a {
    color: #e94560;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted rgba(233,69,96,.5);
    transition: all .2s;
}

.seo-mag a:hover {
    color: #c0334f;
    border-bottom-color: #c0334f;
}

/* Intro */
.seo-mag-h1 {
    font-size: 27px;
    font-weight: 900;
    color: #0f3460;
    margin: 0 0 16px;
    line-height: 1.25;
}

.seo-lead {
    font-size: 15.5px !important;
    line-height: 1.9 !important;
    color: #4a5578 !important;
    padding: 22px 26px;
    background: #fff;
    border-left: 4px solid #e94560;
    border-radius: 0 14px 14px 0;
    box-shadow: 0 10px 36px rgba(15,52,96,.07);
    margin-bottom: 44px !important;
}

/* Generic block */
.seo-block {
    margin-bottom: 44px;
}

.seo-block-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.seo-block-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, #0f3460, #1a4a80);
    box-shadow: 0 8px 20px rgba(15,52,96,.25);
}

.seo-block-icon-alt {
    background: linear-gradient(135deg, #e94560, #c0334f);
    box-shadow: 0 8px 20px rgba(233,69,96,.3);
}

.seo-block-head h2,
.seo-block-head h3,
.seo-block-head h4 {
    margin: 0;
    color: #0f3460;
    line-height: 1.3;
    font-weight: 800;
}

.seo-block-head h2 { font-size: 23px; }
.seo-block-head h3 { font-size: 20px; }
.seo-block-head h4 { font-size: 18px; }

/* Type cards (3-up) */
.seo-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.seo-type-card {
    background: #fff;
    border: 1px solid #eaeefa;
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 10px 30px rgba(15,52,96,.06);
    transition: transform .3s, box-shadow .3s;
}

.seo-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15,52,96,.12);
}

.seo-type-ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #e94560;
    background: rgba(233,69,96,.09);
    margin-bottom: 16px;
}

.seo-type-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f3460;
    margin: 0 0 12px;
    line-height: 1.35;
}

.seo-type-card p {
    font-size: 13.5px;
    line-height: 1.75;
}

/* Check grid (2-up) */
.seo-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.seo-check-item {
    display: flex;
    gap: 12px;
    background: #fff;
    border: 1px solid #eaeefa;
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 13.5px;
    line-height: 1.7;
    color: #5a6480;
    transition: border-color .25s, box-shadow .25s;
}

.seo-check-item:hover {
    border-color: #e94560;
    box-shadow: 0 8px 22px rgba(233,69,96,.08);
}

.seo-check-item i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560, #c0334f);
    color: #fff;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

/* Price callout */
.seo-callout {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: linear-gradient(135deg, #0f3460 0%, #1a4a80 100%);
    border-radius: 18px;
    padding: 32px 34px;
    margin-bottom: 44px;
    position: relative;
    overflow: hidden;
}

.seo-callout::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233,69,96,.25), transparent 70%);
}

.seo-callout-ic {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: linear-gradient(135deg, #e94560, #f5a623);
    box-shadow: 0 8px 22px rgba(233,69,96,.4);
    position: relative;
    z-index: 2;
}

.seo-callout-body { position: relative; z-index: 2; }

.seo-callout-body h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}

.seo-callout-body p {
    color: rgba(255,255,255,.78) !important;
    margin: 0;
}

.seo-callout-body a {
    color: #f5a623;
    border-bottom-color: rgba(245,166,35,.5);
}

.seo-callout-body a:hover { color: #ffb938; }

/* Chips (safety wear) */
.seo-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.seo-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #eaeefa;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: #0f3460;
    box-shadow: 0 4px 14px rgba(15,52,96,.05);
}

.seo-chip i {
    color: #e94560;
    font-size: 13px;
}

/* Accent block (shot blasting intro) */
.seo-block-accent {
    background: #fff;
    border: 1px solid #eaeefa;
    border-left: 4px solid #e94560;
    border-radius: 0 16px 16px 0;
    padding: 28px 30px;
    box-shadow: 0 10px 34px rgba(15,52,96,.07);
}

.seo-block-accent .seo-block-head { margin-bottom: 16px; }

/* Advantage cards */
.seo-adv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.seo-adv-card {
    background: #fff;
    border: 1px solid #eaeefa;
    border-radius: 16px;
    padding: 24px 24px;
    box-shadow: 0 10px 30px rgba(15,52,96,.06);
}

.seo-adv-card:first-child { grid-column: 1 / -1; }

.seo-adv-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 800;
    color: #0f3460;
    margin: 0 0 12px;
}

.seo-adv-ic {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #e94560;
    background: rgba(233,69,96,.09);
}

.seo-adv-card p { font-size: 13.5px; }

/* Mini list */
.seo-mini-list {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
}

.seo-adv-card:not(:first-child) .seo-mini-list { grid-template-columns: 1fr; }

.seo-mini-list li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    line-height: 1.6;
    color: #5a6480;
}

.seo-mini-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #f5a623;
}

/* Manufacturer box */
.seo-mfg {
    display: flex;
    gap: 22px;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #f8f9fd 100%);
    border: 1px solid #eaeefa;
    border-radius: 18px;
    padding: 30px 34px;
    box-shadow: 0 12px 38px rgba(15,52,96,.07);
}

.seo-mfg-ic {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, #0f3460, #1a4a80);
    box-shadow: 0 8px 22px rgba(15,52,96,.28);
}

.seo-mfg-body h4 {
    font-size: 19px;
    font-weight: 800;
    color: #0f3460;
    margin: 0 0 8px;
}

@media (max-width: 768px) {
    .seo-section     { padding: 50px 0 44px; }
    .seo-head-title  { font-size: 26px; }
    .seo-mag-h1      { font-size: 22px; }
    .seo-lead        { padding: 18px 20px; font-size: 14.5px !important; }
    .seo-block-head h2 { font-size: 19px; }
    .seo-block-head h3 { font-size: 17px; }
    .seo-types       { grid-template-columns: 1fr; gap: 16px; }
    .seo-check-grid  { grid-template-columns: 1fr; }
    .seo-callout     { flex-direction: column; gap: 16px; padding: 24px 20px; }
    .seo-adv         { grid-template-columns: 1fr; }
    .seo-adv-card:first-child .seo-mini-list { grid-template-columns: 1fr; }
    .seo-mfg         { flex-direction: column; text-align: center; padding: 24px 20px; }
}

/* ============================================================
   OUR REACH — CITIES & COUNTRIES
============================================================ */
.presence-section {
    position: relative;
    padding: 72px 0 76px;
    background: linear-gradient(150deg, #0a1f3c 0%, #0f3460 55%, #112c54 100%);
    overflow: hidden;
}

.presence-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(233,69,96,.18), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(245,166,35,.14), transparent 42%);
    pointer-events: none;
}

.presence-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */
.presence-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.presence-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f5a623;
    background: rgba(245,166,35,.12);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.presence-title {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 14px;
}

.presence-title span {
    background: linear-gradient(90deg, #e94560, #f5a623);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.presence-sub {
    font-size: 15px;
    color: rgba(255,255,255,.62);
    line-height: 1.75;
    margin: 0;
}

/* Block */
.presence-block {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 28px 30px;
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.presence-block:last-child {
    margin-bottom: 0;
}

.presence-block-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.presence-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(135deg, #e94560, #c0334f);
    box-shadow: 0 8px 20px rgba(233,69,96,.35);
}

.presence-icon-alt {
    background: linear-gradient(135deg, #f5a623, #e08c10);
    box-shadow: 0 8px 20px rgba(245,166,35,.35);
}

.presence-block-titles {
    flex: 1;
    min-width: 0;
}

.presence-block-titles h3, .presence-block-titles .presence-block-name {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 3px;
    line-height: 1.3;
}

.presence-block-titles p {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    margin: 0;
}

.presence-badge {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: rgba(233,69,96,.18);
    border: 1px solid rgba(233,69,96,.4);
    padding: 8px 16px;
    border-radius: 30px;
    white-space: nowrap;
}

.presence-badge-alt {
    background: rgba(245,166,35,.16);
    border-color: rgba(245,166,35,.4);
}

/* Chips */
.presence-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.presence-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.82) !important;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .25s ease;
}

.presence-chip i {
    font-size: 11px;
    color: #f5a623;
    transition: color .25s;
}

.presence-flag {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
    display: block;
}

.presence-chip:hover {
    background: linear-gradient(135deg, #e94560, #c0334f);
    border-color: transparent;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233,69,96,.4);
}

.presence-chip:hover i {
    color: #fff;
}

@media (max-width: 768px) {
    .presence-section    { padding: 52px 0 56px; }
    .presence-title      { font-size: 26px; }
    .presence-block      { padding: 22px 18px; }
    .presence-block-head { flex-wrap: wrap; gap: 12px; }
    .presence-badge      { order: 3; }
    .presence-block-titles h3, .presence-block-titles .presence-block-name { font-size: 17px; }
    .presence-chip       { padding: 8px 13px; font-size: 12.5px; }
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-section {
    background: #fff;
    padding: 76px 0 80px;
}

.faq-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
}

.faq-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e94560;
    background: rgba(233,69,96,.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.faq-title {
    font-size: 34px;
    font-weight: 900;
    color: #0f3460;
    line-height: 1.2;
    margin: 0 0 12px;
}

.faq-title span {
    background: linear-gradient(90deg, #e94560, #f5a623);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-sub {
    font-size: 15px;
    color: #6b7494;
    line-height: 1.7;
    margin: 0 0 18px;
}

.faq-head-line {
    display: block;
    width: 70px;
    height: 4px;
    margin: 0 auto;
    border-radius: 4px;
    background: linear-gradient(90deg, #e94560, #f5a623);
}

/* Category tabs */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto 32px;
}

.faq-tab {
    padding: 11px 24px;
    border: 1.5px solid #e4e8f2;
    border-radius: 30px;
    background: #f8f9fd;
    color: #5a6480;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: all .25s ease;
    font-family: inherit;
    outline: none;
}

.faq-tab:hover {
    border-color: #e94560;
    color: #e94560;
}

.faq-tab.active {
    background: linear-gradient(135deg, #0f3460, #1a4a80);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 18px rgba(15,52,96,.25);
}

/* Panels */
.faq-panel {
    display: none;
    animation: faqFade .35s ease;
}

.faq-panel.active {
    display: block;
}

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

/* List */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fd;
    border: 1.5px solid #eaeefa;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, background .3s;
}

.faq-item.open {
    background: #fff;
    border-color: #e94560;
    box-shadow: 0 12px 34px rgba(233,69,96,.1);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

.faq-q:focus,
.faq-q:active {
    outline: none !important;
    box-shadow: none !important;
}

.faq-q-text {
    font-size: 16px;
    font-weight: 700;
    color: #0f3460;
    line-height: 1.45;
}

.faq-item.open .faq-q-text {
    color: #e94560;
}

.faq-q-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e2e6f3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f3460;
    font-size: 13px;
    transition: all .3s ease;
}

.faq-item.open .faq-q-icon {
    background: linear-gradient(135deg, #e94560, #c0334f);
    border-color: transparent;
    color: #fff;
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-item.open .faq-a {
    max-height: 400px;
}

.faq-a-inner {
    padding: 0 24px 22px;
    font-size: 14.5px;
    line-height: 1.8;
    color: #5a6480;
}

/* CTA */
.faq-cta {
    max-width: 860px;
    margin: 36px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 26px 30px;
    background: linear-gradient(135deg, #0f3460, #1a4a80);
    border-radius: 16px;
}

.faq-cta span {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 26px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, #e94560, #f5a623);
    color: #fff;
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all .28s;
    box-shadow: 0 6px 18px rgba(233,69,96,.32);
}

.faq-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(233,69,96,.42);
}

@media (max-width: 768px) {
    .faq-section  { padding: 52px 0 56px; }
    .faq-title    { font-size: 26px; }
    .faq-tabs     { gap: 8px; }
    .faq-tab      { padding: 9px 16px; font-size: 12.5px; }
    .faq-q        { padding: 16px 18px; }
    .faq-q-text   { font-size: 14.5px; }
    .faq-a-inner  { padding: 0 18px 18px; font-size: 13.5px; }
    .faq-cta      { flex-direction: column; gap: 14px; padding: 24px 20px; text-align: center; }
}

/* Close button */
.qv-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(15,52,96,.08);
    color: #0f3460;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    line-height: 1;
}

.qv-close:hover {
    background: #e94560;
    color: #fff;
    transform: rotate(90deg);
}

/* Layout */
.qv-inner {
    display: flex;
    min-height: 400px;
}

/* Image side */
.qv-img-side {
    width: 44%;
    background: linear-gradient(145deg, #f5f7fc, #eef1fb);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    flex-shrink: 0;
    border-right: 1px solid #eef0f8;
}

.qv-img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

/* Info side */
.qv-info-side {
    flex: 1;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.qv-tag {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e94560;
    display: flex;
    align-items: center;
    gap: 7px;
}

.qv-tag::before {
    content: '';
    width: 16px;
    height: 2px;
    background: #e94560;
    border-radius: 2px;
    display: inline-block;
}

.qv-title {
    font-size: 21px;
    font-weight: 900;
    color: #0f3460;
    line-height: 1.3;
    margin: 0;
}

.qv-stock-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qv-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,.2);
    flex-shrink: 0;
}

.qv-stock-text {
    font-size: 12px;
    font-weight: 600;
    color: #5a6480;
}

.qv-desc {
    margin: 0;
}

.qv-desc-text {
    font-size: 13px;
    color: #6b7494;
    line-height: 1.75;
    margin: 0;
    padding: 12px 14px;
    background: #f8f9fd;
    border-left: 3px solid #e94560;
    border-radius: 0 8px 8px 0;
}

.qv-specs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #eef0f8;
    border-radius: 10px;
    overflow: hidden;
}

.qv-specs-list li {
    display: flex;
    align-items: center;
    font-size: 12.5px;
    border-bottom: 1px solid #eef0f8;
}

.qv-specs-list li:last-child {
    border-bottom: none;
}

.qv-spec-key {
    flex: 0 0 55%;
    padding: 8px 12px;
    color: #5a6480;
    background: #f8f9fd;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.qv-spec-key::before {
    content: '✔';
    color: #e94560;
    font-size: 10px;
    flex-shrink: 0;
}

.qv-spec-val {
    flex: 1;
    padding: 8px 12px;
    color: #0f3460;
    font-weight: 700;
    background: #fff;
    border-left: 1px solid #eef0f8;
}

.qv-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
}

.qv-btn-enquiry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #0f3460, #1a4a80);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .28s;
    box-shadow: 0 4px 18px rgba(15,52,96,.3);
    letter-spacing: 0.4px;
}

.qv-btn-enquiry:hover {
    background: linear-gradient(135deg, #e94560, #c0334f);
    box-shadow: 0 8px 24px rgba(233,69,96,.4);
    transform: translateY(-2px);
}

.qv-btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid #25d366;
    background: rgba(37,211,102,.04);
    color: #25d366 !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .28s;
    letter-spacing: 0.4px;
}

.qv-btn-wa:hover {
    background: #25d366;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(37,211,102,.35);
    transform: translateY(-2px);
}

.qv-btn-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #8a95b8 !important;
    text-decoration: none !important;
    transition: color .25s;
    letter-spacing: 0.3px;
    padding-top: 2px;
}

.qv-btn-details:hover {
    color: #e94560 !important;
}

@media (max-width: 640px) {
    .qv-inner      { flex-direction: column; }
    .qv-img-side   { width: 100%; min-height: 200px; padding: 20px; border-right: none; border-bottom: 1px solid #eef0f8; }
    .qv-info-side  { padding: 20px 18px; }
    .qv-title      { font-size: 17px; }
}

/* View all button */
.sec-view-all {
    text-align: center;
    margin-top: 44px;
}

.btn-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #0f3460;
    padding: 13px 36px;
    border: 2px solid #0f3460;
    border-radius: 50px;
    text-decoration: none !important;
    letter-spacing: 0.4px;
    transition: all .3s ease;
}

.btn-all:hover {
    background: linear-gradient(135deg, #e94560, #f5a623);
    border-color: transparent;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(233,69,96,.35);
}

.prod-owl .owl-stage { display: flex; }
.prod-owl .owl-item  { display: flex; }
.prod-owl .item      { width: 100%; display: flex; }

/* ============================================================
   OWL CAROUSEL — NAV & DOTS
============================================================ */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    margin: 0 -22px;
    height: 0;
    align-items: center;
}

.owl-carousel .owl-nav button {
    pointer-events: all;
}

.owl-btn-prev,
.owl-btn-next {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px;
    min-height: 46px;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1.5px solid #e8eaf5 !important;
    box-shadow: 0 4px 18px rgba(15,52,96,.14) !important;
    color: #0f3460 !important;
    font-size: 16px !important;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all .28s ease !important;
    outline: none !important;
    line-height: 1 !important;
    padding: 0 !important;
}

.owl-btn-prev:hover,
.owl-btn-next:hover {
    background: linear-gradient(135deg, #e94560, #f5a623);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px rgba(233,69,96,.35);
    transform: scale(1.08);
}

/* Dots */
.owl-carousel .owl-dots {
    margin-top: 28px;
    text-align: center;
}

.owl-carousel .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #d4d8ee;
    border-radius: 50%;
    margin: 0 4px;
    transition: all .3s ease;
    display: inline-block;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: linear-gradient(135deg, #e94560, #f5a623);
    width: 26px;
    border-radius: 4px;
}

/* ============================================================
   PRODUCT CARD FOOTER BUTTONS — EQUAL SIZE
============================================================ */
.pcard-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.pcard-btn-whatsapp,
.pcard-btn-fill {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 46px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all .28s ease;
    white-space: nowrap;
}

.pcard-btn-whatsapp {
    border: 2px solid #25d366;
    color: #25d366 !important;
    background: rgba(37,211,102,.04);
    text-decoration: none !important;
}

.pcard-btn-whatsapp:hover {
    background: #25d366;
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(37,211,102,.35);
    transform: translateY(-2px);
}

.pcard-btn-fill {
    border: none;
    background: linear-gradient(135deg, #e94560, #c0334f);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(233,69,96,.3);
}

.pcard-btn-fill:hover {
    background: linear-gradient(135deg, #f5a623, #e08c10);
    box-shadow: 0 8px 24px rgba(245,166,35,.45);
    transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 992px) {
    #hero-slider {
        height: 75vh;
        min-height: 480px;
    }

    .hero-cin-title {
        font-size: clamp(28px, 5vw, 48px);
    }

    .hstat-card {
        padding: 0 18px;
    }

    .hstat-num {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    #hero-slider {
        height: 78vh;
        min-height: 460px;
    }

    .hero-ctrl {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .hero-prev { left: 12px; }
    .hero-next { right: 12px; }

    .hero-dots { bottom: 80px; }

    /* Stats → 2×2 grid, no dividers */
    .stats-bar { padding: 24px 0; }
    .stats-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 8px;
    }
    .stat-item    { padding: 0; }
    .stat-num     { font-size: 30px; }
    .stat-label   { font-size: 12px; }
    .stat-divider { display: none; }

    .sec-category, .sec-products { padding: 44px 0; }
    .ccat-img-wrap { height: 210px; }
    .pcard-img-wrap { height: 190px; }
    .sec-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 520px) {
    #hero-slider {
        height: 92vh;
        min-height: 420px;
    }

    .hero-cin-label { font-size: 11px; letter-spacing: 1px; margin-bottom: 12px; }
    .hero-cin-sub   { margin-bottom: 26px; }

    /* Stack hero buttons full-width */
    .hero-cin-actions { width: 100%; flex-direction: column; align-items: center; gap: 10px; }
    .btn-hero-primary,
    .btn-hero-ghost   { width: 100%; max-width: 280px; }

    .stat-num      { font-size: 26px; }
    .stat-label    { font-size: 11px; }

    .hstat-card {
        padding: 0 8px;
    }

    .hero-cin-content {
        padding-bottom: 110px;
    }

    .hero-dots { bottom: 86px; }

    .hero-iso-badge {
        font-size: 9px;
        padding: 4px 10px;
        top: 14px;
        left: 14px;
    }
}

/* ============================================================
   HEADER & FOOTER — RESPONSIVE POLISH
============================================================ */
@media (max-width: 991px) {
    /* space the search bar from the contact row */
    .header-top .search-form { margin-bottom: 12px; }

    /* contact row: keep on one tidy line, centered */
    .header-top .col-lg-4 {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 6px 18px;
        font-size: 13px;
    }
    .header-top .col-lg-4 a { white-space: nowrap; }
}

@media (max-width: 575px) {
    .header-top .col-lg-4 {
        gap: 4px 14px;
        font-size: 12px;
    }
    .header-top .col-lg-4 > br { display: none; }

    /* mobile header-nav logo a touch smaller */
    .header-nav .d-lg-none img { max-width: 160px; height: auto; }
}

/* Footer */
@media (max-width: 767px) {
    footer.bg-dark { padding: 32px 0 90px !important; } /* room for the FAB */
    .footer-img { text-align: center; }
    .footer-content { text-align: center; }
    .footer-list { text-align: center; margin-top: 22px; }
    .footer-list .list-inline { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
    .footer-list ul li:hover { padding: 3px 0; } /* avoid jump on tap */
}

/* ============================================================
   MOBILE: HEADER-NAV BAR + OFF-CANVAS MENU
============================================================ */
@media (max-width: 991px) {
    /* ---- Top bar (search + contact) spacing ---- */
    .header-top { padding: 12px 0 !important; }
    .header-top .search-form { margin-bottom: 10px; padding: 0 4px !important; }
    .header-top .htop-search .searchinput {
        height: 40px;
        border-radius: 22px;
        padding: 0 46px 0 40px;
        font-size: 14px;
    }
    .header-top .htop-search-btn { width: 34px; height: 34px; font-size: 13px; }

    /* ---- Mobile nav bar: dark so the (white) logo is visible ---- */
    .header-nav {
        background: linear-gradient(135deg, #0a0a1a 0%, #0f3460 100%) !important;
        border-bottom: 3px solid #e94560 !important;
        box-shadow: 0 4px 16px rgba(10,10,26,.25) !important;
        z-index: auto !important; /* let the off-canvas menu escape this stacking context */
    }
    .header-nav .row { padding: 10px 6px; align-items: center; }

    .mnav-logo img {
        width: auto;
        max-width: 100%;
        max-height: 42px;
        height: auto;
    }

    /* Hamburger button */
    .nav-icon,
    .nav-icon:hover,
    .nav-icon:focus,
    .nav-icon:active {
        margin: 0 !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 40px;
        background: #e94560 !important;
        color: #fff !important;
        border: none !important;
        border-radius: 9px !important;
        font-size: 20px !important;
        box-shadow: 0 4px 12px rgba(233,69,96,.4);
        outline: none !important;
    }
    .nav-icon i { line-height: 1; }

    /* ---- Off-canvas panel ---- */
    .main-navbar {
        position: fixed;
        left: -85%;
        top: 0;
        bottom: 0;
        width: 82%;
        max-width: 340px;
        background: linear-gradient(180deg, #0a0a1a 0%, #0f1f3c 55%, #0f3460 100%) !important;
        z-index: 100000;
        display: block;
        transition: left .35s cubic-bezier(.4,0,.2,1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 6px 0 40px rgba(0,0,0,.4);
        padding: 0 0 30px !important;
        margin: 0 !important;
    }
    .main-navbar.active { left: 0; }

    /* Panel header (logo + close) */
    .mnav-head {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 18px 18px !important;
        border-bottom: 1px solid rgba(255,255,255,.1) !important;
        background: rgba(0,0,0,.2);
        position: sticky;
        top: 0;
        z-index: 2;
    }
    .mnav-brand img { max-height: 40px; width: auto; }
    .mnav-close {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,.1);
        color: #fff;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all .25s;
        flex-shrink: 0;
    }
    .mnav-close:hover { background: #e94560; transform: rotate(90deg); }

    /* Menu items */
    .main-navbar > li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
        position: relative;
        display: block;
    }
    .main-navbar > li > a {
        width: 100%;
        float: none;
        display: block;
        color: rgba(255,255,255,.92) !important;
        font-size: 14.5px;
        font-weight: 600;
        letter-spacing: .2px;
        padding: 15px 50px 15px 22px !important;
        transition: all .25s;
    }
    .main-navbar > li > a:hover,
    .main-navbar > li.open > a {
        color: #f5a623 !important;
        background: rgba(255,255,255,.04);
        padding-left: 26px !important;
    }

    /* Dropdown caret toggle */
    .main-navbar > li > span.icon-angle-down {
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        margin: 0;
        border-left: 1px solid rgba(255,255,255,.1);
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.7);
        font-size: 14px;
        cursor: pointer;
        transition: all .3s;
        background: none;
    }
    .main-navbar > li.open > span.icon-angle-down {
        transform: rotate(180deg);
        color: #f5a623;
    }

    /* Submenu */
    .main-navbar li ul,
    .main-navbar > li:hover > ul {
        position: static;
        background: rgba(0,0,0,.28) !important;
        transform: none;
        display: none;
        border-top: none;
        box-shadow: none;
        padding: 4px 0;
        margin: 0;
    }
    .main-navbar li ul li { border-bottom: none; }
    .main-navbar li ul li a {
        color: rgba(255,255,255,.72) !important;
        font-size: 13px;
        font-weight: 500;
        padding: 11px 22px 11px 36px !important;
        display: block;
        position: relative;
    }
    .main-navbar li ul li a::before {
        content: '';
        position: absolute;
        left: 22px;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #e94560;
    }
    .main-navbar li ul li a:hover { color: #f5a623 !important; }

    /* Backdrop */
    .mnav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(5,5,18,.6);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s ease, visibility .35s;
    }
    body.open_nav .mnav-backdrop { opacity: 1; visibility: visible; }
    body.open_nav { overflow: hidden; }
}

/* Backdrop never shows on desktop */
@media (min-width: 992px) {
    .mnav-backdrop { display: none; }
    .mnav-head { display: none !important; }
}

@media (max-width: 768px) {
    /* Product carousels have many items — dots wrap into messy rows.
       Hide them on mobile; arrows + swipe are enough. */
    .auth-prod-owl .owl-dots,
    .prod-owl .owl-dots { display: none !important; }

    /* keep category dots (few items) tidy in one row */
    #owl-carousel-cat .owl-dots { white-space: nowrap; }

    /* bring arrows onto the card edges, slightly smaller */
    .owl-carousel .owl-nav { margin: 0 -2px; }
    .owl-btn-prev,
    .owl-btn-next {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px;
        min-height: 38px;
        font-size: 14px !important;
        box-shadow: 0 4px 14px rgba(15,52,96,.28) !important;
    }
}

/* Center single product/category card on mobile */
@media (max-width: 575px) {
    .auth-prod-owl .item,
    .prod-owl .item,
    #owl-carousel-cat .item {
        display: flex;
        justify-content: center;
    }
    .auth-prod-owl .acard,
    .prod-owl .acard {
        width: 100%;
        max-width: 340px;
    }
    #owl-carousel-cat .ccat-card {
        width: 100%;
        max-width: 340px;
    }
}

/* ============================================================
   PRODUCT LISTING PAGE — acard grid
============================================================ */
#product-section.auth-listing {
    padding: 24px 0 50px;
    background: #fff;
}

/* Breadcrumb */
.auth-bcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    background: none !important;
    margin: 0 0 18px;
    padding: 0 !important;
    font-size: 13px;
}

.auth-bcrumb .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    color: #8a95b8;
}

.auth-bcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\203A";          /* › */
    color: #c2c9de;
    padding: 0 8px;
    font-size: 15px;
}

.auth-bcrumb a {
    color: #5a6480 !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}

.auth-bcrumb a:hover { color: #e94560 !important; }

.auth-bcrumb a i { font-size: 12px; color: #e94560; }

.auth-bcrumb .breadcrumb-item.active {
    color: #0f3460;
    font-weight: 800;
    max-width: 40ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .auth-bcrumb { font-size: 12px; }
    .auth-bcrumb .breadcrumb-item.active { max-width: 22ch; }
}

.auth-listing .card-body h1 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    color: #0f3460;
    margin-bottom: 10px;
}

/* equal-height cards in the flex grid */
.auth-listing-row { margin-top: 6px; }
.auth-listing-row > [class*="col-"] { display: flex; }
.auth-listing-row .acard { width: 100%; }

@media (max-width: 575px) {
    .auth-listing-row .acard { max-width: 100%; }
    .auth-listing .acard-name { font-size: 14px; min-height: 40px; }
}

/* ============================================================
   SINGLE PRODUCT PAGE — PREMIUM
============================================================ */
.psingle {
    padding: 22px 0 60px;
    background: #f6f8fc;
}

.psingle .auth-bcrumb { margin-bottom: 20px; }

/* ---- Gallery ---- */
.psingle-gallery {
    position: sticky;
    top: 20px;
}

.psingle .xzoom-container {
    background: #fff;
    border: 1px solid #e8ecf8;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 40px rgba(15,52,96,.07);
}

.psingle .xzoom-container .carousel-inner {
    border: none !important;
    border-radius: 12px;
    background: linear-gradient(145deg, #f7f9fd, #eef2fb);
    margin-bottom: 16px !important;
    overflow: hidden;
}

.psingle .carousel-item {
    display: none;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
}
.psingle .carousel-item.active { display: block; }

.psingle .xzoom,
.psingle #xzoom-default {
    width: 100%;
    height: 420px;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
    border-radius: 12px;
}

/* Thumbnails */
.psingle .xzoom-thumbs {
    position: static !important;
    margin: 0 !important;
}
.psingle .xzoom-thumbs .item {
    border: 2px solid #e8ecf8;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    transition: border-color .25s, transform .25s;
    margin: 0 4px;
}
.psingle .xzoom-thumbs .item.active,
.psingle .xzoom-thumbs .item:hover {
    border-color: #e94560;
}
.psingle .xzoom-gallery {
    width: 100%;
    height: 70px;
    object-fit: contain;
    padding: 6px;
    border-radius: 8px;
}

/* Trust badges */
.psingle-trust {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.ptrust {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid #e8ecf8;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #0f3460;
}
.ptrust i {
    font-size: 17px;
    color: #e94560;
    flex-shrink: 0;
}

/* ---- Info side ---- */
.psingle-info {
    background: #fff;
    border: 1px solid #e8ecf8;
    border-radius: 18px;
    padding: 30px 30px 32px;
    box-shadow: 0 10px 40px rgba(15,52,96,.07);
}

.psingle-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #e94560;
    background: rgba(233,69,96,.08);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.psingle-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    color: #0f3460;
    line-height: 1.22;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.psingle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eef1f8;
}
.psingle-stock,
.psingle-mfg {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #5a6480;
}
.psingle-stock-dot,
.psingle-mfg-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.psingle-stock-dot { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.18); }
.psingle-mfg-dot   { background: #f5a623; box-shadow: 0 0 0 3px rgba(245,166,35,.18); }

.psingle-intro {
    font-size: 14.5px;
    line-height: 1.75;
    color: #6b7494;
    margin: 0 0 18px;
}

.psingle-assure {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.psingle-assure li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: #4a5578;
}
.psingle-assure li i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(34,197,94,.12);
    color: #22c55e;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Key specs (dynamic per product) */
.psingle-keyspecs {
    list-style: none;
    margin: 0 0 24px;
    padding: 16px 18px;
    background: #f8f9fd;
    border: 1px solid #eef1f8;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.psingle-keyspecs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    line-height: 1.5;
    min-width: 0;
}
.psingle-keyspecs li i {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: rgba(34,197,94,.12);
    color: #22c55e;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.psingle-keyspecs-k {
    font-weight: 700;
    color: #0f3460;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55%;
    flex-shrink: 1;
}
.psingle-keyspecs-v {
    color: #5a6480;
    font-weight: 600;
    position: relative;
    padding-left: 12px;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.psingle-keyspecs-v::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c2c9de;
}

/* CTAs */
.psingle-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.psingle-btn-quote {
    flex: 1 1 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 54px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #e94560, #f5a623);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .4px;
    cursor: pointer;
    transition: all .28s;
    box-shadow: 0 8px 22px rgba(233,69,96,.35);
}
.psingle-btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(233,69,96,.45);
}
.psingle-btn-wa,
.psingle-btn-call {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .28s;
}
.psingle-btn-wa {
    border: 2px solid #25d366;
    background: rgba(37,211,102,.05);
    color: #1ba94c !important;
}
.psingle-btn-wa:hover {
    background: #25d366;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(37,211,102,.35);
}
.psingle-btn-call {
    border: 2px solid #0f3460;
    background: rgba(15,52,96,.04);
    color: #0f3460 !important;
}
.psingle-btn-call:hover {
    background: #0f3460;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(15,52,96,.3);
}

/* ---- Sections (specs / description) ---- */
.psingle-section {
    background: #fff;
    border: 1px solid #e8ecf8;
    border-radius: 18px;
    padding: 30px 32px;
    box-shadow: 0 10px 40px rgba(15,52,96,.06);
    margin-bottom: 24px;
}
.psingle-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f2f9;
}
.psingle-section-bar {
    width: 5px;
    height: 26px;
    border-radius: 4px;
    background: linear-gradient(180deg, #e94560, #f5a623);
}
.psingle-section-head h2, .psingle-section-head .psingle-section-title {
    font-size: 21px;
    font-weight: 800;
    color: #0f3460;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}
.psingle-section-head h2 i, .psingle-section-head .psingle-section-title i { color: #e94560; font-size: 19px; }

/* Spec table */
.psingle-spec { max-height: none; overflow: visible; }
.psingle-spec table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e8ecf8;
    border-radius: 12px;
    overflow: hidden;
}
.psingle-spec table td,
.psingle-spec table th {
    padding: 13px 18px;
    border: none;
    border-bottom: 1px solid #eef1f8;
    font-size: 14px;
    text-align: left;
    vertical-align: top;
}
.psingle-spec table tr td:first-child {
    font-weight: 700;
    color: #0f3460;
    background: #f8f9fd;
    width: 45%;
    border-right: 1px solid #eef1f8;
}
.psingle-spec table tr td:last-child { color: #5a6480; }
.psingle-spec table tr:last-child td { border-bottom: none; }
.psingle-spec table tr:hover td { background: #fef6f7; }
.psingle-spec table tr:hover td:first-child { background: #fdeef1; }

/* Description content */
.psingle-desc { font-size: 14.5px; line-height: 1.85; color: #5a6480; }
.psingle-desc h1, .psingle-desc h2, .psingle-desc h3, .psingle-desc h4 {
    color: #0f3460;
    font-weight: 800;
    margin: 22px 0 12px;
    line-height: 1.35;
}
.psingle-desc h1 { font-size: 22px; }
.psingle-desc h2 { font-size: 20px; }
.psingle-desc h3 { font-size: 18px; }
.psingle-desc p { margin: 0 0 14px; }
.psingle-desc a { color: #e94560; font-weight: 600; }
.psingle-desc a:hover { color: #0f3460; }
.psingle-desc img { max-width: 100%; height: auto; border-radius: 10px; }

/* Bullet lists — crimson dot markers */
.psingle-desc ul {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}
.psingle-desc ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 11px;
    line-height: 1.7;
}
.psingle-desc ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560, #f5a623);
    box-shadow: 0 0 0 3px rgba(233,69,96,.12);
}
/* Ordered lists — chevron marker (no numbers) */
.psingle-desc ol {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}
.psingle-desc ol li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 11px;
    line-height: 1.7;
}
.psingle-desc ol li::before {
    content: '\203A';          /* › */
    position: absolute;
    left: 4px;
    top: 0;
    color: #e94560;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.5;
}

/* Tables inside description — premium look */
.psingle-desc table {
    width: 100%;
    margin: 0 0 20px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e8ecf8;
    border-radius: 12px;
    overflow: hidden;
}
.psingle-desc table td,
.psingle-desc table th {
    padding: 13px 18px;
    border: none;
    border-bottom: 1px solid #eef1f8;
    font-size: 14px;
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
}
.psingle-desc table th {
    background: #0f3460;
    color: #fff;
    font-weight: 700;
}
.psingle-desc table tr td:first-child {
    font-weight: 700;
    color: #0f3460;
    background: #f8f9fd;
    width: 42%;
    border-right: 1px solid #eef1f8;
}
.psingle-desc table tr td:last-child { color: #5a6480; }
.psingle-desc table tr:last-child td { border-bottom: none; }
.psingle-desc table tr:hover td { background: #fef6f7; }
.psingle-desc table tr:hover td:first-child { background: #fdeef1; }

/* ---- Enquiry form ---- */
.psingle-enquiry {
    background: linear-gradient(150deg, #0a1f3c 0%, #0f3460 60%, #112c54 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.psingle-enquiry::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(233,69,96,.18), transparent 38%),
        radial-gradient(circle at 88% 82%, rgba(245,166,35,.14), transparent 40%);
    pointer-events: none;
}
.psingle-enquiry-head,
.psingle-form { position: relative; z-index: 2; }

.psingle-enquiry-head { text-align: center; max-width: 620px; margin: 0 auto 26px; }
.psingle-enquiry-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f5a623;
    background: rgba(245,166,35,.12);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
}
.psingle-enquiry-head h2, .psingle-enquiry-head .psingle-enquiry-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.25;
}
.psingle-enquiry-head h2 span, .psingle-enquiry-head .psingle-enquiry-title span { color: #e94560; }
.psingle-enquiry-head p { font-size: 14px; color: rgba(255,255,255,.6); margin: 0; }

.psingle-form { max-width: 680px; margin: 0 auto; }
.psingle-form-row { display: flex; gap: 16px; }
.psingle-field { flex: 1; margin-bottom: 16px; }
.psingle-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.7);
    margin-bottom: 6px;
}
.psingle-field label span { color: #e94560; }
.psingle-form .form-control {
    height: 48px;
    border: 1.5px solid rgba(255,255,255,.14);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 14px;
    padding: 0 16px;
    transition: all .2s;
    width: 100%;
}
.psingle-form textarea.form-control { height: auto; padding: 12px 16px; resize: vertical; }
.psingle-form .form-control::placeholder { color: rgba(255,255,255,.4); }
.psingle-form .form-control:focus {
    outline: none;
    border-color: #f5a623;
    background: rgba(255,255,255,.1);
    box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
.psingle-captcha { margin: 4px 0 18px; }
.psingle-submit {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 52px;
    padding: 0 36px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #e94560, #f5a623);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .4px;
    cursor: pointer;
    transition: all .28s;
    box-shadow: 0 8px 22px rgba(233,69,96,.35);
}
.psingle-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(233,69,96,.45); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .psingle-gallery { position: static; }
    .psingle .xzoom, .psingle #xzoom-default { height: 360px; }
}
@media (max-width: 767px) {
    .psingle { padding: 16px 0 50px; }
    .psingle .xzoom-container { padding: 16px; }
    .psingle .xzoom, .psingle #xzoom-default { height: 300px; }
    .psingle-info { padding: 24px 20px; }
    .psingle-section { padding: 24px 20px; }
    .psingle-enquiry { padding: 30px 20px; }
    .psingle-form-row { flex-direction: column; gap: 0; }
    .psingle-cta { flex-direction: column; }
    .psingle-btn-wa, .psingle-btn-call { flex: 1 1 100%; }
    .psingle-spec table td, .psingle-spec table th { padding: 11px 13px; font-size: 13px; }
    .psingle-spec table tr td:first-child { width: 42%; }
    /* let wide tables scroll instead of breaking the layout */
    .psingle-spec, .psingle-desc { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
@media (max-width: 420px) {
    .ptrust { min-width: 100%; }
    .psingle-captcha { transform: scale(.86); transform-origin: left center; }
}

/* ============================================================
   STATIC PAGES — HERO / ABOUT / CONTACT / CTA
============================================================ */
.page-hero{ position:relative; overflow:hidden; padding:70px 0 60px; text-align:center;
  background:linear-gradient(150deg,#0a0a1a 0%,#0f3460 60%,#112c54 100%); color:#fff; }
.page-hero-bg{ position:absolute; inset:0; background:
  radial-gradient(circle at 16% 20%, rgba(233,69,96,.22), transparent 42%),
  radial-gradient(circle at 86% 82%, rgba(245,166,35,.16), transparent 45%); }
.page-hero .container{ position:relative; z-index:2; }
.page-crumb{ font-size:13px; color:rgba(255,255,255,.55); margin-bottom:18px; }
.page-crumb a{ color:rgba(255,255,255,.8) !important; text-decoration:none !important; }
.page-crumb a:hover{ color:#f5a623 !important; }
.page-crumb span{ margin:0 6px; color:#c2c9de; }
.page-hero-tag{ display:inline-block; font-size:11px; font-weight:800; letter-spacing:2px; text-transform:uppercase;
  color:#f5a623; background:rgba(245,166,35,.12); padding:6px 16px; border-radius:30px; margin-bottom:16px; }
.page-hero-title{ font-size:clamp(28px,4vw,42px); font-weight:900; margin:0 0 14px; line-height:1.15; }
.page-hero-title span{ background:linear-gradient(90deg,#e94560,#f5a623); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.page-hero-sub{ font-size:15px; color:rgba(255,255,255,.62); max-width:620px; margin:0 auto; line-height:1.75; }

/* About */
.about-intro{ padding:70px 0; background:#fff; }
.about-img{ position:relative; border-radius:18px; overflow:hidden; box-shadow:0 20px 50px rgba(15,52,96,.14); }
.about-img img{ width:100%; height:420px; object-fit:cover; display:block; }
.about-img-badge{ position:absolute; left:20px; bottom:20px; background:linear-gradient(135deg,#e94560,#c0334f);
  color:#fff; padding:12px 18px; border-radius:12px; font-size:13px; font-weight:700; box-shadow:0 10px 24px rgba(233,69,96,.4); }
.about-img-badge span{ display:block; font-size:26px; font-weight:900; line-height:1; }
.about-h2{ font-size:clamp(24px,3vw,32px); font-weight:900; color:#0f3460; line-height:1.25; margin:10px 0 16px; }
.about-text p{ font-size:14.5px; line-height:1.85; color:#5a6480; margin:0 0 14px; }
.about-cta-btn{ display:inline-flex; align-items:center; gap:9px; height:50px; padding:0 26px; border-radius:12px; margin-top:8px;
  background:linear-gradient(135deg,#0f3460,#1a4a80); color:#fff !important; font-weight:700; font-size:14px; text-decoration:none !important; transition:all .28s; }
.about-cta-btn:hover{ background:linear-gradient(135deg,#e94560,#c0334f); transform:translateY(-2px); }
.about-why{ padding:70px 0; background:#f6f8fc; }
.about-feat{ background:#fff; border:1px solid #eaeefa; border-radius:16px; padding:28px 24px; height:100%; transition:transform .25s, box-shadow .25s; }
.about-feat:hover{ transform:translateY(-6px); box-shadow:0 18px 44px rgba(15,52,96,.1); }
.about-feat-ic{ width:54px; height:54px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#e94560,#c0334f); color:#fff; font-size:24px; margin-bottom:16px; box-shadow:0 8px 20px rgba(233,69,96,.3); }
.about-feat h3{ font-size:17px; font-weight:800; color:#0f3460; margin:0 0 8px; }
.about-feat p{ font-size:13.5px; color:#6b7494; line-height:1.7; margin:0; }

/* CTA banner */
.page-cta{ padding:54px 0; background:#fff; }
.page-cta-inner{ background:linear-gradient(135deg,#0f3460,#1a4a80); border-radius:20px; padding:38px 44px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; position:relative; overflow:hidden; }
.page-cta-inner::after{ content:''; position:absolute; right:-40px; top:-40px; width:200px; height:200px; border-radius:50%; background:radial-gradient(circle,rgba(245,166,35,.25),transparent 70%); }
.page-cta-inner h2{ font-size:24px; font-weight:900; color:#fff; margin:0 0 6px; position:relative; z-index:2; }
.page-cta-inner p{ font-size:14px; color:rgba(255,255,255,.65); margin:0; position:relative; z-index:2; }
.page-cta-actions{ display:flex; gap:12px; position:relative; z-index:2; }
.page-cta-btn,.page-cta-btn-wa{ display:inline-flex; align-items:center; height:48px; padding:0 26px; border-radius:11px; font-weight:700; font-size:14px; text-decoration:none !important; transition:all .28s; }
.page-cta-btn{ background:linear-gradient(135deg,#e94560,#f5a623); color:#fff !important; box-shadow:0 8px 20px rgba(233,69,96,.35); }
.page-cta-btn:hover{ transform:translateY(-2px); }
.page-cta-btn-wa{ background:rgba(255,255,255,.12); color:#fff !important; border:1.5px solid rgba(255,255,255,.25); }
.page-cta-btn-wa:hover{ background:#25d366; border-color:#25d366; }

/* Contact */
.contact-sec{ padding:60px 0; background:#f6f8fc; }
.contact-cards{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:24px; }
.contact-card{ display:flex; align-items:center; gap:14px; background:#fff; border:1px solid #eaeefa; border-radius:14px; padding:16px 18px; text-decoration:none !important; transition:transform .2s, box-shadow .2s; }
.contact-card:hover{ transform:translateY(-3px); box-shadow:0 12px 28px rgba(15,52,96,.1); }
.contact-ic{ width:46px; height:46px; border-radius:12px; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:#fff; font-size:19px; }
.contact-k{ display:block; font-size:11px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; color:#8a95b8; }
.contact-v{ display:block; font-size:14px; font-weight:700; color:#0f3460; word-break:break-word; }
.contact-form-card{ background:#fff; border:1px solid #eaeefa; border-radius:20px; padding:0; box-shadow:0 14px 50px rgba(15,52,96,.08); overflow:hidden; }
.contact-form-card .cf-head{ padding:28px 32px 22px; background:linear-gradient(135deg,#0f3460 0%,#1a4a80 100%); position:relative; }
.contact-form-card .cf-head::after{ content:''; position:absolute; left:0; right:0; bottom:0; height:3px; background:linear-gradient(90deg,#e94560,#f5a623); }
.cf-tag{ display:inline-block; font-size:10.5px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:#f5a623; margin-bottom:8px; }
.contact-form-card h3{ font-size:22px; font-weight:900; color:#fff; margin:0 0 6px; }
.contact-form-card .cf-head p{ font-size:13px; color:rgba(255,255,255,.6); margin:0; line-height:1.6; }
.contact-form-card form{ padding:28px 32px 30px; }
.cf-row{ display:flex; gap:16px; }
.cf-field{ flex:1; margin-bottom:16px; }
.cf-label{ display:block; font-size:12px; font-weight:700; color:#4a5578; margin-bottom:7px; letter-spacing:.2px; }
.cf-label span{ color:#e94560; }
.cf-input{ width:100%; height:48px; border:1.5px solid #e4e8f2; border-radius:11px; padding:0 16px; font-size:14px; color:#0f3460; background:#f8f9fd; outline:none; transition:all .2s; font-family:inherit; }
.cf-input::placeholder{ color:#aab2c8; }
.cf-textarea{ height:auto; padding:13px 16px; resize:vertical; min-height:110px; line-height:1.6; }
.cf-input:focus{ border-color:#0f3460; background:#fff; box-shadow:0 0 0 3px rgba(15,52,96,.1); }
.cf-select{ appearance:none; -webkit-appearance:none; cursor:pointer; padding-right:38px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230f3460' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 15px center; }
.cf-captcha{ transform:scale(.96); transform-origin:left center; }
.cf-submit{ display:inline-flex; align-items:center; gap:9px; height:52px; padding:0 32px; border:none; border-radius:12px;
  background:linear-gradient(135deg,#e94560,#c0334f); color:#fff; font-size:15px; font-weight:800; letter-spacing:.3px; cursor:pointer; transition:all .28s; box-shadow:0 8px 22px rgba(233,69,96,.35); }
.cf-submit:hover{ transform:translateY(-2px); box-shadow:0 12px 30px rgba(233,69,96,.45); }
.cf-assure{ font-size:12px; color:#8a95b8; font-weight:600; margin:16px 0 0; display:flex; align-items:center; gap:7px; }
.cf-assure i{ color:#22c55e; font-size:11px; }
/* Get in Touch panel (navy) */
.contact-panel{ position:sticky; top:20px; border-radius:20px; overflow:hidden;
  background:linear-gradient(155deg,#0a0a1a 0%,#0f3460 60%,#112c54 100%); box-shadow:0 18px 50px rgba(15,52,96,.2); }
.contact-panel .cp-bg{ position:absolute; inset:0; background:
  radial-gradient(circle at 80% 12%, rgba(233,69,96,.25), transparent 45%),
  radial-gradient(circle at 15% 90%, rgba(245,166,35,.18), transparent 48%); }
.cp-inner{ position:relative; z-index:2; padding:34px 32px; color:#fff; }
.cp-tag{ display:inline-block; font-size:10.5px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:#f5a623; margin-bottom:8px; }
.cp-title{ font-size:24px; font-weight:900; color:#fff; margin:0 0 8px; }
.cp-sub{ font-size:13.5px; color:rgba(255,255,255,.6); line-height:1.7; margin:0 0 24px; }
.cp-list{ display:flex; flex-direction:column; gap:12px; margin-bottom:24px; }
.cp-item{ display:flex; align-items:center; gap:14px; text-decoration:none !important;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:13px; padding:13px 15px; transition:all .22s; }
.cp-item:not(.cp-item-static):hover{ background:rgba(255,255,255,.1); transform:translateX(3px); }
.cp-ic{ width:44px; height:44px; border-radius:12px; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:#fff; font-size:18px; box-shadow:0 6px 16px rgba(0,0,0,.25); }
.cp-meta{ display:flex; flex-direction:column; min-width:0; }
.cp-meta small{ font-size:11px; font-weight:700; letter-spacing:.4px; text-transform:uppercase; color:rgba(255,255,255,.5); }
.cp-meta b{ font-size:14.5px; font-weight:700; color:#fff; word-break:break-word; line-height:1.4; }
.cp-hours{ background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:13px; padding:16px 18px; margin-bottom:22px; }
.cp-hours-title{ font-size:13px; font-weight:800; color:#f5a623; margin-bottom:10px; display:flex; align-items:center; gap:8px; }
.cp-hr{ display:flex; justify-content:space-between; font-size:13px; padding:5px 0; color:rgba(255,255,255,.7); font-weight:600; }
.cp-hr span:last-child{ color:#fff; font-weight:700; }
.cp-social{ display:flex; gap:10px; }
.cp-social a{ width:42px; height:42px; border-radius:11px; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.08); color:#fff; font-size:16px; transition:all .25s; text-decoration:none !important; }
.cp-social a:hover{ background:linear-gradient(135deg,#e94560,#c0334f); transform:translateY(-3px); }

@media (max-width:767px){
  .about-img img{ height:300px; }
  .about-intro,.about-why,.contact-sec{ padding:44px 0; }
  .contact-cards{ grid-template-columns:1fr; }
  .cf-row{ flex-direction:column; gap:0; }
  .page-cta-inner{ padding:28px 24px; }
  .page-cta-actions{ width:100%; }
  .page-cta-btn,.page-cta-btn-wa{ flex:1; justify-content:center; }
}

/* ============================================================
   INLINE FORM VALIDATION (inquiry forms: popup, product, contact)
============================================================ */
.field-error { display: block; color: #e94560; font-size: 12.5px; font-weight: 500; margin-top: 5px; line-height: 1.4; }
.is-invalid { border-color: #e94560 !important; box-shadow: 0 0 0 2px rgba(233,69,96,.12) !important; }

/* Inquiry forms use custom inline validation — never show Bootstrap's native ✕ icon /
   auto-invalid border (which can linger after a successful submit) */
form[action*="save_order"] .form-control,
form[action*="save_order"] .enq-input,
#contactForm .cf-input { background-image: none !important; }
form[action*="save_order"].was-validated .form-control:invalid:not(.is-invalid),
#contactForm.was-validated .cf-input:invalid:not(.is-invalid) {
    border-color: rgba(15,52,96,.18) !important;
    box-shadow: none !important;
}
