/* ============================================================
   VOLTEX – Custom Styles layered on Bootstrap 5
   Brand: Navy #1B3A6B  |  Red #E8192C  |  White #FFFFFF
   Font: Outfit (Google Fonts)
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --navy: #1B3A6B;
    --navy-dark: #122952;
    --navy-lt: #254d8e;
    --red: #E8192C;
    --red-dark: #c4121f;
    --off-white: #F5F7FA;
    --lt-gray: #E4E9F0;
    --muted: #6B7A90;
    --text: #1B2A3D;
    --radius: 8px;
    --radius-lg: 14px;
    --shadow: 0 4px 20px rgba(27,58,107,.10);
    --shadow-red: 0 4px 20px rgba(232,25,44,.22);
    --t: all .25s ease;
}

/* ── Base ── */
body {
    font-family: 'Outfit',sans-serif;
    color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit',sans-serif;
    font-weight: 700;
}

a {
    transition: var(--t);
}

/* ── Utility colour helpers ── */
.bg-navy {
    background: var(--navy) !important;
}

.bg-navy-dark {
    background: var(--navy-dark) !important;
}

.bg-red {
    background: var(--red) !important;
}

.bg-off-white {
    background: var(--off-white) !important;
}

.text-navy {
    color: var(--navy) !important;
}

.text-red {
    color: var(--red) !important;
}

.text-muted-c {
    color: var(--muted) !important;
}

/* ── Custom Buttons ── */
.btn {
    font-family: 'Outfit',sans-serif;
    font-weight: 600;
    border-radius: var(--radius);
}

.btn-red {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

    .btn-red:hover {
        background: var(--red-dark);
        border-color: var(--red-dark);
        color: #fff;
        box-shadow: var(--shadow-red);
        transform: translateY(-1px);
    }

.btn-navy {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

    .btn-navy:hover {
        background: var(--navy-dark);
        border-color: var(--navy-dark);
        color: #fff;
        box-shadow: var(--shadow);
        transform: translateY(-1px);
    }

.btn-outline-navy {
    border-color: var(--navy);
    color: var(--navy);
}

    .btn-outline-navy:hover {
        background: var(--navy);
        color: #fff;
    }

.btn-outline-red {
    border-color: var(--red);
    color: var(--red);
}

    .btn-outline-red:hover {
        background: var(--red);
        color: #fff;
    }

/* ============================================================
   TOP BAR
============================================================ */
.top-bar {
    background: var(--navy-dark);
    font-size: 12.5px;
    color: rgba(255,255,255,.72);
    padding: 7px 0;
}

    .top-bar a {
        color: rgba(255,255,255,.72);
    }

        .top-bar a:hover {
            color: var(--red);
        }

    .top-bar i {
        color: var(--red);
    }

.tb-sep {
    width: 1px;
    height: 13px;
    background: rgba(255,255,255,.2);
    display: inline-block;
    margin: 0 12px;
    vertical-align: middle;
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
    background: #fff;
    box-shadow: 0 2px 14px rgba(27,58,107,.09);
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: 12px 0;
}

    .site-header .navbar-brand img {
        height: 46px;
        width: auto;
    }

.search-wrap {
    border: 2px solid var(--lt-gray);
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    transition: var(--t);
}

    .search-wrap:focus-within {
        border-color: var(--navy);
        box-shadow: 0 0 0 3px rgba(27,58,107,.08);
    }

    .search-wrap select {
        border: none;
        border-right: 2px solid var(--lt-gray);
        background: var(--off-white);
        font-family: 'Outfit',sans-serif;
        font-size: 13px;
        color: var(--muted);
        width: 150px;
        padding: 0 12px;
        outline: none;
        cursor: pointer;
    }

    .search-wrap input {
        border: none;
        flex: 1;
        padding: 10px 16px;
        font-family: 'Outfit',sans-serif;
        font-size: 14px;
        outline: none;
    }

    .search-wrap .srch-btn {
        background: var(--navy);
        border: none;
        color: #fff;
        padding: 0 20px;
        font-size: 16px;
        cursor: pointer;
        transition: var(--t);
        border-radius: 0 50px 50px 0;
    }

        .search-wrap .srch-btn:hover {
            background: var(--red);
        }

.hdr-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius);
    color: var(--navy);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--t);
    position: relative;
    font-family: 'Outfit',sans-serif;
    text-decoration: none;
}

    .hdr-btn i {
        font-size: 22px;
    }

    .hdr-btn span {
        font-size: 10.5px;
        font-weight: 500;
        color: var(--muted);
        line-height: 1;
        margin-top: 2px;
    }

    .hdr-btn:hover {
        background: var(--off-white);
        color: var(--red);
    }

.hdr-badge {
    position: absolute;
    top: 3px;
    right: 7px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   MAIN NAV
============================================================ */
.main-nav {
    background: var(--navy);
}

    .main-nav .nav-link {
        color: rgba(255,255,255,.82) !important;
        font-size: 14px;
        font-weight: 500;
        padding: 13px 16px !important;
        font-family: 'Outfit',sans-serif;
        transition: var(--t);
    }

        .main-nav .nav-link:hover, .main-nav .nav-item.active .nav-link {
            color: #fff !important;
            background: rgba(255,255,255,.1);
        }

    .main-nav .active > .nav-link {
        color: var(--red) !important;
    }

.cats-btn {
    background: var(--red) !important;
    color: #fff !important;
    padding: 13px 22px !important;
    font-weight: 700 !important;
    border-radius: 0 !important;
}

    .cats-btn:hover {
        background: var(--red-dark) !important;
    }

.main-nav .dropdown-menu {
    border: none;
    border-top: 3px solid var(--red);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    padding: 6px 0;
    margin-top: 0;
}

.main-nav .dropdown-item {
    font-family: 'Outfit',sans-serif;
    font-size: 13.5px;
    padding: 9px 18px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid var(--lt-gray);
}

    .main-nav .dropdown-item:last-child {
        border-bottom: none;
    }

    .main-nav .dropdown-item:hover {
        color: var(--red);
        background: rgba(232,25,44,.04);
        padding-left: 24px;
    }

    .main-nav .dropdown-item i {
        color: var(--red);
        font-size: 13px;
    }

.nav-promo-badge {
    background: var(--red);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 4px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.08)
    }
}

/* ============================================================
   HERO CAROUSEL (Bootstrap Carousel)
============================================================ */
.hero-section {
    background: var(--off-white);
    padding: 24px 0;
}

.main-carousel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
}

    .main-carousel .carousel, .main-carousel .carousel-inner, .main-carousel .carousel-item {
        height: 100%;
    }

.carousel-slide {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 48px 56px;
    position: relative;
}

.slide-bg-1 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
}

.slide-bg-2 {
    background: linear-gradient(135deg, #0d2240 0%, var(--navy) 100%);
}

.slide-bg-3 {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #1a3a5c 100%);
}

.slide-tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 13px;
    border-radius: 20px;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.carousel-slide h2 {
    font-size: 36px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
}

    .carousel-slide h2 span {
        color: var(--red);
    }

.carousel-slide p {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    margin-bottom: 26px;
}

.slide-img {
    position: absolute;
    right: 40px;
    bottom: 0;
    height: 90%;
    object-fit: contain;
    opacity: .9;
}

/* Controls */
.main-carousel .carousel-control-prev, .main-carousel .carousel-control-next {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-carousel .carousel-control-prev {
    left: 14px;
}

.main-carousel .carousel-control-next {
    right: 14px;
}

    .main-carousel .carousel-control-prev:hover, .main-carousel .carousel-control-next:hover {
        background: var(--red);
        border-color: var(--red);
    }

.main-carousel .carousel-control-prev-icon, .main-carousel .carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

.main-carousel .carousel-indicators {
    bottom: 16px;
    left: 56px;
    justify-content: flex-start;
    margin: 0;
}

    .main-carousel .carousel-indicators button {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,.4);
        border: none;
        padding: 0;
        margin: 0 4px;
        transition: var(--t);
    }

    .main-carousel .carousel-indicators .active {
        background: var(--red);
        width: 22px;
        border-radius: 4px;
    }

/* Promo Side Cards */
.promo-card {
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
}

.promo-card-1 {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
}

.promo-card-2 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.promo-card h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
}

.promo-card p {
    color: rgba(255,255,255,.75);
    font-size: 12.5px;
    margin-bottom: 12px;
}

.promo-card a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .promo-card a:hover {
        gap: 9px;
    }

.promo-bg-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 58px;
    color: rgba(255,255,255,.12);
    pointer-events: none;
}

/* ============================================================
   SECTION HEADINGS
============================================================ */
.sec-title {
    font-size: 24px;
    color: var(--navy);
    position: relative;
    display: inline-block;
}

    .sec-title::after {
        content: '';
        display: block;
        width: 44px;
        height: 4px;
        background: var(--red);
        border-radius: 2px;
        margin-top: 6px;
    }

.sec-link {
    color: var(--red);
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

    .sec-link:hover {
        color: var(--red-dark);
        gap: 8px;
    }

/* ============================================================
   CATEGORY CARDS
============================================================ */
.cat-card {
    background: #fff;
    border: 2px solid var(--lt-gray);
    border-radius: var(--radius-lg);
    padding: 24px 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--t);
    display: block;
    color: var(--text);
    text-decoration: none;
}

    .cat-card:hover {
        border-color: var(--red);
        transform: translateY(-4px);
        box-shadow: var(--shadow-red);
        color: var(--navy);
    }

.cat-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 12px;
    transition: var(--t);
}

.cat-card:hover .cat-icon {
    background: var(--red);
    color: #fff;
}

.cat-card h6 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 2px;
}

.cat-card small {
    font-size: 11px;
    color: var(--muted);
}

/* ============================================================
   PRODUCT CARDS
============================================================ */
.product-card {
    background: #fff;
    border: 1px solid var(--lt-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--t);
    position: relative;
    height: 100%;
}

    .product-card:hover {
        border-color: var(--navy);
        box-shadow: var(--shadow);
        transform: translateY(-4px);
    }

.prod-img-box {
    background: var(--off-white);
    padding: 24px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .prod-img-box img {
        max-height: 140px;
        object-fit: contain;
        transition: transform .35s ease;
    }

.product-card:hover .prod-img-box img {
    transform: scale(1.07);
}

.list-img-box {
    background: var(--off-white);
    padding: 24px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .list-img-box img {
        max-height: 140px;
        object-fit: contain;
        transition: transform .35s ease;
    }

.product-card:hover .list-img-box img {
    transform: scale(1.07);
}


.prod-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-new {
    background: var(--success,#198754);
}

.badge-sale {
    background: var(--red);
}

.badge-hot {
    background: #F59E0B;
}

.prod-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .4px;
    font-family: 'Outfit',sans-serif;
}

.prod-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--t);
}

.product-card:hover .prod-actions {
    opacity: 1;
    transform: translateX(0);
}

.pa-btn {
    width: 34px;
    height: 34px;
    background: #fff;
    border: 1px solid var(--lt-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    cursor: pointer;
    transition: var(--t);
    box-shadow: 0 2px 8px rgba(27,58,107,.08);
}

    .pa-btn:hover {
        background: var(--red);
        border-color: var(--red);
        color: #fff;
    }

.prod-body {
    padding: 15px;
}

.prod-brand {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.prod-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prod-stars {
    color: #F59E0B;
    font-size: 12px;
}

.rev-count {
    font-size: 11px;
    color: var(--muted);
}

.price-now {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
}

.price-old {
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through;
}

.price-off {
    font-size: 11px;
    font-weight: 700;
    color: #198754;
    background: rgba(25,135,84,.09);
    padding: 2px 7px;
    border-radius: 4px;
}

/* ============================================================
   BRANDS MARQUEE
============================================================ */
.brands-section {
    background: var(--navy);
    overflow: hidden;
    padding: 28px 0;
}

.brands-track {
    display: flex;
    gap: 14px;
    animation: marquee 30s linear infinite;
}

    .brands-track:hover {
        animation-play-state: paused;
    }

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

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

.brand-chip {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius);
    padding: 12px 28px;
    color: rgba(255,255,255,.55);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--t);
}

    .brand-chip:hover {
        background: rgba(232,25,44,.15);
        border-color: var(--red);
        color: #fff;
    }

/* ============================================================
   FEATURE STRIP
============================================================ */
.feat-strip {
    border-top: 1px solid var(--lt-gray);
    border-bottom: 1px solid var(--lt-gray);
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feat-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: rgba(232,25,44,.07);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--red);
}

.feat-item h6 {
    font-size: 14.5px;
    margin: 0 0 2px;
    color: var(--navy);
}

.feat-item p {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0;
}

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
    position: relative;
    overflow: hidden;
}

    .newsletter::before {
        content: '';
        position: absolute;
        top: -60%;
        right: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(232,25,44,.17), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .newsletter h2 {
        color: #fff;
        font-size: 28px;
    }

    .newsletter p {
        color: rgba(255,255,255,.72);
    }

.nl-group {
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,.2);
    display: flex;
    transition: var(--t);
}

    .nl-group:focus-within {
        border-color: var(--red);
    }

    .nl-group input {
        border: none;
        padding: 13px 22px;
        font-family: 'Outfit',sans-serif;
        font-size: 14px;
        flex: 1;
        outline: none;
    }

    .nl-group button {
        border-radius: 0 50px 50px 0;
        padding: 13px 28px;
        background: var(--red);
        border: none;
        color: #fff;
        font-family: 'Outfit',sans-serif;
        font-weight: 700;
        cursor: pointer;
        transition: var(--t);
        white-space: nowrap;
    }

        .nl-group button:hover {
            background: var(--red-dark);
        }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.72);
}

.footer-top {
    padding: 56px 0 36px;
}

.footer-logo img {
    height: 42px;
    filter: brightness(0) invert(1);
}

.footer-about {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255,255,255,.62);
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.soc-ico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    transition: var(--t);
}

    .soc-ico:hover {
        background: var(--red);
        border-color: var(--red);
        color: #fff;
    }

.footer-heading {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,.08);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 9px;
    }

    .footer-links a {
        color: rgba(255,255,255,.62);
        font-size: 13.5px;
        display: flex;
        align-items: center;
        gap: 7px;
    }

        .footer-links a::before {
            content: '›';
            color: var(--red);
            font-weight: 700;
        }

        .footer-links a:hover {
            color: var(--red);
            padding-left: 4px;
        }

.foot-contact {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 13.5px;
}

    .foot-contact i {
        color: var(--red);
        margin-top: 3px;
        flex-shrink: 0;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px 0;
    font-size: 12.5px;
    color: rgba(255,255,255,.42);
}

    .footer-bottom a {
        color: rgba(255,255,255,.42);
    }

        .footer-bottom a:hover {
            color: var(--red);
        }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
    padding: 44px 0 36px;
    position: relative;
}

    .page-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--red);
    }

    .page-hero h1 {
        color: #fff;
        font-size: 30px;
        margin-bottom: 6px;
    }

    .page-hero .lead {
        color: rgba(255,255,255,.68);
    }

.breadcrumb-item a {
    color: rgba(255,255,255,.6);
}

    .breadcrumb-item a:hover {
        color: var(--red);
    }

.breadcrumb-item.active {
    color: var(--red);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.4);
}

/* ============================================================
   FILTER SIDEBAR
============================================================ */
.filter-card {
    border: 1px solid var(--lt-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 14px;
}

.filter-head {
    background: var(--off-white);
    padding: 11px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    border-bottom: 1px solid var(--lt-gray);
}

    .filter-head i {
        color: var(--red);
        transition: var(--t);
    }

.filter-body {
    padding: 14px 16px;
}

.f-check {
    accent-color: var(--red);
    width: 15px;
    height: 15px;
}

.f-label {
    font-size: 13.5px;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
}

.f-count {
    margin-left: auto;
    background: var(--lt-gray);
    padding: 1px 7px;
    border-radius: 10px;
    font-size: 11px;
    color: var(--muted);
}

.price-slider {
    accent-color: var(--navy);
    width: 100%;
}

/* ============================================================
   CART PAGE
============================================================ */
.cart-tbl {
    border: 1px solid var(--lt-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

    .cart-tbl thead th {
        background: var(--off-white);
        padding: 12px 18px;
        font-size: 13px;
        font-weight: 600;
        color: var(--muted);
        border-bottom: 2px solid var(--lt-gray);
        border-top: none;
    }

    .cart-tbl tbody td {
        padding: 18px;
        border-bottom: 1px solid var(--lt-gray);
        vertical-align: middle;
    }

    .cart-tbl tbody tr:last-child td {
        border-bottom: none;
    }

.cart-prod-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 8px;
}

.qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid var(--lt-gray);
    border-radius: var(--radius);
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    width: 32px;
    height: 32px;
    background: var(--off-white);
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
}

    .qty-btn:hover {
        background: var(--navy);
        color: #fff;
    }

.qty-input {
    width: 42px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--lt-gray);
    border-right: 1px solid var(--lt-gray);
    font-size: 14px;
    height: 32px;
    outline: none;
    font-family: 'Outfit',sans-serif;
}

.summary-card {
    border: 1px solid var(--lt-gray);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--lt-gray);
    font-size: 14px;
}

.summary-total {
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    border-bottom: none;
    padding-top: 14px;
}

.coupon-wrap {
    border: 1px solid var(--lt-gray);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
}

    .coupon-wrap input {
        border: none;
        padding: 9px 14px;
        font-family: 'Outfit',sans-serif;
        font-size: 13px;
        outline: none;
        flex: 1;
    }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

    .about-img-wrap img {
        width: 100%;
        height: 380px;
        object-fit: cover;
    }

.years-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--red);
    color: #fff;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-red);
}

    .years-badge strong {
        font-size: 28px;
        font-weight: 800;
        line-height: 1;
    }

    .years-badge span {
        font-size: 11px;
        line-height: 1.3;
    }

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--red);
}

.stat-lbl {
    font-size: 13.5px;
    color: var(--muted);
}

.value-card {
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    border: 1px solid var(--lt-gray);
    transition: var(--t);
    height: 100%;
}

    .value-card:hover {
        border-color: var(--red);
        box-shadow: 0 4px 20px rgba(232,25,44,.1);
        transform: translateY(-3px);
    }

    .value-card h5 {
        color: var(--navy);
        margin-bottom: 10px;
    }

    .value-card p {
        font-size: 13.5px;
        color: var(--muted);
        margin: 0;
        line-height: 1.7;
    }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-info-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
    border-radius: var(--radius-lg);
    padding: 34px;
}

    .contact-info-card h4 {
        color: #fff;
    }

.c-det {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.c-ico {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(232,25,44,.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 17px;
}

.c-det h6 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.55);
    margin-bottom: 3px;
    font-weight: 500;
}

.c-det p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,.85);
}

.contact-form-card {
    border: 1px solid var(--lt-gray);
    border-radius: var(--radius-lg);
    padding: 34px;
    background: #fff;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}

.form-control:focus, .form-select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27,58,107,.08);
}

.faq-box {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 20px 22px;
    border-left: 4px solid var(--red);
    height: 100%;
}

    .faq-box h6 {
        color: var(--navy);
        font-size: 14.5px;
        margin-bottom: 8px;
    }

    .faq-box p {
        font-size: 13.5px;
        color: var(--muted);
        margin: 0;
        line-height: 1.7;
    }

/* ============================================================
   MISC
============================================================ */
.section-py {
    padding: 52px 0;
}

.section-py-sm {
    padding: 32px 0;
}

.page-link {
    color: var(--navy);
    border-color: var(--lt-gray);
    font-family: 'Outfit',sans-serif;
}

    .page-link:hover {
        color: var(--red);
        border-color: var(--red);
        background: rgba(232,25,44,.05);
    }

.page-item.active .page-link {
    background: var(--navy);
    border-color: var(--navy);
}

.team-card {
    text-align: center;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    transition: var(--t);
}

    .team-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

    .team-card img {
        width: 84px;
        height: 84px;
        border-radius: 50%;
        border: 3px solid var(--red);
        object-fit: cover;
        margin: 0 auto 14px;
    }

    .team-card h6 {
        color: var(--navy);
        margin-bottom: 2px;
    }

/* Toast */
.toast-notify {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    background: #fff;
    border-radius: 10px;
    padding: 13px 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit',sans-serif;
    font-size: 14px;
    color: var(--text);
    max-width: 340px;
    transform: translateX(110%);
    transition: transform .32s ease;
}

    .toast-notify.show {
        transform: translateX(0);
    }

/* Responsive */
@media(max-width:991px) {
    .main-carousel {
        height: 320px;
    }

    .carousel-slide {
        padding: 32px 36px;
    }

        .carousel-slide h2 {
            font-size: 26px;
        }

    .slide-img {
        display: none;
    }
}

@media(max-width:767px) {
    .search-wrap select {
        display: none;
    }

    .main-carousel {
        height: 280px;
    }

    .carousel-slide {
        padding: 24px 24px;
    }

        .carousel-slide h2 {
            font-size: 22px;
        }
}
