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

:root {
    --blue: #0a3d8f;
    --blue-mid: #1557c0;
    --blue-light: #e8f0fc;
    --orange: #f47c20;
    --orange-dk: #d96510;
    --white: #ffffff;
    --off-white: #f7f9fe;
    --gray: #6b7280;
    --dark: #0d1b2e;
    --border: #dce7f8;
    --shadow: 0 4px 24px rgba(10, 61, 143, .10);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--off-white);
    color: var(--dark);
    overflow-x: hidden
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif !important;
}

p {
    font-family: 'Poppins', sans-serif !important;
}

a {
    font-family: 'Roboto', sans-serif;
}

/* TOP BAR */
.top-bar {
    background: linear-gradient(90deg, var(--blue) 0%, #0d4faf 100%);
    color: #fff;
    font-size: .78rem;
    font-weight: 500;
    overflow: hidden
}

.top-bar-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px;
    gap: 12px;
    flex-wrap: wrap
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 14px
}

.top-bar-left a {
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .76rem;
    transition: color .2s
}

.top-bar-left a:hover {
    color: var(--orange)
}

.top-bar-left .mail-link i {
    color: var(--orange)
}

.social-icons {
    display: flex;
    gap: 6px
}

.social-icons a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .88);
    font-size: .75rem;
    transition: background .2s, color .2s;
    text-decoration: none
}

.social-icons a:hover {
    background: var(--orange);
    color: #fff
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px
}

.top-bar-right a,
.top-bar-right span {
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
    font-size: .76rem;
    cursor: pointer
}

.top-bar-right a:hover,
.top-bar-right span:hover {
    color: var(--orange)
}

/* MAIN HEADER */
.main-header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 900
}

.header-core {
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none
}

.logo-icon {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center
}

.logo-icon img {
    height: 100%;
    width: auto;
    object-fit: contain
}

.logo-fallback {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.4rem
}

.cat-select-wrap {
    flex-shrink: 0
}

.cat-select {
    appearance: none;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 36px 11px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    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 fill='%23fff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center
}

.cat-select option {
    background: var(--dark);
    color: #fff
}

.search-bar {
    flex: 1;
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--off-white);
    transition: border-color .2s, box-shadow .2s
}

.search-bar:focus-within {
    border-color: var(--blue-mid);
    box-shadow: 0 0 0 4px rgba(21, 87, 192, .1)
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 11px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    color: var(--dark);
    outline: none
}

.search-bar input::placeholder {
    color: #aab4c4
}

.search-btn {
    background: var(--orange);
    border: none;
    padding: 11px 18px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s
}

.search-btn:hover {
    background: var(--orange-dk)
}

.hotline {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.hotline-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-light);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: .95rem;
    animation: ring 3s infinite
}

@keyframes ring {

    0%,
    90%,
    100% {
        transform: rotate(0)
    }

    92% {
        transform: rotate(-12deg)
    }

    94% {
        transform: rotate(12deg)
    }

    96% {
        transform: rotate(-8deg)
    }

    98% {
        transform: rotate(8deg)
    }
}

.hotline-text span {
    display: block;
    font-size: .68rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em
}

.hotline-text strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--blue)
}

.mob-actions {
    display: none;
    align-items: center;
    gap: 4px;
    margin-left: auto
}

.mob-btn {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: none;
    background: transparent;
    color: var(--blue);
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background .2s, color .2s
}

.mob-btn:hover {
    background: var(--blue-light);
    color: var(--orange)
}

.ham-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: all .3s;
    margin: 3px auto
}

.mob-btn.hamburger.is-open .ham-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

.mob-btn.hamburger.is-open .ham-line:nth-child(2) {
    opacity: 0
}

.mob-btn.hamburger.is-open .ham-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}

.mob-search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 29, 46, .6);
    backdrop-filter: blur(4px);
    align-items: flex-start;
    padding-top: 70px
}

.mob-search-overlay.open {
    display: flex
}

.mob-search-box {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px
}

.mob-search-box .search-bar {
    display: flex;
    background: #fff;
    border-color: var(--blue-mid);
    box-shadow: 0 8px 40px rgba(10, 61, 143, .25)
}

/* ══════════════════════
   DESKTOP NAV + MEGA MENU
══════════════════════ */
.nav-bar {
    background: linear-gradient(90deg, var(--blue) 0%, #0b4cbf 100%);
    border-top: 2px solid rgba(255, 255, 255, .1);
    position: relative;
    z-index: 800
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center
}

/* NO overflow:hidden — mega menu must escape nav-bar */

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s, background .2s;
    position: relative
}

.nav-link i {
    font-size: .9rem
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, .12)
}

.nav-link.all-link {
    background: rgba(255, 255, 255, .15);
    color: #fff
}

.nav-link.all-link:hover {
    background: rgba(255, 255, 255, .25)
}

/* nav-item: position:static so mega uses nav-bar as containing block */
.nav-item {
    position: static
}

.nav-item .arr {
    margin-left: 4px;
    font-size: .68rem;
    transition: transform .25s
}

.nav-item:hover>.nav-link .arr {
    transform: rotate(180deg)
}

.nav-item:hover>.nav-link {
    background: rgba(255, 255, 255, .12);
    color: #fff
}

/* ── MEGA MENU ── */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: min(1260px, 96vw);
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 24px 64px rgba(10, 61, 143, .18);
    border-top: 3px solid var(--orange);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, transform .25s, visibility .25s;
    z-index: 999;
    overflow: hidden;
    pointer-events: none;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.mega-inner {
    display: flex;
    padding: 32px 36px;
    gap: 0;
    align-items: stretch
}

/* columns */
.mega-cols {
    display: flex;
    flex: 1;
    gap: 0
}

.mega-col {
    flex: 1;
    padding: 0 28px 0 0;
    border-right: 1px solid var(--border);
    margin-right: 28px;
}

.mega-col:last-of-type {
    border-right: none;
    margin-right: 0
}

.mega-col-title {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    padding-bottom: 9px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.mega-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1px
}

.mega-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-size: .84rem;
    font-weight: 300;
    transition: background .15s, color .15s, padding-left .15s;
    line-height: 1.3;
}

.mega-col ul li a i {
    color: var(--blue-mid);
    font-size: .7rem;
    width: 13px;
    flex-shrink: 0;
    opacity: .5;
    transition: opacity .15s;
}

.mega-col ul li a:hover {
    background: var(--blue-light);
    color: var(--blue);
    padding-left: 14px;
}

.mega-col ul li a:hover i {
    opacity: 1
}

/* image panel */
.mega-image {
    width: 240px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    margin-left: 24px;
    position: relative;
    min-height: 210px;
}

.mega-image-fallback {
    width: 100%;
    height: 100%;
    min-height: 210px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 22px;
    position: relative;
    overflow: hidden;
}

/* each category gets its own gradient */
.mega-image-fallback.laser {
    background: linear-gradient(135deg, #0a3d8f 0%, #0d2b6e 100%)
}

.mega-image-fallback.hydra {
    background: linear-gradient(135deg, #0d5c8a 0%, #0a7fc0 100%)
}

.mega-image-fallback.inj {
    background: linear-gradient(135deg, #1a4f3a 0%, #2a7d5a 100%)
}

.mega-image-fallback.aes {
    background: linear-gradient(135deg, #4a1280 0%, #7c3aed 100%)
}

.mega-image-fallback.other {
    background: linear-gradient(135deg, #7c1d1d 0%, #b91c1c 100%)
}

.mega-image-fallback::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(244, 124, 32, .2);
}

.mega-image-fallback::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}

.mega-cat-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .06em;
    text-transform: uppercase;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 1;
}

.mega-image-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange);
    color: #fff;
    font-size: .74rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 20px;
    text-decoration: none;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 16px rgba(244, 124, 32, .4);
}

.mega-image-cta:hover {
    background: var(--orange-dk);
    transform: translateY(-2px)
}

/* ── MOBILE DRAWER ── */
.mob-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(10, 29, 46, .6);
    backdrop-filter: blur(3px)
}

.mob-nav-overlay.open {
    display: block
}

.mob-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: min(300px, 88vw);
    height: 100vh;
    background: #fff;
    z-index: 1600;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.77, 0, .175, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -6px 0 30px rgba(10, 61, 143, .18)
}

.mob-nav-drawer.open {
    right: 0
}

.mob-drawer-head {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0
}

.mob-drawer-logo {
    display: flex;
    align-items: center
}

.mob-drawer-logo img {
    width: auto;
    object-fit: contain;
}

.mob-drawer-close {
width: 25px;
    height: 25px;
    /* border-radius: 50%; */
    background: #747474;
    border: none;
    color: var(--off-white);
    font-size: 1rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s;
}

.mob-drawer-close:hover {
    background: rgba(255, 255, 255, .3)
}

.mob-nav-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0
}

.mob-all-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 700
}

.mob-nav-item {
    border-bottom: 1px solid var(--border)
}

.mob-nav-row {
    display: flex;
    align-items: center
}

.mob-nav-main {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--dark);
    font-size: .9rem;
    font-weight: 600;
    transition: color .2s
}

.mob-nav-main i.cat-icon {
    color: var(--blue);
    width: 20px;
    text-align: center
}

.mob-nav-main:hover {
    color: var(--blue)
}

.mob-nav-toggle {
    width: 44px;
    height: 48px;
    border: none;
    background: transparent;
    color: var(--gray);
    font-size: .9rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: color .2s, background .2s;
    border-left: 1px solid var(--border);
    flex-shrink: 0
}

.mob-nav-toggle:hover {
    background: var(--blue-light);
    color: var(--blue)
}

.mob-nav-toggle i {
    transition: transform .3s
}

.mob-nav-toggle.open i {
    transform: rotate(180deg)
}

.mob-sub-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: var(--off-white)
}

.mob-sub-list.open {
    max-height: 400px
}

.mob-sub-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px 11px 52px;
    text-decoration: none;
    color: var(--gray);
    font-size: .83rem;
    border-bottom: 1px solid var(--border);
    transition: color .2s, background .2s
}

.mob-sub-list a:last-child {
    border-bottom: none
}

.mob-sub-list a i {
    color: var(--blue-mid);
    font-size: .75rem
}

.mob-sub-list a:hover {
    color: var(--blue);
    background: var(--blue-light)
}

.mob-drawer-footer {
    padding: 18px 20px;
    border-top: 1px solid var(--border);
    background: var(--off-white);
    flex-shrink: 0
}

.mob-drawer-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    text-decoration: none;
    color: var(--blue);
    font-size: .85rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border)
}

.mob-drawer-footer a:last-child {
    border-bottom: none
}

.mob-drawer-footer a i {
    color: var(--orange);
    width: 16px;
    text-align: center
}

/* TICKER */
.ticker-bar {
    background: var(--blue-light);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 8px 0
}

.ticker-track {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap
}

.ticker-bar:hover .ticker-track {
    animation-play-state: paused
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: .02em;
    text-transform: uppercase
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    height: 520px
}

@media(max-width:768px) {
    .hero {
        height: 400px
    }
}

@media(max-width:480px) {
    .hero {
        height: 350px
    }
}

.slides-container {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform .7s cubic-bezier(.77, 0, .175, 1)
}

.slide {
    width: calc(100%/3);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center
}

.slide-1 {
    background: linear-gradient(120deg, #0a3d8f 0%, #1557c0 55%, #0d2b6e 100%)
}

.slide-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Ccircle cx='520' cy='80' r='200' fill='rgba(244,124,32,0.12)'/%3E%3Ccircle cx='560' cy='500' r='140' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") right center/cover no-repeat
}

.slide-2 {
    background: linear-gradient(120deg, #0d2b6e 0%, #f47c20 100%)
}

.slide-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Crect x='300' y='-100' width='400' height='400' rx='60' fill='rgba(255,255,255,0.06)' transform='rotate(30 300 300)'/%3E%3C/svg%3E") right 5% center/50% no-repeat
}

.slide-3 {
    background: linear-gradient(120deg, #051d47 0%, #0a3d8f 60%, #1557c0 100%)
}

.slide-3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='520'%3E%3Cellipse cx='350' cy='260' rx='300' ry='260' fill='rgba(244,124,32,0.15)'/%3E%3C/svg%3E") center/cover
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%
}

.slide-tag {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px
}

.slide-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 580px
}

.slide-heading span {
    color: var(--orange)
}

.slide-sub {
    font-size: clamp(.85rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, .78);
    max-width: 480px;
    line-height: 1.65;
    margin-bottom: 30px;
    font-weight: 300
}

.slide-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(244, 124, 32, .35)
}

.btn-primary:hover {
    background: var(--orange-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(244, 124, 32, .45)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, .5);
    transition: border-color .2s, background .2s
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1)
}

.slide-stat-cards {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px
}

.stat-card {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    padding: 14px 20px;
    color: #fff;
    min-width: 160px
}

.stat-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange)
}

.stat-card .lbl {
    font-size: .72rem;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 2px
}

.slider-arrows {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 10
}

.arr-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s, border-color .2s;
    backdrop-filter: blur(6px)
}

.arr-btn:hover {
    background: var(--orange);
    border-color: var(--orange)
}

.slider-dots {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, .3);
    transition: all .3s
}

.dot.active {
    background: var(--orange);
    border-color: var(--orange);
    width: 28px;
    border-radius: 5px
}

.slide-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--orange);
    z-index: 10;
    animation: progress-fill 5s linear infinite
}

@keyframes progress-fill {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* TRUST */
.trust-strip {
    background: #fff;
    border-top: 3px solid var(--orange);
    box-shadow: var(--shadow)
}

.trust-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-right: 1px solid var(--border);
    transition: background .2s
}

.trust-item:last-child {
    border-right: none
}

.trust-item:hover {
    background: var(--off-white)
}

.trust-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--blue-light) 0%, #d0e2ff 100%);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 1.15rem;
    flex-shrink: 0
}

.trust-text strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3
}

.trust-text span {
    font-size: .75rem;
    color: var(--gray)
}

/* CATEGORY SECTIONS */
.cat-sections {
    max-width: 1300px;
    margin: 0 auto;
    padding: 48px 24px 60px;
    display: flex;
    flex-direction: column;
    gap: 52px
}

.cat-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px
}

.cat-section-title {
    display: flex;
    align-items: center;
    gap: 12px
}

.cat-section-title .cat-icon-wrap {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1rem
}

.cat-section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark)
}

.cat-section-title p {
    font-size: .78rem;
    color: var(--gray);
    margin-top: 1px
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s;
    border: 1px solid var(--border);
    flex-shrink: 0
}

.view-all-btn:hover {
    background: var(--blue);
    color: #fff
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.prod-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
    display: flex;
    flex-direction: column
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(10, 61, 143, .13)
}

.prod-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.prod-img {
    position: relative;
    background: var(--blue-light);
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s ease;
}

.prod-img .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.prod-card:hover .img-hover {
    opacity: 1;
}

.prod-card:hover .img-main {
    opacity: 0;
}

.prod-img .prod-icon {
    font-size: 4rem;
    color: var(--blue);
    opacity: .3
}

.prod-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: .06em;
    text-transform: uppercase
}

.prod-badge.blue {
    background: var(--blue)
}

.prod-badge.green {
    background: #16a34a
}

.prod-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.prod-cat {
    font-size: .7rem;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 5px
}

.prod-name {
    font-size: .92rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 8px
}

.prod-desc {
    font-size: .78rem;
    color: var(--gray);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 12px
}

.prod-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border)
}

.prod-price {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.prod-price .old-price {
    font-size: .8rem;
    color: var(--gray);
    text-decoration: line-through;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500
}

.prod-price .curr-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue);
}

.prod-price small {
    font-size: .7rem;
    font-weight: 500;
    color: var(--gray);
    font-family: 'DM Sans', sans-serif;
    display: block
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    text-decoration: none
}

.quote-btn:hover {
    background: var(--orange-dk);
    transform: translateY(-1px)
}

.section-divider {
    height: 1px;
    background: var(--border);
    position: relative
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -2px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px
}

/* RESPONSIVE */
@media(max-width:1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .slide-stat-cards {
        display: none
    }

    .mega-image {
        width: 200px
    }
}

@media(max-width:900px) {
    .hotline {
        display: none
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .nav-bar {
        display: none
    }

    .cat-select-wrap {
        display: none
    }

    .search-bar {
        display: none
    }

    .mob-actions {
        display: flex
    }

    .trust-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .trust-item:nth-child(2) {
        border-right: none
    }

    .slide-content {
        padding: 0 30px
    }

    .cat-sections {
        padding: 28px 16px 40px;
        gap: 36px
    }

    .cat-section-title h2 {
        font-size: 1.15rem
    }
}

@media(max-width:540px) {
    .trust-inner {
        grid-template-columns: 1fr 1fr
    }

    .trust-item {
        padding: 14px 12px;
        gap: 10px
    }

    .top-bar-right {
        gap: 12px
    }

    .header-core {
        padding: 10px 16px
    }

    .slide-content {
        padding: 0 20px
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .prod-img {
        height: 150px
    }
}

@media(max-width:400px) {
    .trust-inner {
        grid-template-columns: 1fr
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--border)
    }

    .top-bar-left .mail-link span {
        display: none
    }
}

/* -----------------------------------------
   NEWSLETTER / PRE-FOOTER
---------------------------------------- */
.pre-footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pre-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.pre-footer-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 8px;
}

.newsletter-form {
  display: flex;
  background: #fff;
  padding: 6px;
  border-radius: 50px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.newsletter-form input {
  border: none;
  padding: 10px 25px;
  font-size: 0.9rem;
  outline: none;
  width: 300px;
  border-radius: 50px;
}

.newsletter-form button {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: var(--orange);
}

/* -----------------------------------------
   MAIN FOOTER
---------------------------------------- */
.site-footer {
  background: #fff;
  padding-top: 80px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 60px;
  padding: 0 32px 60px;
}

/* Brand Section */
.ft-logo-fallback {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 25px;
}

.ft-logo-mark {
  width: 45px; height: 45px;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  border-radius: 12px;
  font-size: 1.2rem;
}

.ft-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
}

.ft-logo-name span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

.ft-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 25px;
  max-width: 320px;
}

.ft-socials {
  display: flex;
  gap: 12px;
}

.ft-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--blue);
  text-decoration: none;
  transition: 0.3s;
}

.ft-social:hover {
  background: var(--blue);
  color: #fff;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 46, 0.95);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 40px;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox.open .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.lightbox-close:hover {
  transform: scale(1.1);
  background: var(--orange);
}

/* ── IMAGE PREVIEW OVERLAY ── */
.main-img-wrap, .thumb {
  position: relative;
  cursor: pointer;
}

.preview-icon-trigger {
  position: absolute;
  inset: 0;
  background: rgba(10, 61, 143, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 5;
}

.main-img-wrap:hover .preview-icon-trigger,
.thumb:hover .preview-icon-trigger {
  opacity: 1;
}

.thumb .preview-icon-trigger {
  font-size: 1rem;
}

/* ── ABOUT COSMEX SECTION ── */
.about-cosmex {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--blue);
    margin-bottom: 25px;
}

.section-heading span {
    color: var(--orange);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 25px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 35px 0;
}

.stat-item .stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.stat-item .stat-lbl {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.warranty-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--off-white);
    padding: 15px 25px;
    border-radius: 12px;
    border-left: 4px solid var(--orange);
}

.warranty-badge i {
    font-size: 1.8rem;
    color: var(--orange);
}

.warranty-badge span {
    font-size: 0.95rem;
    color: var(--blue);
}

.about-feature-box {
    background: var(--blue);
    padding: 45px;
    border-radius: 24px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(10, 61, 143, 0.2);
}

.box-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.why-list {
    list-style: none;
    margin-bottom: 30px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.why-list li i {
    color: var(--orange);
    font-size: 1.1rem;
    margin-top: 3px;
}

.origin-flags {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
}

.flag-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.6;
}

.flags {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ── FEATURES AREA ── */
.features-area {
    padding: 80px 0 100px;
    background: var(--off-white);
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    color: var(--blue);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(10, 61, 143, 0.1);
    border-color: var(--blue-mid);
}

.f-icon-box {
    width: 70px;
    height: 70px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 1.8rem;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.feature-card:hover .f-icon-box {
    background: var(--orange);
    color: #fff;
    transform: rotateY(360deg);
}

.feature-card h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .section-heading {
        font-size: 2.2rem;
    }
    .about-stats {
        gap: 25px;
    }
}

/* ── PAGE HEADER & CATEGORY PAGE ── */
.page-header-area {
    min-height: 300px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--orange);
}

.category-page {
    padding: 60px 0 100px;
    background: #fff;
}

.category-grid-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* ── FILTERS SIDEBAR ── */
.filters-sidebar {
    background: var(--off-white);
    padding: 30px;
    border-radius: 16px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h5 {
    font-size: 1.1rem;
    color: var(--blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}

.search-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(10, 61, 143, 0.1);
}

.price-range-list {
    list-style: none;
}

.price-range-list li {
    margin-bottom: 10px;
}

.price-range-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray);
}

.price-range-list input[type="radio"] {
    accent-color: var(--blue);
    width: 16px;
    height: 16px;
}

/* ── PRODUCT GRID OVERRIDE ── */
.category-products .prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1100px) {
    .category-grid-wrap {
        grid-template-columns: 1fr;
    }
    .filters-sidebar {
        position: static;
        margin-bottom: 40px;
    }
    .category-products .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .category-products .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── PRODUCT DETAIL PAGE ── */
.product-detail-area {
    padding: 60px 0 100px;
    background: #fff;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.main-img-wrap {
    background: var(--blue-light);
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}

.main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.main-img-wrap:hover img {
    transform: scale(1.05);
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
}

.thumb {
    width: 80px;
    height: 80px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s;
    position: relative;
}

.thumb.active {
    border-color: var(--blue);
    border-width: 2px;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-breadcrumb {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.detail-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.detail-breadcrumb a:hover {
    color: var(--orange);
}

.detail-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    color: var(--blue);
    margin-bottom: 20px;
}

.detail-prices {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.old-price {
    font-size: 1.2rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-right: 15px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    font-family: 'Playfair Display', serif;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 8px;
}

.detail-desc {
    line-height: 1.8;
    color: var(--dark);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.detail-actions {
    display: flex;
    gap: 20px;
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .detail-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .product-detail-area {
        padding: 40px 0 80px;
    }
    
    .detail-content h1 {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .detail-actions .btn-primary,
    .detail-actions .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
/* ─────────────────────────────────────────
   SOCIAL WIDGET
───────────────────────────────────────── */
.social-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.social-toggle {
  width: 60px;
  height: 60px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(10, 61, 143, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse-blue 2s infinite;
  text-decoration: none;
}

.social-toggle:hover {
  transform: scale(1.05);
  background: var(--blue-mid);
}

.social-icons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-widget.active .social-icons-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.social-btn.whatsapp { background: #25d366; }
.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

@keyframes pulse-blue {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(10, 61, 143, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(10, 61, 143, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(10, 61, 143, 0); }
}

@media (max-width: 600px) {
  .social-widget { bottom: 20px; right: 20px; }
  .social-toggle { width: 55px; height: 55px; font-size: 1.4rem; }
  .social-btn { width: 45px; height: 45px; font-size: 1.2rem; }
}

/* ─────────────────────────────────────────
   MOBILE TOP BAR REFINEMENTS
───────────────────────────────────────── */
@media (max-width: 768px) {
  .top-bar-left .mail-link,
  .top-bar-right span {
    display: none !important;
  }
  .top-bar-inner {
    justify-content: space-between !important;
  }
  .top-bar-left {
    order: 2;
  }
  .top-bar-right {
    order: 1;
  }

  .slider-arrows,
  .slider-dots {
    display: none !important;
  }
}

/* ─────────────────────────────────────────
   MOBILE TRUST STRIP
───────────────────────────────────────── */
@media (max-width: 900px) {
  .trust-strip {
    border-top: none;
    background: transparent;
    box-shadow: none;
    padding: 15px 0;
  }
  .trust-inner {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 7.5% !important;
    gap: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trust-inner::-webkit-scrollbar {
    display: none;
  }
  .trust-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
    border-right: none !important;
    background: #fff;
    border-radius: 16px;
    padding: 16px !important;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
  }
}

/* ─────────────────────────────────────────
   SKELETON LOADER
───────────────────────────────────────── */
.skeleton-bg {
    background: #e2e5e7;
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.5) 20%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200px 100%;
    background-repeat: no-repeat;
    animation: shimmer 1.5s infinite linear;
    border-radius: inherit;
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.img-skeleton {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.img-loaded {
    opacity: 1 !important;
}

/* ─────────────────────────────────────────
   MOBILE PRODUCT CARD & RELATED GRID REFINEMENTS
───────────────────────────────────────── */
@media (max-width: 600px) {
    /* Stack price and button vertically on mobile */
    .prod-foot {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }
    .prod-foot .quote-btn {
        width: 100% !important;
        justify-content: center !important;
    }
    .prod-foot .prod-price {
        align-items: flex-start !important;
    }
    
    /* Force 2 columns for 'You May Also Like' */
    .related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .related-grid .prod-body {
        padding: 12px !important;
    }
    .related-grid .prod-name {
        font-size: 0.85rem !important;
    }
    .related-grid .quote-btn,
    .category-products .quote-btn {
        font-size: 0.8rem !important;
        padding: 8px !important;
    }
    .category-products .prod-body {
        padding: 12px !important;
    }
    .category-products .prod-name {
        font-size: 0.85rem !important;
    }
}
