:root {
    --navy: #0b1f4d;
    --navy-deep: #071433;
    --blue: #0b63ce;
    --blue-light: #29a9e0;
    --pink: #e91e8c;
    --pink-deep: #c81466;
    --gold: #f5a623;
    --bg: #fbfaf8;
    --panel: #f2f0ea;
    --ink: #1b2233;
    --muted: #6b7280;
    --line: #e7e3da;
    --radius: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--ink);
    background: var(--bg);
    margin: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: "Outfit", sans-serif;
}

a {
    text-decoration: none;
}

.section-pad {
    padding: 88px 0;
}

@media (max-width: 768px) {
    .section-pad {
        padding: 56px 0;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pink-deep);
    background: rgba(233, 30, 140, 0.08);
    border: 1px solid rgba(233, 30, 140, 0.18);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 18px;
}

.eyebrow i {
    width: 14px;
    height: 14px;
}

.grad-text {
    background: linear-gradient(100deg, var(--blue) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-brand {
    background: var(--blue);
    color: #fff;
    border: none;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 12px 26px -14px rgba(11, 99, 206, 0.55);
}

.btn-brand i,
.btn-brand svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.btn-brand:hover {
    transform: translateY(-2px);
    background: #0956b3;
    color: #fff;
    box-shadow: 0 16px 30px -14px rgba(11, 99, 206, 0.65);
}

.btn-brand:hover i,
.btn-brand:hover svg {
    transform: translateX(3px);
}

.btn-outline-navy {
    border: 1.5px solid var(--navy);
    color: var(--navy);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    transition: 0.25s ease;
    cursor: pointer;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: #fff;
}


/* ============ TOP HEADER ============ */

.top-header {
    position: relative;
    background: linear-gradient(90deg, #06112c 0%, #0b1f4d 48%, #0a1840 100%);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.top-header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 14px;
    min-height: 36px;
    padding: 5px 0;
}

.top-header-left,
.top-header-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.top-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px 11px 3px 3px;
    border-radius: 999px;
    color: #eef2ff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 16px -12px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.top-pill-loc {
    cursor: default;
    background: linear-gradient(180deg, rgba(41, 169, 224, 0.14), rgba(255, 255, 255, 0.03));
    border-color: rgba(41, 169, 224, 0.28);
}

a.top-pill:hover {
    color: #fff;
    transform: translateY(-1px);
    border-color: rgba(41, 169, 224, 0.45);
    background: linear-gradient(180deg, rgba(11, 99, 206, 0.28), rgba(255, 255, 255, 0.05));
    box-shadow: 0 10px 22px -12px rgba(11, 99, 206, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.top-pill-ic {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background: linear-gradient(145deg, rgba(11, 99, 206, 0.55), rgba(41, 169, 224, 0.35));
    border: 1px solid rgba(125, 196, 255, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.top-pill-ic i,
.top-pill-ic svg {
    width: 12px;
    height: 12px;
    color: #fff;
    stroke-width: 2;
}

.top-pill-txt {
    font-family: "Outfit", sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
}

@media (max-width: 575.98px) {
    .top-header-inner {
        justify-content: center;
        min-height: 34px;
        padding: 4px 0;
    }

    .top-header-left,
    .top-header-right {
        justify-content: center;
    }

    .top-pill {
        padding: 2px 10px 2px 2px;
        gap: 6px;
    }

    .top-pill-ic {
        width: 20px;
        height: 20px;
    }

    .top-pill-ic i,
    .top-pill-ic svg {
        width: 11px;
        height: 11px;
    }

    .top-pill-txt {
        font-size: 0.7rem;
    }
}


/* ============ MAIN HEADER ============ */

.main-header {
    background: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 18px rgba(11, 31, 77, 0.06);
}

.main-header .navbar-brand img {
    height: 56px;
}

.main-nav .nav-link {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    color: var(--ink);
    padding: 8px 15px !important;
    border-radius: 10px;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}

.main-nav .nav-link:hover {
    color: var(--navy);
    background: rgba(11, 31, 77, 0.05);
}

.main-nav .nav-link.active {
    color: var(--pink-deep);
    background: rgba(233, 30, 140, 0.07);
}

.main-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 4px;
    height: 2px;
    background: var(--pink-deep);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-call {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px 6px 6px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #f8f9fc;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

a.header-call:hover {
    border-color: rgba(11, 99, 206, 0.35);
    background: #fff;
    box-shadow: 0 8px 18px -14px rgba(11, 99, 206, 0.45);
}

.header-call .ic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: none;
}

.header-call .ic i,
.header-call .ic svg {
    width: 20px;
    height: 20px;
}

.header-call small {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.2;
}

.header-call strong {
    font-family: "Outfit", sans-serif;
    color: var(--navy);
    font-size: 0.98rem;
    line-height: 1.2;
}

.header-cta {
    background: var(--blue);
    box-shadow: 0 12px 26px -14px rgba(11, 99, 206, 0.55);
}

.header-cta:hover {
    background: #0956b3;
    box-shadow: 0 16px 30px -14px rgba(11, 99, 206, 0.65);
}

.header-toggler {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex: none;
    transition: 0.25s ease;
}

.header-toggler:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.header-toggler i {
    width: 22px;
    height: 22px;
}


/* ============ MOBILE OFFCANVAS ============ */

.mobile-offcanvas {
    width: 86% !important;
    max-width: 380px;
    background: var(--navy-deep);
    color: #cfd8ef;
}

.mobile-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 22px;
}

.mobile-offcanvas .offcanvas-header img {
    height: 42px;
    filter: brightness(1.15);
}

.mobile-offcanvas .btn-close {
    filter: invert(1) grayscale(1) brightness(2);
    opacity: 0.8;
}

.mobile-offcanvas .offcanvas-body {
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
}

.mobile-nav-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 1.02rem;
    color: #fff;
    padding: 15px 4px;
    transition: 0.2s ease;
}

.mobile-nav-list a i {
    width: 19px;
    height: 19px;
    color: var(--gold);
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    color: var(--gold);
    padding-left: 8px;
}

.oc-title {
    font-family: "Outfit", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7d88ac;
    margin-bottom: 14px;
}

.oc-contact {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
}

.oc-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #cfd8ef;
}

.oc-contact li i {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex: none;
    margin-top: 2px;
}

.oc-social {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* ============ HERO ============ */

.hero {
    position: relative;
    background:
        radial-gradient(900px 420px at 92% 8%, rgba(41, 169, 224, 0.16), transparent 62%),
        radial-gradient(780px 380px at 4% 88%, rgba(233, 30, 140, 0.1), transparent 60%),
        linear-gradient(180deg, #f7f9fd 0%, var(--bg) 55%, #f4f1ea 100%);
    padding: 72px 0 56px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    opacity: 0.55;
    animation: hero-breathe 8s ease-in-out infinite;
}

.hero-glow-a {
    width: 280px;
    height: 280px;
    top: -60px;
    right: 12%;
    background: rgba(41, 169, 224, 0.28);
}

.hero-glow-b {
    width: 240px;
    height: 240px;
    left: -40px;
    bottom: 8%;
    background: rgba(233, 30, 140, 0.18);
    animation-delay: -3s;
}

.hero .grille-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 31, 77, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 31, 77, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 72% 28%, black, transparent 72%);
    pointer-events: none;
}

.hero-copy {
    animation: hero-rise 0.8s ease both;
}

.hero-brand {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin: 0 0 14px;
    line-height: 1.1;
}

.hero-copy .eyebrow {
    margin-bottom: 16px;
}

.hero-headline {
    font-size: clamp(2.1rem, 4vw, 3.15rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.hero-sub {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 18px 0 28px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-cta .btn-outline-navy i,
.hero-cta .btn-outline-navy svg,
.hero-cta .btn-brand i,
.hero-cta .btn-brand svg {
    width: 16px;
    height: 16px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 40px;
    padding: 18px 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(11, 31, 77, 0.08);
    box-shadow: 0 16px 36px -28px rgba(11, 31, 77, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-stat {
    padding: 4px 14px;
    text-align: left;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(11, 31, 77, 0.14), transparent);
}

.hero-stats .num {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 1.55rem;
    color: var(--navy);
    line-height: 1.15;
}

.hero-stats .lbl {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}


/* Door graphic ? signature element */

.door-stage {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1 / 1.08;
    margin: 0 auto;
    perspective: 1400px;
    animation: hero-rise 0.9s ease 0.12s both;
}

.door-aura {
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 6%;
    height: 42%;
    background: radial-gradient(ellipse at center, rgba(11, 99, 206, 0.2), transparent 70%);
    filter: blur(18px);
    pointer-events: none;
}

.arch-arc {
    position: absolute;
    top: 1%;
    left: 50%;
    width: 72%;
    height: 34%;
    border: 4px solid transparent;
    border-top-color: var(--gold);
    border-left-color: rgba(245, 166, 35, 0.55);
    border-right-color: rgba(245, 166, 35, 0.55);
    border-bottom: none;
    border-radius: 220px 220px 0 0;
    transform: translateX(-50%);
    opacity: 0.95;
    filter: drop-shadow(0 8px 16px rgba(245, 166, 35, 0.18));
}

.frame-shell {
    position: absolute;
    left: 7%;
    right: 7%;
    bottom: 10%;
    top: 22%;
    border: 5px solid;
    border-image: linear-gradient(180deg, var(--blue-light), var(--pink)) 1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(242, 240, 234, 0.35));
    box-shadow:
        0 28px 50px -28px rgba(11, 31, 77, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.door-base {
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 2%;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(11, 31, 77, 0.18), transparent 70%);
    filter: blur(2px);
}

.door-leaf {
    position: absolute;
    top: 7px;
    bottom: 7px;
    width: calc(50% - 7px);
    border-radius: 6px;
    transform-style: preserve-3d;
    animation: swing 5.2s ease-in-out infinite;
    box-shadow: 0 20px 34px -16px rgba(11, 31, 77, 0.4);
    overflow: hidden;
}

.door-leaf::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 42%);
    pointer-events: none;
}

.door-leaf.left {
    left: 7px;
    background: linear-gradient(145deg, #1a86ef 0%, #0b63ce 48%, #0a3f96 100%);
    transform-origin: left center;
}

.door-leaf.right {
    right: 7px;
    background: linear-gradient(145deg, #f047a3 0%, var(--pink) 48%, var(--pink-deep) 100%);
    transform-origin: right center;
    animation-name: swingR;
}

.pane-grid {
    position: absolute;
    inset: 11px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 7px;
}

.pane-grid span {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 3px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.handle-dot {
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff, #e8eef8);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.18);
}

.door-leaf.left .handle-dot {
    right: 11px;
}

.door-leaf.right .handle-dot {
    left: 11px;
}

@keyframes swing {
    0%,
    100% {
        transform: rotateY(-16deg);
    }
    50% {
        transform: rotateY(-28deg);
    }
}

@keyframes swingR {
    0%,
    100% {
        transform: rotateY(16deg);
    }
    50% {
        transform: rotateY(28deg);
    }
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-breathe {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.45;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.7;
    }
}

@media (max-width: 991.98px) {
    .hero {
        padding: 48px 0 40px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 0;
    }

    .hero-stat:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-stats {
        padding: 14px 6px;
    }

    .hero-stat {
        padding: 6px 10px;
    }

    .hero-stats .num {
        font-size: 1.35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .door-leaf,
    .hero-glow,
    .hero-copy,
    .door-stage {
        animation: none;
    }

    .door-leaf {
        transform: rotateY(-22deg);
    }

    .door-leaf.right {
        transform: rotateY(22deg);
    }

    .hero-copy,
    .door-stage {
        opacity: 1;
        transform: none;
    }
}


/* ============ SECTION HEADINGS ============ */

.sec-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
}

@media (max-width: 768px) {
    .sec-title {
        font-size: 1.6rem;
    }
}

.sec-sub {
    color: var(--muted);
    max-width: 600px;
}


/* ============ BEST SELLERS ============ */

.bestsellers-sec {
    position: relative;
    background:
        radial-gradient(560px 220px at 8% 0%, rgba(11, 99, 206, 0.08), transparent 70%),
        radial-gradient(480px 200px at 92% 100%, rgba(41, 169, 224, 0.1), transparent 65%),
        var(--panel);
}

.bestsellers-sec .cat-card-best {
    height: 100%;
}

.bestsellers-products {
    margin-top: 12px;
    padding-top: 28px;
    border-top: 1px solid rgba(11, 31, 77, 0.08);
}

.bestsellers-products-title {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    color: var(--navy);
    letter-spacing: -0.02em;
}

/* ============ CATEGORY SECTION ============ */

.categories-sec {
    position: relative;
    background:
        radial-gradient(700px 280px at 10% 0%, rgba(11, 99, 206, 0.06), transparent 70%),
        radial-gradient(640px 260px at 90% 100%, rgba(233, 30, 140, 0.05), transparent 70%),
        #fff;
}

.cat-card {
    display: block;
    background: #fff;
    border: 1px solid rgba(11, 31, 77, 0.08);
    border-radius: 18px;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    color: inherit;
}

.cat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(11, 99, 206, 0.22);
    box-shadow: 0 28px 48px -28px rgba(11, 31, 77, 0.4);
    color: inherit;
}

.cat-img {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.cat-card:hover .cat-img img {
    transform: scale(1.08);
}

.cat-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(7, 20, 51, 0.45) 100%);
    pointer-events: none;
}

.cat-count-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    font-family: "Outfit", sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 4px 9px;
    border-radius: 999px;
    color: #fff;
    background: var(--blue);
    box-shadow: 0 10px 18px -12px rgba(11, 99, 206, 0.7);
}

.cat-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 12px 16px;
    text-align: left;
}

.cat-card h5 {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 2px;
    color: var(--navy);
    line-height: 1.25;
}

.cat-body > div > span {
    font-size: 0.74rem;
    color: var(--muted);
}

.cat-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background: rgba(11, 31, 77, 0.05);
    border: 1px solid rgba(11, 31, 77, 0.08);
    color: var(--navy);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.cat-arrow i,
.cat-arrow svg {
    width: 14px;
    height: 14px;
}

.cat-card:hover .cat-arrow {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: rotate(45deg);
}

@media (max-width: 991.98px) {
    .cat-img {
        height: 170px;
    }

    .cat-card h5 {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .cat-img {
        height: 130px;
    }

    .cat-body {
        padding: 12px;
    }

    .cat-card h5 {
        font-size: 0.84rem;
    }

    .cat-arrow {
        width: 28px;
        height: 28px;
    }
}


/* ============ PRODUCT SECTION ============ */

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 36px -20px rgba(11, 31, 77, 0.28);
}

.product-img {
    height: 190px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 99px;
    color: #fff;
    background: var(--blue);
}

.wish-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-deep);
    border: none;
}

.wish-btn i {
    width: 17px;
    height: 17px;
}

.product-body {
    padding: 16px 18px 18px;
}

.product-cat {
    display: inline-block;
    font-family: "Outfit", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
}

.product-body h5 {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.product-body h5 a {
    color: inherit;
    text-decoration: none;
}

.product-body p {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
}

.price-row .price {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: var(--navy);
}

.price-row .price small {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.72rem;
}

.view-link {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--pink-deep);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.view-link i {
    width: 15px;
    height: 15px;
    transition: 0.25s;
}

.view-link:hover i {
    transform: translateX(3px);
}


/* ============ GALLERY ============ */

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    height: 260px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 0deg, rgba(7, 20, 51, 0.85) 0%, rgba(7, 20, 51, 0) 55%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h6 {
    color: #fff;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

.gallery-overlay span {
    color: #cfe0f5;
    font-size: 0.78rem;
}

.gallery-expand {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
    color: var(--navy);
}

.gallery-item:hover .gallery-expand {
    opacity: 1;
}

.gallery-expand i {
    width: 16px;
    height: 16px;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 14, 36, 0.88);
    backdrop-filter: blur(6px);
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transform: scale(0.96) translateY(10px);
    transition: transform 0.28s ease;
}

.gallery-lightbox.is-open .gallery-lightbox-dialog {
    transform: scale(1) translateY(0);
}

.gallery-lightbox-figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #0b1f4d;
    box-shadow: 0 28px 60px -24px rgba(0, 0, 0, 0.55);
    max-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-figure img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 120px);
    object-fit: contain;
    background: #0a142c;
}

.gallery-lightbox-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
    padding: 0 4px;
}

.gallery-lightbox-meta h6 {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
}

.gallery-lightbox-meta span {
    display: block;
    margin-top: 2px;
    font-size: 0.84rem;
    color: #c5d0e8;
}

.gallery-lightbox-count {
    font-size: 0.82rem;
    color: #aeb8d4;
    white-space: nowrap;
}

.gallery-lb-btn {
    position: absolute;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-lb-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

.gallery-lb-btn i,
.gallery-lb-btn svg {
    width: 18px;
    height: 18px;
}

.gallery-lb-close {
    top: 18px;
    right: 18px;
}

.gallery-lb-prev,
.gallery-lb-next {
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lb-prev {
    left: 18px;
}

.gallery-lb-next {
    right: 18px;
}

.gallery-lb-prev:hover,
.gallery-lb-next:hover {
    transform: translateY(-50%) scale(1.05);
}

body.gallery-lb-open {
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .gallery-lightbox {
        padding: 12px;
    }

    .gallery-lb-prev,
    .gallery-lb-next {
        width: 38px;
        height: 38px;
    }

    .gallery-lb-prev {
        left: 10px;
    }

    .gallery-lb-next {
        right: 10px;
    }

    .gallery-lb-close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }
}


/* ============ FAQ ============ */

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-q {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
    font-family: "Outfit", sans-serif;
}

.faq-q .plus-ic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex: none;
    background: var(--panel);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    color: var(--blue);
}

.faq-q .plus-ic i {
    width: 16px;
    height: 16px;
}

.faq-item.open .faq-q .plus-ic {
    transform: rotate(45deg);
    background: linear-gradient(100deg, var(--blue), var(--pink));
    color: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 24px;
}

.faq-a p {
    color: var(--muted);
    padding-bottom: 20px;
    margin: 0;
    font-size: 0.92rem;
}

.faq-item.open .faq-a {
    max-height: 480px;
}


/* ============ PAGE BANNER ============ */

.page-banner {
    position: relative;
    overflow: hidden;
    padding: 48px 0 52px;
    background:
        radial-gradient(700px 240px at 90% 0%, rgba(41, 169, 224, 0.16), transparent 65%),
        radial-gradient(560px 220px at 8% 100%, rgba(11, 99, 206, 0.12), transparent 70%),
        linear-gradient(180deg, #0a1840 0%, var(--navy-deep) 100%);
    color: #fff;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: rgba(207, 216, 239, 0.85);
    margin-bottom: 14px;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
    color: #fff;
}

.page-banner-title {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.page-banner-sub {
    max-width: 540px;
    margin: 0;
    color: #cfd8ef;
    font-size: 1rem;
    line-height: 1.65;
}

.page-banner-sm {
    padding: 36px 0 40px;
}

.page-banner-sm .page-banner-title {
    margin-bottom: 0;
}

/* ============ LEGAL PAGES ============ */
.legal-sec {
    background: var(--panel);
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(11, 31, 77, 0.07);
    border-radius: 18px;
    padding: clamp(22px, 4vw, 40px);
    box-shadow: 0 18px 40px -34px rgba(11, 31, 77, 0.45);
}

.legal-updated {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 600;
}

.legal-content > p:not(.legal-updated):not(.legal-note) {
    color: #3c4658;
    line-height: 1.75;
    margin-bottom: 16px;
}

.legal-content h2 {
    font-family: "Outfit", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin: 28px 0 10px;
}

.legal-content ul {
    margin: 0 0 16px;
    padding-left: 1.15rem;
    color: #3c4658;
    line-height: 1.7;
}

.legal-content li {
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-contact {
    list-style: none;
    padding-left: 0 !important;
}

.legal-contact li {
    margin-bottom: 4px;
}

.legal-note {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(11, 31, 77, 0.08);
    color: var(--muted);
    font-size: 0.92rem;
}


/* ============ PRODUCT DETAIL ============ */

.detail-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 420px at 8% -10%, rgba(11, 99, 206, 0.08), transparent 60%),
        radial-gradient(780px 380px at 100% 20%, rgba(11, 31, 77, 0.05), transparent 55%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 42%, #f5f7fb 100%);
    padding: 28px 0 72px;
}

.detail-page-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(11, 31, 77, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 31, 77, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.35), transparent 70%);
}

.detail-breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 22px;
    min-width: 0;
}

.detail-breadcrumb a {
    color: var(--navy);
    transition: color 0.2s ease;
    flex: none;
}

.detail-breadcrumb a:hover {
    color: var(--blue);
}

.detail-breadcrumb > span:not(.crumb-current) {
    flex: none;
}

.detail-breadcrumb .crumb-current {
    display: inline-block;
    max-width: min(420px, 45vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}

.detail-hero-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(11, 31, 77, 0.08);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 24px 50px -34px rgba(11, 31, 77, 0.45);
    margin-bottom: 22px;
}

.detail-gallery {
    position: sticky;
    top: 96px;
    min-width: 0;
    height: 100%;
}

.detail-main-img {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f6fa, #eef1f6);
    width: 100%;
    aspect-ratio: 4 / 3;
    box-shadow: inset 0 0 0 1px rgba(11, 31, 77, 0.05);
}

.detail-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.detail-main-img:hover img {
    transform: scale(1.02);
}

.detail-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(11, 99, 206, 0.45) rgba(11, 31, 77, 0.08);
}

.detail-thumbs::-webkit-scrollbar { height: 6px; }
.detail-thumbs::-webkit-scrollbar-track { background: rgba(11, 31, 77, 0.06); border-radius: 99px; }
.detail-thumbs::-webkit-scrollbar-thumb { background: rgba(11, 99, 206, 0.45); border-radius: 99px; }

.detail-thumb {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    background: #f4f6fa;
    width: 88px;
    min-width: 88px;
    height: 66px;
    opacity: 0.65;
    flex: none;
    scroll-snap-align: start;
    transition: opacity 0.2s ease, outline-color 0.2s ease;
    outline: 2px solid transparent;
    outline-offset: 1px;
}

.detail-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-thumb:hover,
.detail-thumb.active { opacity: 1; outline-color: var(--blue); }

.detail-info {
    background: transparent;
    border: none;
    padding: 4px 0 0;
    min-width: 0;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.detail-info .product-cat {
    display: inline-flex;
    margin-bottom: 0;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(11, 99, 206, 0.08);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.detail-info .product-cat-soft {
    background: rgba(11, 31, 77, 0.06);
    color: var(--navy);
}

.detail-info h1 {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.025em;
    line-height: 1.25;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

.detail-short {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

.detail-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(11, 31, 77, 0.08);
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fafc, #eef4ff);
}

.detail-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    font-family: "Outfit", sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--navy);
}

.detail-price small {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--muted);
}

.detail-stock {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1f8f5f;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: stock-pulse 1.8s ease-out infinite;
}

@keyframes stock-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
    70% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-actions .btn-brand,
.detail-actions .btn-outline-navy {
    padding: 11px 20px;
    font-size: 0.9rem;
    border-radius: 11px;
}

.detail-actions .btn-brand i,
.detail-actions .btn-brand svg,
.detail-actions .btn-outline-navy i,
.detail-actions .btn-outline-navy svg {
    width: 15px;
    height: 15px;
}

.detail-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: auto;
}

.detail-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(11, 31, 77, 0.08);
}

.detail-feature .hl-ic {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background: rgba(11, 99, 206, 0.1);
    color: var(--blue);
}

.detail-feature .hl-ic i,
.detail-feature .hl-ic svg { width: 17px; height: 17px; }

.detail-feature strong {
    display: block;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.detail-feature small {
    display: block;
    font-size: 0.76rem;
    color: var(--muted);
    line-height: 1.4;
}

.detail-meta-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.detail-meta-item {
    background: #fff;
    border: 1px solid rgba(11, 31, 77, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
}

.detail-meta-item small {
    display: block;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.detail-meta-item strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detail-desc-box {
    background: #fff;
    border: 1px solid rgba(11, 31, 77, 0.08);
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 18px 40px -34px rgba(11, 31, 77, 0.4);
}

.detail-desc-box h3 {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 14px;
    padding-left: 12px;
    border-left: 3px solid var(--blue);
}

.detail-desc-box p {
    margin: 0 0 12px;
    color: #5b6475;
    font-size: 0.98rem;
    line-height: 1.8;
}

.detail-help-card {
    background: linear-gradient(160deg, #0b1f4d 0%, #0b63ce 100%);
    color: #fff;
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 24px 40px -24px rgba(11, 99, 206, 0.55);
}

.detail-help-card h4 {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.detail-help-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.detail-help-card .btn-brand {
    background: #fff;
    color: var(--navy);
    box-shadow: none;
}

.detail-help-card .btn-brand:hover {
    background: #f3f6fb;
    color: var(--navy);
}

.detail-help-card .btn-outline-navy {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.detail-help-card .btn-outline-navy:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.detail-related {
    margin-top: 34px;
    padding-top: 8px;
}

.detail-related-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.detail-related-head h3 {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.detail-related-head p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.related-card {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(11, 31, 77, 0.08);
    border-radius: 16px;
    overflow: hidden;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 99, 206, 0.2);
    box-shadow: 0 22px 36px -28px rgba(11, 31, 77, 0.45);
    color: inherit;
}

.related-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eef1f6;
}

.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.related-card:hover .related-img img { transform: scale(1.05); }

.related-body { padding: 12px 14px 14px; }

.related-body span {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 4px;
}

.related-body h5 {
    font-family: "Outfit", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.related-body strong {
    font-family: "Outfit", sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
}

.enquiry-modal {
    border: none;
    border-radius: 18px;
    overflow: hidden;
}

.enquiry-modal .modal-header {
    border-bottom: 1px solid var(--line);
    padding: 18px 22px;
}

.enquiry-modal .modal-title {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: var(--navy);
}

.enquiry-modal .modal-body { padding: 22px; }

.enquiry-product-name {
    font-size: 0.9rem;
    color: var(--muted);
}

.enquiry-modal .form-label {
    font-weight: 500;
    color: var(--navy);
    font-size: 0.88rem;
}

.enquiry-modal .form-control {
    border-radius: 10px;
    border-color: var(--line);
    padding: 11px 14px;
    font-size: 0.92rem;
}

.enquiry-modal .form-control:focus {
    border-color: rgba(11, 99, 206, 0.45);
    box-shadow: 0 0 0 3px rgba(11, 99, 206, 0.12);
}

@media (max-width: 991.98px) {
    .detail-gallery { position: static; }
    .detail-main-img { aspect-ratio: 16 / 12; }
    .detail-hero-panel { padding: 16px; }
    .detail-info { padding: 0; }
    .detail-actions .btn-brand,
    .detail-actions .btn-outline-navy {
        width: 100%;
        justify-content: center;
    }
    .detail-thumb { width: 72px; min-width: 72px; height: 56px; }
    .detail-meta-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
    .detail-page { padding: 18px 0 40px; }
    .detail-feature-grid { grid-template-columns: 1fr; }
    .detail-meta-strip { grid-template-columns: 1fr; }
}

/* ============ SHOP / PRODUCTS PAGE ============ */

.shop-sidebar {
    background: #fff;
    border: 1px solid rgba(11, 31, 77, 0.08);
    border-radius: 18px;
    padding: 22px 18px;
    position: sticky;
    top: 96px;
}

.shop-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.shop-sidebar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-sidebar-title {
    font-family: "Outfit", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.shop-clear-btn {
    border: none;
    background: transparent;
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0;
}

.shop-clear-btn:hover {
    text-decoration: underline;
}

.shop-filter-close,
.shop-filter-apply,
.shop-filter-btn {
    display: none;
}

.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.shop-filter-overlay {
    display: none;
}

.shop-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shop-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    user-select: none;
}

.shop-check:hover {
    background: rgba(11, 99, 206, 0.05);
}

.shop-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.shop-check-box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid rgba(11, 31, 77, 0.25);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    transition: background 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.shop-check-box::after {
    content: "";
    width: 9px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
    opacity: 0;
}

.shop-check input:checked + .shop-check-box {
    background: var(--blue);
    border-color: var(--blue);
}

.shop-check input:checked + .shop-check-box::after {
    opacity: 1;
}

.shop-check-text {
    flex: 1;
    font-family: "Outfit", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
}

.shop-check-count {
    min-width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    background: rgba(11, 31, 77, 0.06);
}

.shop-check input:checked ~ .shop-check-count {
    background: rgba(11, 99, 206, 0.12);
    color: var(--blue);
}

.shop-result-text {
    font-size: 0.92rem;
    color: var(--muted);
}

.shop-result-text strong {
    color: var(--navy);
}

.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.page-nav,
.page-num {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(11, 31, 77, 0.1);
    background: #fff;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-nav i,
.page-nav svg {
    width: 18px;
    height: 18px;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.page-num:hover,
.page-nav:hover:not(:disabled) {
    border-color: rgba(11, 99, 206, 0.35);
    color: var(--blue);
}

.page-num.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 10px 20px -12px rgba(11, 99, 206, 0.65);
}

.page-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 991.98px) {
    .shop-filter-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1.5px solid var(--navy);
        background: #fff;
        color: var(--navy);
        font-family: "Outfit", sans-serif;
        font-weight: 600;
        font-size: 0.88rem;
        padding: 9px 14px;
        border-radius: 11px;
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .shop-filter-btn i,
    .shop-filter-btn svg {
        width: 16px;
        height: 16px;
    }

    .shop-filter-btn:hover {
        background: var(--navy);
        color: #fff;
    }

    .shop-filter-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(7, 16, 40, 0.45);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .shop-filter-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

    .shop-filter-col {
        position: fixed;
        top: 0;
        left: 0;
        width: min(320px, 88vw);
        height: 100vh;
        z-index: 1050;
        margin: 0;
        padding: 0;
        transform: translateX(-105%);
        transition: transform 0.32s ease;
        max-width: none;
        flex: none;
    }

    .shop-filter-col.is-open {
        transform: translateX(0);
    }

    .shop-sidebar {
        position: static;
        height: 100%;
        border-radius: 0 18px 18px 0;
        border: none;
        box-shadow: 18px 0 40px -20px rgba(11, 31, 77, 0.45);
        padding: 18px 16px 20px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .shop-filter-list {
        flex: 1;
        overflow-y: auto;
        padding-right: 4px;
        margin-bottom: 14px;
    }

    .shop-filter-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border: none;
        border-radius: 10px;
        background: rgba(11, 31, 77, 0.06);
        color: var(--navy);
        cursor: pointer;
    }

    .shop-filter-close i,
    .shop-filter-close svg {
        width: 16px;
        height: 16px;
    }

    .shop-filter-apply {
        display: block;
        padding-top: 8px;
        border-top: 1px solid var(--line);
    }

    body.shop-filter-open {
        overflow: hidden;
    }
}


/* ============ CONTACT PAGE ============ */

.contact-page {
    background: #fff;
}

.contact-info-card,
.contact-form-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(11, 31, 77, 0.08);
    border-radius: 18px;
    padding: 28px;
}

.contact-info-card {
    background: linear-gradient(180deg, #0a1840 0%, var(--navy-deep) 100%);
    color: #cfd8ef;
    border: none;
}

.contact-form-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(420px 180px at 100% 0%, rgba(11, 99, 206, 0.08), transparent 70%),
        radial-gradient(360px 160px at 0% 100%, rgba(41, 169, 224, 0.06), transparent 70%),
        #fff;
    border: 1px solid rgba(11, 99, 206, 0.12);
    box-shadow: 0 22px 48px -28px rgba(11, 31, 77, 0.35);
    padding: 30px;
}

.contact-form-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.contact-form-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-form-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background: linear-gradient(145deg, rgba(11, 99, 206, 0.14), rgba(41, 169, 224, 0.1));
    border: 1px solid rgba(11, 99, 206, 0.18);
    color: var(--blue);
}

.contact-form-icon i,
.contact-form-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-card h3,
.contact-form-card h3 {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.contact-info-card h3 {
    color: #fff;
}

.contact-form-card h3 {
    color: var(--navy);
}

.contact-info-card > p {
    margin-bottom: 24px;
    font-size: 0.92rem;
    color: #aeb8d4;
}

.contact-form-head p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

.contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-ic {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background: rgba(11, 99, 206, 0.22);
    border: 1px solid rgba(41, 169, 224, 0.28);
}

.contact-ic i,
.contact-ic svg {
    width: 16px;
    height: 16px;
    color: var(--blue-light);
}

.contact-list strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-list span,
.contact-list a {
    color: #cfd8ef;
    font-size: 0.88rem;
    line-height: 1.55;
}

.contact-list a:hover {
    color: #fff;
}

.contact-phones {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.84rem;
    margin-bottom: 8px;
}

.field-wrap {
    position: relative;
}

.field-wrap > i,
.field-wrap > svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #8b93a7;
    pointer-events: none;
    z-index: 2;
}

.field-wrap-area > i,
.field-wrap-area > svg {
    top: 16px;
    transform: none;
}

.contact-form-card .form-control {
    border-radius: 12px;
    border: 1px solid rgba(11, 31, 77, 0.1);
    background: rgba(247, 249, 252, 0.9);
    padding: 12px 14px 12px 42px;
    font-size: 0.92rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form-card textarea.form-control {
    min-height: 128px;
    resize: vertical;
}

.contact-form-card .form-control:hover {
    border-color: rgba(11, 99, 206, 0.28);
    background: #fff;
}

.contact-form-card .form-control:focus {
    border-color: rgba(11, 99, 206, 0.5);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(11, 99, 206, 0.12);
}

.contact-form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
    margin-top: 4px;
}

.contact-form-card .btn-brand {
    min-width: 180px;
    justify-content: center;
}

.contact-form-card .btn-brand i,
.contact-form-card .btn-brand svg {
    width: 16px;
    height: 16px;
}

.contact-form-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
}

.contact-form-note i,
.contact-form-note svg {
    width: 14px;
    height: 14px;
    color: var(--blue);
}

.contact-map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(11, 31, 77, 0.08);
    height: 320px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 575.98px) {
    .contact-form-card {
        padding: 22px 18px;
    }

    .contact-form-footer .btn-brand {
        width: 100%;
    }
}


/* ============ CTA STRIP ============ */

.cta-wrap {
    margin-top: 56px;
    margin-bottom: 72px;
}

.cta-strip {
    background: linear-gradient( 110deg, var(--navy) 0%, #113a86 60%, var(--pink-deep) 130%);
    border-radius: 22px;
    padding: 50px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta-wrap {
        margin-top: 40px;
        margin-bottom: 48px;
    }

    .cta-strip {
        padding: 36px 24px;
    }
}

.cta-strip::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 260px;
    height: 260px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.cta-strip h3 {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.cta-strip p {
    color: #cfd8ef;
    margin-bottom: 0;
}


/* ============ FOOTER ============ */

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(520px 220px at 8% 0%, rgba(11, 99, 206, 0.22), transparent 70%),
        radial-gradient(420px 200px at 92% 100%, rgba(41, 169, 224, 0.12), transparent 70%),
        linear-gradient(180deg, #08183a 0%, var(--navy-deep) 100%);
    color: #b6c0da;
    padding-top: 72px;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(41, 169, 224, 0.45), transparent);
}

.footer-brand {
    display: inline-flex;
    margin-bottom: 18px;
}

.footer-brand img {
    height: 58px;
    width: auto;
    filter: brightness(1.08) contrast(1.05);
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.75;
    max-width: 34ch;
    margin-bottom: 22px;
    color: #aeb8d4;
}

.footer-title {
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    margin-bottom: 22px;
    font-size: 1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: var(--blue);
}

.site-footer .flinks li {
    margin-bottom: 12px;
}

.site-footer .flinks a {
    color: #b6c0da;
    font-size: 0.9rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-footer .flinks a i,
.site-footer .flinks a svg {
    width: 14px;
    height: 14px;
    color: var(--blue-light);
}

.site-footer .flinks a:hover {
    color: #fff;
    transform: translateX(3px);
}

.site-footer .fcontact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #c5cee4;
}

.fcontact-ic {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background: rgba(11, 99, 206, 0.22);
    border: 1px solid rgba(41, 169, 224, 0.28);
}

.fcontact-ic i,
.fcontact-ic svg {
    width: 15px;
    height: 15px;
    color: var(--blue-light);
}

.site-footer .fcontact a {
    color: #e4e9f7;
    transition: color 0.2s ease;
}

.site-footer .fcontact a:hover {
    color: #fff;
}

.fphones {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fphones a {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.foot-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.foot-social a {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 0;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.foot-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 18px -12px rgba(11, 99, 206, 0.75);
}

.foot-social svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: #fff;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 52px;
    padding: 20px 0;
    font-size: 0.82rem;
    color: #97a3c2;
}

.foot-bottom a {
    color: #cfd8ef;
    transition: color 0.2s ease;
}

.foot-bottom a:hover {
    color: #fff;
}

.foot-legal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.divider-grille {
    height: 26px;
    background-image: linear-gradient(rgba(11, 31, 77, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 31, 77, 0.05) 1px, transparent 1px);
    background-size: 26px 26px;
}

.back-to-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    box-shadow: 0 12px 24px -10px rgba(11, 99, 206, 0.55);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #0956b3;
    color: #fff;
}

.back-to-top i,
.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ============ SITE TOAST ============ */
.site-toast-stack {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 99999;
    width: min(360px, calc(100vw - 32px));
    pointer-events: none;
}

.site-toast {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px 14px 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(11, 31, 77, 0.08);
    box-shadow: 0 18px 40px -18px rgba(11, 31, 77, 0.45);
    transform: translateX(120%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
}

.site-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.site-toast.hide {
    transform: translateX(120%);
    opacity: 0;
}

.site-toast .toast-ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex: none;
}

.site-toast .toast-ic svg {
    width: 18px;
    height: 18px;
}

.site-toast.success .toast-ic {
    background: #e9f8ef;
    color: #159947;
}

.site-toast.error .toast-ic,
.site-toast.warning .toast-ic {
    background: #fff4e8;
    color: #d97706;
}

.site-toast .toast-body {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

.site-toast .toast-body strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 0.92rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.site-toast .toast-body span {
    display: block;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
}

.site-toast .toast-close {
    border: none;
    background: transparent;
    color: #94a3b8;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    flex: none;
    cursor: pointer;
}

.site-toast .toast-close:hover {
    background: #f1f5f9;
    color: var(--navy);
}

.site-toast .toast-close svg {
    width: 16px;
    height: 16px;
}
/* ============ INDEX STATIC SECTIONS ============ */

.why-sec {
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.why-block {
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid rgba(11, 31, 77, 0.08);
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-block:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 99, 206, 0.22);
    box-shadow: 0 22px 36px -28px rgba(11, 31, 77, 0.4);
}

.why-ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(11, 99, 206, 0.1);
    color: var(--blue);
    margin-bottom: 14px;
}

.why-ic i,
.why-ic svg {
    width: 20px;
    height: 20px;
}

.why-block h3 {
    font-family: "Outfit", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.why-block p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-sec {
    background: #fff;
    padding-top: 28px;
    padding-bottom: 28px;
}

.process-panel {
    border-radius: 24px;
    padding: 36px 32px;
    background:
        radial-gradient(520px 240px at 0% 0%, rgba(41, 169, 224, 0.2), transparent 55%),
        linear-gradient(145deg, #06112c 0%, #0b1f4d 45%, #0b63ce 120%);
    box-shadow: 0 28px 50px -30px rgba(11, 31, 77, 0.55);
}

.process-lead {
    color: rgba(207, 216, 239, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 8px;
}

.process-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    position: relative;
}

.process-track::before {
    display: none;
}

.process-step {
    position: relative;
    z-index: 1;
    padding: 18px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
}

.process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: #fff;
    border: none;
    color: var(--navy);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 12px;
    box-shadow: none;
}

.process-step h3 {
    font-family: "Outfit", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.process-step p {
    margin: 0;
    color: rgba(207, 216, 239, 0.85);
    font-size: 0.88rem;
    line-height: 1.55;
}

.products-sec {
    background: var(--panel);
}

.materials-sec {
    background: #fff;
}

.material-list {
    display: grid;
    gap: 12px;
}

.material-row {
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(11, 31, 77, 0.08);
    background: linear-gradient(90deg, #f8fafc 0%, #ffffff 55%);
    border-left: 3px solid var(--blue);
}

.material-name {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.material-row p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.areas-sec {
    padding-top: 24px;
    padding-bottom: 24px;
    background: transparent;
}

.areas-panel {
    border-radius: 24px;
    padding: 36px 32px;
    background:
        radial-gradient(500px 220px at 100% 0%, rgba(41, 169, 224, 0.22), transparent 60%),
        linear-gradient(135deg, #06112c 0%, #0b1f4d 48%, #0a3d8f 100%);
    box-shadow: 0 28px 50px -30px rgba(11, 31, 77, 0.55);
}

.eyebrow-light {
    background: rgba(255, 255, 255, 0.1);
    color: #d7e4ff;
}

.areas-copy {
    color: rgba(207, 216, 239, 0.9);
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
    max-width: 420px;
}

.areas-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.areas-chips span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
}

.reviews-sec {
    background: #fff;
}

.reviews-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.reviews-nav {
    display: flex;
    gap: 8px;
}

.reviews-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1.5px solid rgba(11, 31, 77, 0.12);
    background: #fff;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.reviews-nav-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.reviews-nav-btn i,
.reviews-nav-btn svg {
    width: 18px;
    height: 18px;
}

.reviews-swiper {
    padding-bottom: 42px;
}

.reviews-swiper .swiper-slide {
    height: auto;
}

.review-quote {
    height: 100%;
    margin: 0;
    padding: 24px 22px;
    border-radius: 18px;
    background: var(--panel);
    border: 1px solid rgba(11, 31, 77, 0.07);
    position: relative;
}

.review-quote::before {
    content: "\201C";
    position: absolute;
    top: 8px;
    right: 18px;
    font-family: "Outfit", sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(11, 99, 206, 0.15);
}

.review-quote p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #3c4658;
    margin: 0 0 18px;
}

.review-quote footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-quote strong {
    font-family: "Outfit", sans-serif;
    color: var(--navy);
    font-size: 0.95rem;
}

.review-quote span {
    font-size: 0.8rem;
    color: var(--muted);
}

.reviews-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 8px;
}

.reviews-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(11, 31, 77, 0.25);
    opacity: 1;
}

.reviews-pagination .swiper-pagination-bullet-active {
    background: var(--blue);
    width: 22px;
    border-radius: 999px;
}

@media (max-width: 991.98px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-panel {
        padding: 28px 18px;
    }

    .areas-panel {
        padding: 28px 20px;
    }
}

@media (max-width: 575.98px) {
    .why-grid,
    .process-track {
        grid-template-columns: 1fr;
    }
}
