/* ===== GLOBAL RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ===== QUICK VIEW MODAL ===== */
.quickview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.quickview-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quickview-modal {
    background: #fff;
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
}

.quickview-overlay.active .quickview-modal {
    transform: scale(1);
}

.qv-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    color: #111;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.qv-image-side {
    flex: 1.2;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

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

.qv-content-side {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}

.qv-brand {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #cc0000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.qv-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #111;
    line-height: 1.2;
    margin-bottom: 15px;
}

.qv-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #cc0000; /* Adjusted to primary color for emphasis */
    margin-bottom: 25px;
}

.qv-price .old {
    color: #999;
    text-decoration: line-through;
    font-size: 0.75em;
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.qv-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    overflow-wrap: break-word;
    word-break: break-word;
    padding-right: 8px;
}

.qv-actions {
    margin-top: auto;
}

.qv-add-btn {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qv-add-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.2);
}

.qv-view-detail {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #888;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.qv-view-detail:hover {
    color: #111;
}

@media (max-width: 768px) {
    .quickview-modal {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }
    .qv-image-side {
        padding: 30px;
    }
    .qv-image-side img {
        max-height: 250px;
    }
    .qv-content-side {
        padding: 30px;
    }
    .qv-title {
        font-size: 22px;
    }
}

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-overlay.hidden {
    display: none;
}

.age-modal {
    background: #fff;
    border-radius: 8px;
    padding: 50px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: ageModalIn 0.4s ease;
}

@keyframes ageModalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #111;
    margin-bottom: 15px;
}

.age-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 35px;
    border: 2px solid #111;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.age-btn-yes {
    background: #111;
    color: #fff;
}

.age-btn-yes:hover {
    background: #333;
}

.age-btn-no {
    background: #fff;
    color: #111;
}

.age-btn-no:hover {
    background: #f5f5f5;
}

@media (max-width: 576px) {
    .age-modal {
        padding: 35px 25px;
    }
    .age-title {
        font-size: 20px;
    }
    .age-text {
        font-size: 13px;
    }
    .age-btn {
        padding: 12px 25px;
        font-size: 12px;
    }
}

/* ===== NAVBAR CSS ===== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    background: transparent;
    padding: 20px 0;
    transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}



.navbar.menu-open {
    background: #000000 !important;
}

.navbar .container {
    position: relative;
    display: flex;
    align-items: center;
}


.navbar-brand {
    max-width: 100px;
    height: auto;
    padding: 10px 0;
}

.navbar-brand img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .navbar-brand {
        max-width: 140px;
    }
    .navbar-brand img {
        max-height: 40px;
    }
}

/* ===== COLLECTIONS DROPDOWN ===== */
.dropdown-custom {
    position: relative;
}

.dropdown-toggle-custom {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown-custom:hover .dropdown-arrow,
.dropdown-custom.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: rgba(20, 20, 20, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 5000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.dropdown-custom:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-category {
    padding: 0;
}

.dropdown-category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 22px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-category-title:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: #cc0000;
    color: #ff4444;
}

.dropdown-category-title .sub-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.4);
}

.dropdown-category.open .dropdown-category-title .sub-arrow {
    transform: rotate(90deg);
    color: #ff4444;
}

.dropdown-category.open .dropdown-category-title {
    color: #ff4444;
    border-left-color: #cc0000;
    background: rgba(255, 255, 255, 0.05);
}

.sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.dropdown-category.open .sub-menu {
    max-height: 300px;
}

.sub-menu li a {
    display: block;
    padding: 10px 22px 10px 35px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.sub-menu li a:hover {
    color: #fff;
    background: rgba(204, 0, 0, 0.15);
    border-left-color: #cc0000;
    padding-left: 40px;
}

/* Divider between categories */
.dropdown-category + .dropdown-category {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Mobile dropdown styles */
@media (max-width: 991px) {
    .dropdown-menu-custom {
        position: static;
        min-width: 100%;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
        padding: 0;
    }

    .dropdown-custom.open .dropdown-menu-custom {
        opacity: 1;
        visibility: visible;
        max-height: 600px;
        padding: 5px 0;
    }

    .dropdown-category-title {
        padding: 10px 20px;
        font-size: 12px;
    }

    .sub-menu li a {
        padding: 8px 20px 8px 40px;
        font-size: 11px;
    }
}

.nav-link {
    color: #fff !important;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}


.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #cc0000;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Mobile Navbar Collapse */
@media (max-width: 991px) {
    .navbar.menu-open {
        background: #000 !important;
        height: 100vh;
        overflow-y: auto;
        position: fixed;
    }

    .navbar-collapse {
        background: #000;
        margin-top: 20px;
        padding-bottom: 50px;
        border: none;
        max-height: none;
    }

    .navbar-nav {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
    }

    .navbar-nav .nav-link {
        padding: 15px 0 !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 18px;
        text-align: left;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    /* Adjust search/cart icons for mobile menu */
    .navbar-collapse .d-flex {
        justify-content: flex-start !important;
        gap: 30px !important;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    padding: 6px 10px;
    border-radius: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Nav Icons Styling */
.nav-icon-link {
    color: white !important;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-icon-link:hover {
    color: #bd0028 !important;
    transform: scale(1.1);
}

.nav-icon-link .badge-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #bd0028;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
}
/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px !important;
    height: 50px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    z-index: 20 !important;
}

.carousel-control-prev {
    left: 20px !important;
}

.carousel-control-next {
    right: 20px !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #cc0000 !important;
    border-color: #cc0000 !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 18px !important;
    color: white !important;
}

/* ===== CAROUSEL DOTS ===== */
.carousel-indicators.custom-dots {
    margin-bottom: 20px;
}

.carousel-indicators.custom-dots [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    border: 2px solid transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators.custom-dots .active {
    background-color: #cc0000;
    opacity: 1;
    transform: scale(1.2);
    border-color: #fff;
}

/* ===== HERO SLIDER ===== */
#heroSlider {
    width: 100%;
}

#heroSlider .carousel-inner {
    height: 650px;
}

.carousel-item {
    position: relative;
    height: 650px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle-slider {
    text-transform: uppercase;
    position: absolute;
    top: 34%;
    left: 14%;
    color: rgb(255, 255, 255);
    font-size: clamp(14px, 2vw, 20px);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.5;
    animation: slideDown 0.8s ease-out;
    z-index: 10;
    max-width: 80%;
}

.title-slider {
    text-transform: uppercase;
    position: absolute;
    top: 40%;
    left: 14%;
    color: rgb(255, 255, 255);
    font-size: clamp(30px, 7vw, 78px);
    font-family: Audiowide, sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
    text-align: left;
    animation: slideDown 1s ease-out 0.2s both;
    z-index: 10;
    max-width: 75%;
    line-height: 1.1;
}

.description-slider {
    position: absolute;
    top: 64%;
    left: 14%;
    color: rgb(255, 255, 255);
    font-size: clamp(12px, 1.8vw, 20px);
    font-family: Montserrat, sans-serif;
    font-weight: 530;
    font-style: normal;
    line-height: 1.5;
    text-align: left;
    animation: slideDown 1s ease-out 0.4s both;
    z-index: 10;
    max-width: 70%;
}

.button-slider {
    text-transform: uppercase;
    position: absolute;
    border: 1px solid rgb(243, 243, 243);
    top: 74%;
    left: 14%;
    color: white;
    padding: clamp(8px, 1.2vw, 12px) clamp(16px, 2.5vw, 30px);
    text-decoration: none;
    font-family: Montserrat, sans-serif;
    font-weight: 200;
    font-size: clamp(12px, 1.4vw, 16px);
    cursor: pointer;
    animation: slideDown 1s ease-out 0.6s both;
    z-index: 10;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.button-slider i {
    transition: transform 0.3s ease;
}

.button-slider:hover {
    background: #cc0000;
    color: #fff !important;
    border-color: #cc0000;
}

.button-slider:hover i {
    transform: translateX(5px);
}

/* RESPONSIVE HERO */
@media (max-width: 1158px) {
    #heroSlider .carousel-inner {
        height: 580px;
    }
    .carousel-item {
        height: 580px;
    }
    .carousel-item img {
        height: 100%;
    }
    .title-slider{
            font-size: 55px;
        }

}

@media (max-width: 991px) {
    #heroSlider .carousel-inner {
        height: 520px;
    }
    .carousel-item {
        height: 520px;
    }
    .carousel-item img {
        height: 100%;
    }
             .title-slider, .description-slider {
                left: 14% !important;
                transform: translateY(0); /* Fixed horizontal tearing */
                width: 76%; /* Safe padding relative to 14% left */
            }
            .subtitle-slider{
                top: 40%;
            }
            .title-slider {
                top: 45% !important;
                font-size: 60px;
                line-height: 1.1;
            }
            .subtitle-slider, .description-slider {
                font-size: 16px;
            }
            .description-slider{
                top: 74% !important;
            }
            .button-slider{
                top: 82% !important;
                padding: 10px 20px;
                font-size: 16px;
            }

}

@media (max-width: 768px) {
    #heroSlider .carousel-inner {
        height: 400px;
    }
    .carousel-item {
        height: 400px;
    }
    .carousel-item img {
        height: 100%;
    }
            .title-slider {
                font-size: 34px;
                top: 38% !important;
            }
            .subtitle-slider {
                top: 30% !important;
                font-size: 16px;
            }
            .description-slider {
                top: 62% !important;
                font-size: 12px;
                
            }
            .button-slider {
                top: 70% !important;
        padding: 7px 13px;
        font-size: 11px;
            }
}

@media (max-width: 576px) {
    #heroSlider .carousel-inner {
        height: 320px;
    }
    .carousel-item {
        height: 320px;
    }
    .carousel-item img {
        height: 100%;
    }
    .subtitle-slider {
        top: 25%;
        left: 14%;
    }
    .title-slider {
        font-size: 30px;
                top: 42% !important;
    }
    .description-slider {
           top: 68% !important;
                font-size: 9px;
    }
    .button-slider {
        top: 78% !important;
        left: 14% !important;
        padding: 6px 12px !important;
        font-size: 10px !important;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 38px !important;
        height: 38px !important;
    }
    .carousel-control-prev i,
    .carousel-control-next i {
        font-size: 14px !important;
    }
}

@media (max-width: 400px) {
    .subtitle-slider{
        top: 69px !important; 
        font-size: 12px;
        left: 54px;
    }
    .title-slider{
        font-size: 26px;
    }
    .carousel-item img {
        height: 34vh;
    }
    .description-slider {
        display: none;
    }
    .button-slider {
        top: 68%;
    }
}


/* ===== TOP CATEGORIES SECTION CSS ===== */
.section-title {
    font-weight: 800;
    padding-left: 15px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: clamp(20px, 3vw, 32px);
}

@keyframes cardShake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    50% { transform: translateX(8px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}

.category-item {
    text-decoration: none;
    color: #fff;
    display: block;
    text-align: center;
    transition: opacity 0.3s ease;
}

.category-box {
    background-color: #f6f6f6;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .category-box {
        height: 220px;
    }
}

.category-item:hover {
    animation: cardShake 0.6s ease-in-out 1;
}

.category-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.category-label {
    margin-top: 15px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
}

@media (max-width: 576px) {
    .category-box {
        height: 120px;
        padding: 12px;
    }
    .category-label {
        font-size: 0.7rem;
        margin-top: 10px;
    }
}

@media (max-width: 400px) {
    .category-box {
        height: 100px;
        padding: 10px;
    }
}


/* ===== BANNER WRAPPERS (CSS) ===== */
.banner-wrapper {
    padding: 0%;
    margin: 0%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px;
}

.bwp-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease-in-out;
}

.banner-wrapper:hover .bwp-image img {
    transform: scale(1.1);
}

.banner-wrapper-infor {
    position: absolute;
    bottom: 30%;
    left: 12%;
    color: rgb(255, 255, 255);
    z-index: 5;
    max-width: 80%;
}

.title-banner {
    font-family: 'Audiowide', cursive;
    font-style: normal;
    font-weight: 400;
    color: rgb(255, 255, 255);
    font-size: clamp(22px, 4vw, 50px);
    line-height: 1.2;
    margin-bottom: 15px;
}

.bwp-image-description {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    color: rgb(255, 255, 255);
    font-size: clamp(11px, 1.4vw, 16px);
    line-height: 1.6;
    transition: background 0.3s ease;
}

.button-banner {
    background-color: white;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    color: rgb(0, 0, 0);
    font-size: clamp(10px, 1.2vw, 12px);
    line-height: 35px;
    text-decoration: none;
    display: inline-block;
    padding: 0 20px;
    border: 2px solid white;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.button-banner:hover {
    background-color: #cc0000;
    border-color: #cc0000;
    color: #fff !important;
}

@media (max-width: 991px) {
    .banner-wrapper-infor {
        bottom: 25%;
    }
}

@media (max-width: 768px) {
    .banner-wrapper-infor {
        bottom: 20%;
        left: 8%;
    }
}

@media (max-width: 576px) {
    .banner-wrapper-infor {
        bottom: 15%;
        left: 5%;
    }
    .button-banner {
        padding: 0 12px;
        line-height: 28px;
    }
}


/* ===== HERO BANNER (E-LIQUID) ===== */
.hero-banner {
    font-style: normal;
    font-weight: 400;
    color: rgb(134, 134, 134);
    font-size: 14px;
    line-height: 24px;
    background-image: url('../img/E\ LIQUID\ FLAVOUR.png');
    background-size: cover;
    background-position: center;
    height: 14rem;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    color: rgb(255, 255, 255);
    padding: 20px;
}

.hero-content {
    text-align: center;
    padding: 0 15px;
}

.hero-content h1 {
    font-family: 'Audiowide', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(255, 255, 255);
    font-size: clamp(18px, 4vw, 36px);
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.shop-btn {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    color: rgb(255, 255, 255);
    font-size: 12px;
    line-height: 35px;
    display: inline-block;
    padding: 0 35px;
    border: 2px solid white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background-color: white;
    color: black;
    animation: shake 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 200px;
    }
    .shop-btn {
        padding: 0 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 160px;
    }
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
    100% { transform: translateX(0); }
}


/* ===== TABBING / PRODUCT SECTION ===== */
.product-section-wrapper {
    padding: 0 20px;
    overflow: hidden;
}

.tabs-nav {
    text-align: center;
}

.tab-link {
    background: none;
    border: 2px solid transparent;
    padding: 15px 25px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    color: black;
    font-size: clamp(12px, 1.6vw, 18px);
    line-height: 31px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-link:hover {
    color: #bd0028;
    border: 2px solid #bd0028;
}

.tab-link.active {
    color: #bd0028;
    border: 2px solid #bd0028;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 60px;
    height: 2px;
}

/* Grid: 5 Columns desktop */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 20px;
    padding: 0 15px;
}

/* Product Card */
.product-item {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-img-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(201, 197, 197);
    /* background: #f9f9f9; */
    padding: 20px;
    transition: all 0.3s ease;
}

.product-img-box img {
    width: 100%;
    transition: opacity 0.2s ease-in-out, transform 0.3s ease;
    opacity: 1;
}

.product-img-box .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    object-fit: contain;
    padding: 20px; /* Matching the container padding */
}

.product-item:hover .hover-img {
    opacity: 1;
    visibility: visible;
}

.product-item:hover .primary-img {
    opacity: 0;
}

/* Badges */
/* Cart Notification Toast */
.cart-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-toast.show {
    bottom: 30px;
    opacity: 1;
}

.badge-count {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.cart-toast i {
    color: #28a745;
}

.badge.yellow {
    background: var(--badge-#dc3545, #e6a817);
}

.badge.red {
    background: var(--primary-red, #bd0028);
}

.badge.black {
    background: #333;
}

/* Hover Action Icons */
.action-icons {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    transition: 0.4s ease;
    opacity: 0;
}

.product-item:hover .action-icons {
    bottom: 20px;
    opacity: 1;
}

.action-icons button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #333;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
}

.action-icons button:hover {
    background: var(--primary-red, #bd0028);
    color: #fff;
}

/* Info Section */
.product-info {
   
    padding: 15px 5px;
}

.brand {
    color: var(--primary-red, #bd0028);
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}
.brand-by{
    color:rgb(109, 107, 107);
}

.title {
    font-size: 18px;
    margin: 0 0 8px;
    color: #222;
    font-weight: 600;
}

.rating {
    color: #ccc;
    font-size: 11px;
    margin-bottom: 8px;
}

.rating .review-count {
    color: #aaa;
    margin-left: 5px;
}

.price {
    color: var(--primary-red, #bd0028);
    font-weight: 700;
    font-size: 17px;
}

.price .old {
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 5px;
}

/* Out of Stock */
.out-of-stock img {
    opacity: 0.5;
    filter: grayscale(1);
}

/* Tab Content Display */
.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
}

/* Responsive Product Grid */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .tab-link {
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
    .tab-link {
        padding: 8px 12px;
    }
    .action-icons {
        opacity: 1;
        bottom: 10px;
    }
    .action-icons button {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .product-info .title {
        font-size: 14px;
    }
    .product-info .brand {
        font-size: 13px;
    }
    .product-info .price {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 10px;
    }
    .tabs-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .tab-link {
        padding: 6px 10px;
    }
    .action-icons button {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    .product-img-box {
        padding: 10px;
    }
}

@media (max-width: 400px) {
    .product-grid {
        gap: 10px 8px;
    }
    .product-info {
        padding: 8px 3px;
    }
    .product-info .title {
        font-size: 12px;
    }
}


/* ===== BANNER SECTION ===== */
.banner-section {
    background-color: #fff;
}

.banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    display: flex;
    align-items: center;
    color: white;
    cursor: pointer;
}

.large-card {
    height: 500px;
}

.small-card {
    height: 238px;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.banner-card:hover .banner-img {
    transform: scale(1.1);
}

.banner-content {
    left: 4%;
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
}

.banner-content-title {
    font-family: 'Audiowide', cursive;
    font-style: normal;
    font-weight: 400;
    color: rgb(255, 255, 255);
    font-size: clamp(24px, 4vw, 50px);
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-card-title {
    font-family: 'Audiowide', cursive;
    font-style: normal;
    font-weight: 400;
    color: rgb(255, 255, 255);
    font-size: clamp(20px, 3vw, 34px);
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-content-para,
.banner-card-para {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    color: rgb(255, 255, 255);
    font-size: clamp(12px, 1.4vw, 16px);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-shop {
    display: inline-block;
    background-color: white;
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-shop:hover {
    background-color: #bd0028;
    color: #fff !important;
}

@media (max-width: 991px) {
    .large-card {
        height: 400px;
    }
    .small-card {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .large-card,
    .small-card {
        height: 300px;
    }
    .banner-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .large-card,
    .small-card {
        height: 220px;
    }
    .banner-content {
        padding: 15px;
    }
    .btn-shop {
        padding: 8px 20px;
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .large-card,
    .small-card {
        height: 180px;
    }
}


/* ===== BRANDS SECTION ===== */
.brands-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    color: rgb(0, 0, 0);
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.2;
}

.brand-item {
    height: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 20px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.brand-img {
    max-height: 7rem;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.brand-item:hover {
    background-color: #fcfcfc;
}

.brand-item:hover .brand-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .brand-item {
        height: 10rem;
        padding: 15px;
    }
    .brand-img {
        max-height: 5rem;
    }
}

@media (max-width: 576px) {
    .brand-item {
        height: 8rem;
        padding: 10px;
    }
    .brand-img {
        max-height: 3.5rem;
    }
}


/* ===== FOOTER ===== */
.footer-section {
    background-color: #fff;
    border-top: 1px solid #f1f1f1;
    font-family: 'Arial', sans-serif;
}

.footer-navbar-brand img {
    max-width: 130px;
    width: 100%;
    height: auto;
}

.footer-heading {
    font-weight: 700;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

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

.footer-links li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #000;
}

.footer-divider {
    border-color: #eeeeee;
    opacity: 1;
    margin: 0;
}

/* Social Icons */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

/* Payment Icons */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.payment-methods img {
    height: 24px;
    opacity: 0.8;
}

.clearpay-badge {
    background: #a2ffe3;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Back to Top Button */
.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #000;
    color: #fff;
}

/* Copyright & Mini Menu */
.copyright-text {
    color: #999;
    font-size: 0.85rem;
}

.footer-mini-menu li a {
    font-size: 0.75rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    margin-left: 15px;
}

.footer-mini-menu li a:hover {
    color: #666;
}

@media (max-width: 768px) {
    .footer-heading {
        margin-bottom: 15px;
        font-size: 0.8rem;
    }
    .footer-links li {
        margin-bottom: 8px;
    }
    .footer-links li a {
        font-size: 0.8rem;
    }
    .footer-mini-menu li a {
        margin-left: 8px;
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
    }
}


/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for child elements */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }

/* ===== PRODUCT PAGE & FILTERS ===== */
.page-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/blog/blog-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 0;
    padding-top: 100px; /* Space for navbar */
}

.page-hero-title {
    font-family: 'Audiowide', sans-serif;
    font-size: clamp(32px, 5vw, 60px);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.page-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}
@media (max-width: 991px) {
    .page-hero {
        height: 300px;
        padding-top: 80px;
    }
}

.filter-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #cc0000;
    display: inline-block;
    padding-bottom: 5px;
}

.filter-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
    display: block;
}

.search-input-wrapper {
    position: relative;
}

.filter-input {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 10px 15px;
    padding-right: 40px;
    font-size: 14px;
}

.filter-input:focus {
    border-color: #cc0000;
    box-shadow: none;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.custom-range::-webkit-slider-thumb {
    background: #cc0000;
}

.custom-range::-moz-range-thumb {
    background: #cc0000;
}

.custom-range::-ms-thumb {
    background: #cc0000;
}

.price-val {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

#clearFilters:hover {
    background-color: #111;
    color: #fff;
}

/* ===== SHOPPING CART UI ===== */
.cart-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-toast.show {
    bottom: 30px;
    opacity: 1;
}
.cart-toast i {
    color: #28a745;
}
.badge-count {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

/* ===== NAVBAR INTEGRATED SEARCH BAR ===== */
.navbar-search-overlay {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 0;
    height: 90%;
    background: #111;
    z-index: 10002;
    display: flex;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.navbar-search-overlay.active {
    width: calc(100% - 30px);
    opacity: 1;
    pointer-events: all;
    padding: 0 20px;
    overflow: visible;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.search-input-wrapper i.fa-search {
    color: #bd0028;
    font-size: 18px;
}

.search-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 10px 0;
}

.search-input-wrapper input:focus {
    outline: none;
}

#closeSearch {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    padding: 5px;
}

#closeSearch:hover {
    color: #bd0028;
    transform: rotate(90deg);
}

/* Search Dropdown Results */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 20px 20px;
    max-height: 500px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 30px;
    z-index: 4999;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.navbar-search-overlay.active .search-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.search-popular-queries h3 {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.popular-tag {
    background: rgba(255,255,255,0.05);
    color: white;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.popular-tag:hover {
    background: #bd0028;
    transform: translateY(-2px);
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 20px;
}

.search-result-item {
    background: rgba(255,255,255,0.02);
    padding: 10px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: 0.3s;
}

.search-result-item:hover {
    background: rgba(255,255,255,0.05);
}

.search-result-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
}

.search-result-brand {
    font-size: 9px;
    color: #bd0028;
    text-transform: uppercase;
    font-weight: 700;
}

.search-result-title {
    font-size: 12px;
    color: white;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
}

.search-result-price {
    font-size: 12px;
    color: #999;
}

@media (max-width: 991px) {
    .navbar-search-overlay.active {
        width: 100%;
        right: 0;
        border-radius: 0;
        height: 60px;
    }
    .search-dropdown {
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .search-overlay {
        padding-top: 150px;
    }
    .search-input-group input {
        font-size: 24px;
    }
    .search-results-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }
    .search-result-title {
        font-size: 12px;
    }
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100%;
    background: #111;
    z-index: 10001;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header h3 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

#closeCartBtn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

#closeCartBtn:hover {
    color: #bd0028;
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
}

.empty-cart-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.empty-cart-msg i {
    font-size: 50px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.2);
}

.empty-cart-msg p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-bottom: 25px;
}

.btn-shop-cart {
    background: #bd0028;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn-shop-cart:hover {
    background: #a00000;
    color: #fff;
}

.cart-footer {
    padding: 25px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tax-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

.checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #fff;
    color: #000;
    padding: 15px 0;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: #bd0028;
    color: #fff;
}

@media (max-width: 576px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}


/* ===== CHECKOUT PAGE ===== */
.checkout-page {
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.checkout-left {
    min-height: 100vh;
}

.checkout-right {
    background-color: #f5f5f5 !important;
    min-height: 100vh;
}

@media (min-width: 992px) {
    .checkout-form-wrapper {
        max-width: 600px;
        margin-right: 0;
        margin-left: auto;
        padding-right: 2rem;
    }
    .checkout-summary-wrapper {
        max-width: 480px;
        margin-left: 0;
        margin-right: auto;
        padding-left: 2rem;
    }
}

.checkout-page .form-control,
.checkout-page .form-select {
    border-radius: 6px;
    border-color: #dadada;
}

.checkout-page .form-control:focus,
.checkout-page .form-select:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 0.15rem rgba(0, 86, 179, 0.25);
}

/* Override browser autofill styling */
.checkout-page .form-control:-webkit-autofill,
.checkout-page .form-select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset !important;
    -webkit-text-fill-color: #ffffff !important;
    border-color: #dadada !important;
}

.checkout-page .form-control:-webkit-autofill:focus,
.checkout-page .form-select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset, 0 0 0 0.15rem rgba(0, 86, 179, 0.25) !important;
    -webkit-text-fill-color: #ffffff !important;
    border-color: #0056b3 !important;
}

.checkout-page .form-check-input:checked {
    background-color: #0056b3;
    border-color: #0056b3;
}

.checkout-box-select {
    cursor: pointer;
    transition: all 0.2s;
}

.checkout-radio-group {
    overflow: hidden;
}

.checkout-radio-group > div {
    cursor: pointer;
}

.checkout-item-img-wrap {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.1);
}

.checkout-item-img-wrap img {
    object-fit: contain;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}
.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

/* ===== AUTH PAGES (LOGIN/SIGNUP) ===== */
.auth-page {
    background: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-card {
    background: #ffffff;
    max-width: 450px;
    width: 100%;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
}

.form-floating > .form-control {
    border-radius: 8px;
    border-color: #dee2e6;
}

.form-floating > .form-control:focus {
    border-color: #bd0028;
    box-shadow: 0 0 0 0.2rem rgba(189, 0, 40, 0.1);
}

.auth-link {
    color: #bd0028;
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: #a00000;
    text-decoration: underline;
}

.btn-auth {
    background-color: #bd0028;
    color: #ffffff;
    border: none;
    padding: 12px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-auth:hover {
    background-color: #a00000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(189, 0, 40, 0.3);
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #adb5bd;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.auth-divider span {
    padding: 0 10px;
    font-size: 14px;
}

.btn-social {
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-facebook {
    background-color: #3b5998;
    color: #ffffff;
    border: none;
}

.btn-facebook:hover {
    background-color: #2d4373;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-google {
    background-color: #ffffff;
    color: #444;
    border: 1px solid #dee2e6;
}

.btn-google:hover {
    background-color: #f1f3f5;
    transform: translateY(-1px);
}

/* About Page STYLES */

       

        .about-story-img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            width: 100%;
            height: auto;
            clip-path: polygon(10% 0, 100% 0, 100% 90%, 0 100%, 0 10%);
        }

     

        .about-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        .value-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(204, 0, 0, 0.1);
            border-color: #cc0000;
        }

        .value-icon {
            font-size: 40px;
            color: #cc0000;
            margin-bottom: 20px;
        }

        .value-title {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 24px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .map-container {
            position: relative;
            height: 450px;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .map-container iframe {
            border: 0;
            width: 100%;
            height: 100%;
        }

        .bg-gradient-dark {
            background: linear-gradient(135deg, #111 0%, #333 100%);
            color: #fff;
        }

        .bg-gradient-dark .about-title {
            color: #fff;
        }

        .bg-gradient-dark .about-text {
            color: #ccc;
        }

        /* Responsive Fixes */
        @media (max-width: 991px) {
            .section-padding {
                padding: 60px 0;
            }
        }


         /* Styles for Contact Page */

        .section-padding {
            padding: 80px 0;
        }

        .contact-info-card {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            margin-bottom: 30px;
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            height: 100%;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(204, 0, 0, 0.1);
            border-color: #cc0000;
        }

        .contact-icon {
            font-size: 32px;
            color: #cc0000;
            margin-bottom: 15px;
        }

        .contact-card-title {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 20px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .contact-card-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .contact-form-wrapper {
            background: #fff;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border: 1px solid #eee;
        }

        .form-label {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 1px;
            color: #333;
        }

        .form-control {
            border-radius: 8px;
            padding: 12px 15px;
            border: 2px solid #f0f0f0;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: #cc0000;
            box-shadow: none;
            background-color: #fff;
        }

        .btn-submit {
            background: #111;
            color: #fff;
            padding: 14px 40px;
            border-radius: 8px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            border: none;
            width: 100%;
        }

        .btn-submit:hover {
            background: #cc0000;
            transform: scale(1.02);
            color: #fff;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
        }

        .whatsapp-btn {
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1) rotate(10deg);
            background: #20b858;
            color: white;
        }

        .map-wrapper {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            height: 400px;
        }

        /* Animation */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .contact-form-wrapper {
                padding: 30px 20px;
            }
        }





/* ===== BLOG PAGE STYLES ===== */

.blog-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/blog/blog-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 0;
    padding-top: 100px; /* Space for navbar */
}

.blog-hero-title {
    font-family: 'Audiowide', sans-serif;
    font-size: clamp(32px, 5vw, 60px);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.blog-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #cc0000;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 10;
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.blog-meta i {
    color: #cc0000;
    margin-right: 5px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.blog-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #cc0000;
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: #cc0000;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Sidebar Styling */
.sidebar-widget {
    background: #fdfdfd;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #cc0000;
}

.blog-search-form {
    position: relative;
}

.blog-search-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.blog-search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: #cc0000;
    color: #fff;
    border: none;
    width: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.blog-search-form button:hover {
    background: #990000;
}

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

.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 10px;
    background: #fff;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-list li a:hover {
    background: #fff;
    color: #cc0000;
    border-color: #eee;
    padding-left: 15px;
}

.category-list li a span {
    background: #eee;
    color: #888;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 11px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.popular-post-item img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.popular-post-info h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-post-info h6 a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post-info h6 a:hover {
    color: #cc0000;
}

.popular-post-info span {
    font-size: 12px;
    color: #888;
}

.newsletter-sidebar {
    background: #111;
    color: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
}

.newsletter-sidebar h4 {
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-sidebar p {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 20px;
}

.newsletter-sidebar input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    margin-bottom: 15px;
    font-size: 14px;
}

.btn-subscribe {
    width: 100%;
    background: #cc0000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn-subscribe:hover {
    background: #990000;
}

/* Pagination */
.page-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #111;
    text-decoration: none;
    margin: 0 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link.active,
.page-link:hover {
    background: #cc0000;
    color: #fff !important;
    border-color: #cc0000;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 991px) {
    .blog-hero {
        height: 300px;
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    .blog-card-img {
        height: 200px;
    }
}












       /*  Styles for Privacy Page */
      
    
        .privacy-content {
            background: #fff;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0f0f0;
        }

        .privacy-section {
            margin-bottom: 40px;
        }

        .privacy-section-title {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 28px;
            color: #111;
            margin-bottom: 20px;
            text-transform: uppercase;
            border-bottom: 2px solid #cc0000;
            display: inline-block;
            padding-bottom: 10px;
        }

        .privacy-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }

        .privacy-list {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .privacy-list li {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 10px;
            list-style-type: none;
            position: relative;
        }

        .privacy-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #cc0000;
            position: absolute;
            left: -25px;
            top: 0;
        }

        /* Animation */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .privacy-content {
                padding: 30px 20px;
            }
        }




          /* vape-data-page Container */
        /* Main Container */
       
        
        /* Left Sticky Image */
        .product-image-section { flex: 1.2; 
            position: sticky; 
            top: 100px; 
            height: fit-content; 
            text-align: center; 
            border: 3px solid #f1f1f1; 
        }
        .product-image-section img { 
            width: 100%; 
            max-width: 36rem; 
            object-fit: contain; 
        }

        /* Right Content */
        .product-details-section { 
            flex: 1; 
        }
        .product-brand { 
            font-size: 14px; 
            color: #777; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
            margin-bottom: 5px; 
        }
        .product-brand-title{ 
            font-size: 30px; 
            font-weight: 400; 
            line-height: 1.2; 
            margin-bottom: 10px; 
        }
        .product-rating { 
            font-size: 20px; 
            color: #f39c12; 
            margin-bottom: 20px; 
        }
        .product-price { 
            font-size: 20px; 
            font-weight: bold; 
            margin-bottom: 20px; 
        }
        .sold-out-btn { 
            width: 100%; 
            padding: 15px; 
            background: #999; 
            color: #fff; 
            border: none; 
            font-weight: bold; 
            cursor: not-allowed; 
            margin-bottom: 25px; 
        }
        .shipping-note { 
            font-size: 13px; 
            color: #555; 
            background: #f9f9f9; 
            padding: 15px; 
            border-radius: 4px; 
            margin-bottom: 30px; 
        }

        /* Long Description */
        .product-description-title { 
            font-size: 18px; 
            font-weight: bold; 
            margin: 30px 0 15px; 
            color: #222; 
        }
        .product-description-text { 
            font-size: 14px; 
            margin-bottom: 15px; 
            color: #444; 
        }
        .product-description-list { 
            padding-left: 20px; 
            margin-bottom: 20px; 
            font-size: 14px; 
            color: #444; 
        }
        .product-description-list-item { 
            margin-bottom: 8px; }

        /* Relevant Products Section */
        .relevant-products { 
            padding: 60px 5%; 
            border-top: 1px solid #eee; 
            background: #fdfdfd; 
        }
        .product-relevant-title { 
            text-align: center; 
            font-size: 24px; 
            margin-bottom: 40px; 
            font-weight: 500; 
        }
        .product-card-link {
            text-decoration: none !important;
            color: inherit !important;
            display: block;
        }
        .product-relevant-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 20px; 
            max-width: 1200px; 
            margin: auto; 
        }
        .product-card { 
            background: #fff; 
            padding: 15px; 
            position: relative; 
            border-radius: 4px; 
            border: 1px solid #f1f1f1; 
            transition: transform 0.2s; 
        }
        .product-card:hover { 
            transform: translateY(-5px); 
            border-color: #ddd; 
        }
        .sale-badge { 
            position: absolute; 
            top: 10px; 
            left: 10px; 
            background: #28a745; 
            color: #fff; 
            padding: 3px 8px; 
            font-size: 10px; 
            border-radius: 3px; 
            font-weight: bold; 
        }
        .product-card img { 
            width: 100%; 
            background: #ffffff; 
            padding: 20px; 
            border-radius: 4px; 
            margin-bottom: 15px; 
            transition: 0.5s ease-in-out;
        }
        .product-card .hover-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            object-fit: contain;
            padding: 20px;
            z-index: 1;
        }
        .product-card:hover .hover-img {
            opacity: 1;
            visibility: visible;
        }
        .product-card:hover .primary-img {
            opacity: 0;
        }
        .product-title { 
            font-size: 13px; 
            font-weight: 500; 
            height: 3.2em; 
            overflow: hidden; 
            display: -webkit-box; 
            -webkit-line-clamp: 2; 
            line-clamp: 2; 
            -webkit-box-orient: vertical; 
            margin-bottom: 10px; 
        }
        .product-price { 
            font-size: 14px; 
        }
        .product-price .old { 
            text-decoration: line-through; 
            color: #999; 
            margin-right: 5px; 
        }
        .product-price .new { 
            font-weight: bold; 
            color: #333; 
        }
        .stars { 
            color: #f39c12; 
            font-size: 11px; 
            margin-bottom: 5px; 
        }

        /* Dynamic Button Styles */
        .add-to-cart-btn-dynamic { 
            width: 100%; 
            padding: 15px; 
            background-color: #333; 
            color: #fff; 
            border: none; 
            font-size: 16px; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
            cursor: pointer; 
            margin-bottom: 25px; 
            transition: background 0.3s; 
        }
        .add-to-cart-btn-dynamic:hover { 
            background-color: #000; 
        }
        .add-to-cart-btn-dynamic.sold-out { 
            background-color: #a3a3a3; 
            cursor: not-allowed; 
        }

        /* Quantity Selector */
        .product-quantity {
            margin-bottom: 25px;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: fit-content;
            overflow: hidden;
            background: #fff;
        }

        .qty-btn {
            background: #f9f9f9;
            border: none;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #333;
        }

        .qty-btn:hover {
            background: #eee;
            color: #cc0000;
        }

        .quantity-selector input {
            width: 50px;
            height: 45px;
            border: none;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            color: #111;
            
        }

        .quantity-selector input::-webkit-outer-spin-button,
        .quantity-selector input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        /* Review Section */
        .review-cta { 
            text-align: center; 
            padding: 40px 0; 
            border-top: 1px solid #eee; 
        }
        .write-review-btn { 
            padding: 10px 20px; 
            border: 1px solid #555; 
            background: #fff; 
            font-weight: bold; 
            cursor: pointer; 
            font-size: 13px; 
        }

        /* Floating Widgets */
      
        .overall-reviews { 
            position: fixed; 
            bottom: 20px; 
            right: 20px; 
            background: #fff; 
            color: #333; 
            padding: 12px 20px; 
            border-radius: 50px; 
            font-size: 12px; 
            font-weight: bold; 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
            border: 1px solid #eee; 
        }

        /* Mobile View */
        @media (max-width: 900px) {
            .product-container { 
                flex-direction: column; 
            }
            .product-image-section { 
                position: relative; 
                top: 0; 
            }
            .product-grid { 
                grid-template-columns: repeat(2, 1fr); 
            }
            header { 
                padding: 15px; 
            }
            .nav-links { 
                display: none; 
            }
        }
/* ===== LOGIN & SIGNUP PAGE STYLES ===== */
:root {
    --primary-crimson: #cc0000;
    --dark-bg: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

.auth-page {
    background-color: var(--dark-bg);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(204, 0, 0, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(204, 0, 0, 0.05) 0%, transparent 40%);
}

.auth-container {
    width: 100%;
    max-width: 1000px;
    min-height: 600px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: fadeInAuth 0.8s ease-out;
}

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

.auth-panel {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-left: 1px solid var(--primary-crimson);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    transition: all 0.7s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 5;
    color: #fff;
}

.auth-container.signup-active .auth-overlay {
    left: 0;
    border-left: none;
    border-right: 1px solid var(--primary-crimson);
}

.auth-overlay h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.auth-overlay p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
    max-width: 300px;
}

.switch-btn {
    background: transparent;
    border: 2px solid var(--primary-crimson);
    color: #fff;
    padding: 12px 35px;
    border-radius: 0;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.switch-btn:hover {
    background: var(--primary-crimson);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.4);
}

.form-header {
    margin-bottom: 35px;
}

.form-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-header h2 i {
    color: var(--primary-crimson);
    font-size: 0.8em;
}

.form-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-crimson);
    font-size: 14px;
}

.form-control-custom {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0 10px 30px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 0;
    transition: all 0.3s ease;
    padding-right: 45px;
}

.form-control-custom:focus {
    outline: none;
    border-bottom-color: var(--primary-crimson);
    box-shadow: none;
}

.form-extras {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -10px;
    margin-bottom: 35px;
    font-size: 12px;
}

.form-extras a {
    color: var(--primary-crimson);
    text-decoration: none;
    transition: opacity 0.3s;
}

.form-extras a:hover {
    opacity: 0.8;
}

.submit-btn {
    width: 100%;
    background: var(--primary-crimson);
    color: #fff;
    border: none;
    padding: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
}

.social-login {
    margin-top: 40px;
    text-align: center;
}

.social-login p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    position: relative;
}

.social-login p::before,
.social-login p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.social-login p::before { left: 0; }
.social-login p::after { right: 0; }

.social-icons-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.social-btn:hover {
    border-color: var(--primary-crimson);
    color: var(--primary-crimson);
    background: rgba(204, 0, 0, 0.05);
    transform: translateY(-3px);
}

.mobile-toggle {
    display: none;
    margin-top: 25px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.mobile-toggle span {
    color: var(--primary-crimson);
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 991px) {
    .auth-container {
        max-width: 500px;
        flex-direction: column;
        min-height: auto;
    }
    .auth-overlay {
        display: none;
    }
    .auth-panel {
        padding: 40px 30px;
    }
    .auth-container.signup-active .login-panel {
        display: none;
    }
    .auth-container:not(.signup-active) .signup-panel {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
}

.nav-icon-link.active {
    color: var(--primary-crimson) !important;
}


.password-toggle {
    position: absolute;
    right: 15px !important;
    left: auto !important;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 10px;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--primary-crimson);
}

/* ===== PRODUCT DETAIL PAGE LAYOUT ===== */
.product-container {
    display: flex;
    max-width: 1300px;
    margin: 172px auto 60px;
    padding: 0 20px;
    gap: 40px;
    align-items: flex-start;
}

.product-image-section {
    flex: 1.2;
    display: flex;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.main-image-wrapper {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.main-image-wrapper img {
    max-width: 96%;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.product-details-section {
    flex: 0.8;
}

@media (max-width: 991px) {
    .main-image-wrapper img {
        max-width: 46%;
    }
    .product-container {
        flex-direction: column;
       
    }
    .product-image-section {
        flex-direction: column;
        position: static;
        width: 100%;
    }
    .product-details-section {
        width: 100%;
    }
}

/* ===== PRODUCT THUMBNAIL GALLERY ===== */
.thumbnail-gallery {
    display: flex;
    flex-direction: column; /* Vertical sidebar */
    gap: 15px;
    width: 100px;
    order: -1; /* Puts on the left */
}

@media (max-width: 991px) {
    .thumbnail-gallery {
        flex-direction: row;
        width: 100%;
        order: 0;
        justify-content: center;
        margin-top: 15px;
    }
}

.thumbnail-item {
    width: 90px;
    height: 90px;
    border: 2px solid #f1f1f1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    min-height: 90px;
    min-width: 90px;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: #f5f5f5;
}

.thumbnail-item:hover {
    border-color: #cc0000;
    border-width: 2px;
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(204, 0, 0, 0.2);
}

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

.thumbnail-item.active {
    border-color: #cc0000;
    border-width: 2px;
    box-shadow: 0 8px 15px rgba(204, 0, 0, 0.15);
}

@media (max-width: 576px) {
    .thumbnail-item {
        width: 70px;
        height: 70px;
        padding: 5px;
    }
    .thumbnail-gallery {
        gap: 10px;
    }
}


/* ===== OTP VERIFICATION PAGE ===== */
    .otp-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 30px 0;
        }
        .otp-input {
            width: 60px;
            height: 65px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            font-family: 'Rajdhani', sans-serif;
            transition: all 0.3s ease;
        }
        .otp-input:focus {
            outline: none;
            border-color: var(--primary-crimson);
            background: rgba(204, 0, 0, 0.05);
            box-shadow: 0 0 15px rgba(204, 0, 0, 0.2);
        }
        /* Mobile adjustment */
        @media (max-width: 480px) {
            .otp-input {
                width: 50px;
                height: 55px;
                font-size: 20px;
            }
            .otp-container {
                gap: 10px;
            }
        }


        
        /* Overall page background */
        .checkout-page {
            background: #111 !important;
        }

        .checkout-page .checkout-main-wrapper {
            padding-top: 20px;
            min-height: 100vh;
        }

        /* LEFT column */
        .checkout-page .checkout-left {
            background: #111 !important;
        }

        .checkout-page .checkout-form-wrapper .checkout-title,
        .checkout-page .checkout-form-wrapper .checkout-label,
        .checkout-page .checkout-form-wrapper .checkout-info-span,
        .checkout-page .checkout-form-wrapper .checkout-desc-p {
            color: #e0e0e0 !important;
        }

        /* Form controls */
        .checkout-page .form-control,
        .checkout-page .form-select {
            background: #1e1e1e !important;
            border: 1px solid #333 !important;
            color: #f0f0f0 !important;
            border-radius: 6px;
        }

        .checkout-page .form-control:focus,
        .checkout-page .form-select:focus {
            background: #252525 !important;
            border-color: #cc0000 !important;
            box-shadow: 0 0 0 3px rgba(204,0,0,0.2) !important;
            color: #fff !important;
        }

        /* Floating labels */
        .checkout-page .form-floating .checkout-floating-label {
            color: #888 !important;
        }

        .checkout-page .form-floating > .form-control:focus ~ .checkout-floating-label,
        .checkout-page .form-floating > .form-control:not(:placeholder-shown) ~ .checkout-floating-label,
        .checkout-page .form-floating > .form-select ~ .checkout-floating-label {
            color: #cc0000 !important;
        }

        /* Checkboxes & radio */
        .checkout-page .form-check-input {
            background-color: #1e1e1e;
            border-color: #555;
        }

        .checkout-page .form-check-input:checked {
            background-color: #cc0000 !important;
            border-color: #cc0000 !important;
        }

        .checkout-page .form-check-label {
            color: #aaa !important;
        }

        /* Shipping & Payment box selects */
        .checkout-page .checkout-box-select {
            background: #1e1e1e !important;
            border-color: #333 !important;
            color: #e0e0e0 !important;
        }

        .checkout-page .checkout-box-select.border-primary {
            border-color: #cc0000 !important;
        }

        /* Billing address group */
        .checkout-page .checkout-radio-group {
            border-color: #333 !important;
            border-radius: 8px;
            overflow: hidden;
        }

        .checkout-page .checkout-radio-group .border-bottom {
            border-color: #333 !important;
        }

        .checkout-page .checkout-radio-group > div {
            background: #1e1e1e !important;
        }

        /* Complete Order button */
        .checkout-page #completeOrderBtn {
            background: #cc0000 !important;
            border-color: #cc0000 !important;
            color: #fff !important;
            font-family: 'Rajdhani', sans-serif;
            font-size: 18px;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .checkout-page #completeOrderBtn:hover {
            background: #a80000 !important;
            border-color: #a80000 !important;
            transform: translateY(-2px);
        }

        /* Footer links */
        .checkout-page .border-top {
            border-color: #333 !important;
        }

        .checkout-page .checkout-footer-link {
            color: #cc0000 !important;
        }

        .checkout-page .checkout-footer-link:hover {
            color: #ff3333 !important;
        }

        /* Log in link */
        .checkout-page .text-primary {
            color: #cc0000 !important;
        }

        /* RIGHT column (order summary) */
        .checkout-page .checkout-right {
            background: #0a0a0a !important;
            border-color: #222 !important;
        }

        .checkout-page .checkout-summary-wrapper .checkout-summary-title,
        .checkout-page .checkout-summary-wrapper .checkout-summary-info,
        .checkout-page .checkout-summary-wrapper .checkout-summary-desc {
            color: #e0e0e0 !important;
        }

        .checkout-page .checkout-summary-wrapper .text-secondary {
            color: #888 !important;
        }

        .checkout-page .checkout-summary-wrapper .text-dark {
            color: #fff !important;
        }

        .checkout-page .checkout-summary-wrapper .checkout-summary-divider {
            border-color: #333 !important;
            opacity: 1 !important;
        }

        .checkout-page .checkout-summary-wrapper .border-bottom {
            border-color: #333 !important;
        }

        /* Product image box in summary */
        .checkout-page .checkout-item-img-wrap {
            background: #1e1e1e !important;
            border-color: #333 !important;
        }

        /* Discount input */
        .checkout-page .discount-wrapper .form-control {
            background: #1e1e1e !important;
            border-color: #333 !important;
            color: #f0f0f0 !important;
        }

        .checkout-page .btn-secondary {
            background: #333 !important;
            border-color: #444 !important;
            color: #aaa !important;
        }

        /* Total price */
        .checkout-page .total-price .fw-bold {
            color: #fff !important;
        }

        .checkout-page .total-price .text-secondary {
            color: #888 !important;
        }

        /* Diff billing form placeholder */
        .checkout-page #diffBillingForm {
            background: #1e1e1e !important;
            border-color: #333 !important;
            color: #888 !important;
        }

        /* Select dropdown options */
        .checkout-page .form-select .checkout-select-option {
            background: #1e1e1e;
            color: #f0f0f0;
        }

        /* Payment option cards */
        .checkout-page .payment-option-card {
            background: #1e1e1e;
            border-color: #333 !important;
            transition: border-color 0.25s ease, background 0.25s ease;
        }

        .checkout-page .payment-option-card:hover {
            border-color: #555 !important;
            background: #252525;
        }

        .checkout-page .payment-option-card.active {
            border-color: #cc0000 !important;
            background: #1f0000;
        }

        .checkout-page .payment-icon-box {
            width: 42px;
            height: 42px;
            background: rgba(204,0,0,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Bank tabs */
        .checkout-page .bank-tab {
            flex: 1;
            background: transparent;
            border: none;
            border-right: 1px solid #2a2a2a;
            color: #888;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 13px;
            padding: 10px 6px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.25s ease;
        }

        .checkout-page .bank-tab:last-child {
            border-right: none;
        }

        .checkout-page .bank-tab:hover {
            background: #1a1a1a;
            color: #fff;
        }

        .checkout-page .bank-tab.active {
            background: #1a1a1a;
            color: #cc0000;
            border-bottom: 2px solid #cc0000;
        }

        /* Bank info rows */
        .checkout-page .bank-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 9px 0;
            border-bottom: 1px solid #2a2a2a;
            font-size: 13px;
        }

        .checkout-page .bank-row.last {
            border-bottom: none;
            margin-bottom: 12px;
        }

        .checkout-page .bank-row > .bank-label {
            color: #888;
        }

        .checkout-page .bank-row > .bank-value {
            color: #f0f0f0;
            font-weight: 600;
        }

        /* Branding for Mobile Wallets */
        .checkout-page .payment-option-card.easypaisa-active {
            border-color: #37b34a !important;
            background: rgba(55, 179, 74, 0.05);
        }
        .checkout-page .payment-option-card.jazzcash-active {
            border-color: #bd0028 !important;
            background: rgba(255, 204, 0, 0.05);
        }

        .checkout-page .easypaisa-text { color: #37b34a !important; }
        .checkout-page .jazzcash-text { color: #bd0028 !important; }

        /* Payment Confirmation Form */
        .checkout-page .payment-form-wrapper {
            background: #111;
            border-top: 1px solid #2a2a2a;
        }

        .checkout-page .payment-form-label {
            font-size: 11px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: block;
        }

        .checkout-page .payment-form-input {
            background: #1a1a1a !important;
            border: 1px solid #333 !important;
            color: #fff !important;
            font-family: monospace;
            height: 42px;
        }

        .checkout-page .payment-form-input::placeholder {
            color: rgba(255, 255, 255, 0.4) !important;
            opacity: 1;
        }

        .checkout-page .payment-form-input:focus {
            border-color: #cc0000 !important;
            box-shadow: none !important;
        }

        /* Responsive fixes */
        @media (max-width: 991px) {
            .checkout-page .checkout-left,
            .checkout-page .checkout-right {
                width: 100% !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
        }
        
        /* Card branding specific */
        .checkout-page .card-brand-icons i {
            font-size: 28px;
            transition: transform 0.2s ease;
        }
        
        .checkout-page .card-brand-icons i:hover {
            transform: scale(1.1);
        }

        .checkout-page .payment-detail-panel {
            background: #1a1a1a;
            border-radius: 8px;
            margin-bottom: 20px;
            overflow: hidden;
        }

        /* Stepped Flow Styles */
        .checkout-page .payment-step-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #2a2a2a;
        }

        .checkout-page .back-link {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #1e1e1e;
            color: #fff;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            border: 1px solid #333;
        }

        .checkout-page .back-link:hover {
            background: #cc0000;
            border-color: #cc0000;
            color: #fff;
        }

        .checkout-page .view-title {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #fff;
            margin: 0;
        }

        /* View Switching Transitions */
        .checkout-page .selection-view,
        .checkout-page .detail-view {
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .checkout-page .d-none-view {
            display: none !important;
            opacity: 0;
            transform: translateY(10px);
        }

        /* Bottom Action Bar (Mobile style) */
        .checkout-page .integrated-summary {
            padding: 20px;
            background: #111;
            border: 1px solid #2a2a2a;
            border-radius: 8px;
            margin-top: 30px;
        }

        .checkout-page .integrated-summary .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .checkout-page .integrated-summary .total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #2a2a2a;
        }

        .checkout-page .integrated-summary .total-price {
            color: #cc0000;
            font-size: 22px;
            font-weight: 700;
        }

        .checkout-page .pay-now-btn {
            background: #cc0000 !important;
            border: none;
            color: #fff;
            width: 100%;
            padding: 15px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 20px;
            transition: all 0.2s ease;
        }

        .checkout-page .pay-now-btn:hover {
            background: #a80000 !important;
            transform: translateY(-2px);
        }

        /* Generic Primary Button Override for Checkout */
        .checkout-page .btn-primary {
            background-color: #cc0000 !important;
            border-color: #cc0000 !important;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        .checkout-page .btn-primary:hover {
            background-color: #a80000 !important;
            border-color: #a80000 !important;
            transform: translateY(-1px);
        }

/* ===== MOBILE HEADER ACTIONS ===== */
.mobile-nav-actions { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    margin-right: 15px; 
}

@media (min-width: 992px) { 
    .mobile-nav-actions { 
        display: none !important; 
    } 
}
/* ===== PRODUCT PRICE STYLING ===== */
.price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #111;
}

.price .old {
    color: #999;
    text-decoration: line-through;
    font-size: 0.85em;
    display: block;
    margin-bottom: 2px;
    font-weight: 500;
}

/* ===== PROFESSIONAL COMPARE UI ===== */
.compare-bar {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px 15px 0 0;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1050;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
}

.compare-bar.active {
    bottom: 0;
}

.compare-items-preview {
    display: flex;
    gap: 15px;
    align-items: center;
}

.compare-item-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #fff;
    padding: 2px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.compare-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.compare-item-thumb .remove-item {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: #ff4d4d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
    border: 2px solid #111;
}

.compare-empty-slot {
    width: 50px;
    height: 50px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
}

.compare-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-compare-now {
    background: #cc0000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-compare-now:hover {
    background: #e60000;
    transform: translateY(-2px);
}

.compare-clear-all {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
}

/* Compare Modal */
.compare-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.compare-modal-overlay.active {
    display: flex;
}

.compare-modal-container {
    background: #fff;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.compare-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.compare-modal-header h2 {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #111;
}

.compare-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.compare-table-wrapper {
    overflow-x: auto;
    flex-grow: 1;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.compare-table th, .compare-table td {
    padding: 20px;
    border: 1px solid #eee;
    text-align: center;
}

.compare-table .spec-label {
    background: #fcfcfc;
    font-weight: 600;
    color: #444;
    text-align: left;
    width: 200px;
}

.compare-table .product-header img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.compare-table .product-name {
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.compare-table .product-price {
    color: #cc0000;
    font-weight: 700;
}

.compare-table .highlight-diff {
    background: #fff9f9;
}

@media (max-width: 768px) {
    .compare-bar {
        width: 100%;
        border-radius: 0;
        padding: 10px 15px;
    }
    .compare-item-thumb, .compare-empty-slot {
        width: 40px;
        height: 40px;
    }
    .btn-compare-now {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ===== PROFESSIONAL QUICK VIEW MODAL ===== */
.quickview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quickview-overlay.active {
    display: flex;
    opacity: 1;
}

.quickview-modal {
    background: #111;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 20px;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.quickview-overlay.active .quickview-modal {
    transform: scale(1);
}

.qv-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.qv-image-side {
    width: 50%;
    background: radial-gradient(circle at center, #2a2a2a 0%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.qv-image-side img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
    transition: transform 0.5s ease;
}

.qv-image-side:hover img {
    transform: scale(1.05);
}

.qv-content-side {
    width: 50%;
    padding: 50px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qv-brand {
    font-size: 12px;
    letter-spacing: 2px;
    color: #e60000;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.qv-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}

.qv-price {
    font-size: 24px;
    font-weight: 700;
    color: #e60000;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.qv-price .old {
    font-size: 16px;
    color: #777;
    text-decoration: line-through;
    font-weight: 500;
}

.qv-specs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.spec-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: #ccc;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
    line-height: 1.2;
}

.spec-pill i {
    color: #e60000;
}

.qv-description {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 35px;
    overflow-wrap: break-word;
    word-break: break-word;
    padding-right: 8px;
}

.qv-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.qv-add-btn {
    background: #e60000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.qv-add-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230,0,0,0.2);
}

.qv-view-detail {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.qv-view-detail:hover {
    color: #e60000;
    border-color: #e60000;
}

@media (max-width: 768px) {
    .quickview-modal {
        flex-direction: column;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .qv-image-side {
        width: 100%;
        padding: 30px;
        min-height: 250px;
    }
    
    .qv-image-side img {
        max-height: 200px;
    }
    
    .qv-content-side {
        width: 100%;
        padding: 30px;
    }
    
    .qv-title {
        font-size: 24px;
    }
    
    .qv-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .qv-add-btn {
        width: 100%;
    }
}


/* ==========================================================================
   PREMIUM FOOTER STYLES
   ========================================================================== */
.footer-section {
    background-color: #0d0d0d;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 50px;
}

.footer-logo-box {
    margin-bottom: 25px;
}

.footer-logo-box h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
}

.footer-logo-box h2 span {
    color: #bd0028;
}

.footer-about-text {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 350px;
}

.footer-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: #bd0028;
}

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

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #bd0028;
    transform: translateX(5px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #aaa;
    font-size: 14px;
}

.footer-contact-info i {
    color: #bd0028;
    margin-right: 15px;
    font-size: 18px;
    margin-top: 3px;
}

.newsletter-form-container {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-desc {
    color: #777;
    font-size: 13px;
    margin-bottom: 20px;
}

.newsletter-input-wrap {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
}

.newsletter-input-wrap input:focus {
    outline: none;
}

.newsletter-input-wrap button {
    background: #bd0028;
    color: #000;
    border: none;
   
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: 0.3s;
}

.newsletter-input-wrap button:hover {
    background: #fff;
    color: #000;
}

.footer-bottom {
    background: #000;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: #bd0028;
    color: #fff !important;
    transform: translateY(-5px);
}

.payment-methods {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.payment-methods i {
    font-size: 24px;
    color: #444;
    transition: 0.3s;
}

.payment-methods i:hover {
    color: #bd0028;
}

.copyright-text {
    color: #555;
    font-size: 13px;
    margin: 0;
}

@media (max-width: 1158px) {
    .newsletter-input-wrap {
        flex-direction: column;
        padding: 8px;
        gap: 8px;
    }

    .newsletter-input-wrap input {
        width: 100%;
        padding: 12px 15px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.08);
    }

    .newsletter-input-wrap button {
        width: 100%;
        padding: 12px 20px;
        border-radius: 6px;
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .payment-methods {
        justify-content: center;
        margin-top: 20px;
    }
    .footer-bottom .text-md-start, 
    .footer-bottom .text-md-end {
        text-align: center !important;
    }

    /* Newsletter form — stack on tablet */
    .newsletter-input-wrap {
        flex-direction: column;
        padding: 8px;
        gap: 8px;
        max-width: 460px;
        margin: 0 auto;
    }

    .newsletter-input-wrap input {
        width: 100%;
        padding: 12px 15px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.08);
    }

    .newsletter-input-wrap button {
        width: 100%;
        padding: 12px 20px;
        border-radius: 6px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .newsletter-form-container {
        padding: 20px;
    }

    .newsletter-input-wrap {
        flex-direction: column;
        padding: 8px;
        gap: 8px;
    }

    .newsletter-input-wrap input {
        width: 100%;
        padding: 12px 15px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.08);
    }

    .newsletter-input-wrap button {
        width: 100%;
        padding: 12px 20px;
        border-radius: 6px;
        font-size: 15px;
    }
}




/* ==========================================================================
   GLOBAL RED HOVER THEME
   ========================================================================== */
a:hover, 
.nav-link:hover, 
.footer-links a:hover, 
.tab-link:hover, 
.title a:hover,
.product-info .title a:hover,
.qv-view-detail:hover,
.auth-link:hover {
    color: #bd0028 !important;
}

.btn:hover, 
.shop-btn:hover,
.checkout-btn:hover,
.btn-auth:hover,
.btn-submit:hover,
.qv-add-btn:hover,
.age-btn-yes:hover {
    background-color: #bd0028 !important;
    color: #fff !important;
    border-color: #bd0028 !important;
}

.action-icons button:hover {
    background: #bd0028 !important;
    color: #fff !important;
    transform: scale(1.1);
}

.nav-icon-link:hover {
    color: #bd0028 !important;
}

.dropdown-category-title:hover {
    color: #bd0028 !important;
    border-left-color: #bd0028 !important;
}

.sub-menu li a:hover {
    color: #fff !important;
    background: rgba(189, 0, 40, 0.2) !important;
    border-left-color: #bd0028 !important;
}

.tab-link.active {
    color: #bd0028 !important;
    border-bottom: 2px solid #bd0028 !important;
}

/* ===== STICKY NAVBAR FIX ===== */
.navbar {

    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(189, 0, 40, 0.3);
}

/* Ensure body has padding to prevent content jump if needed, 
   but since original was absolute, we just need to make sure 
   hero section handles it. */

@media (max-width: 991px) {
    .navbar {
        background: transparent; /* Changed from #000 to transparent for mobile */
        padding: 10px 0;
    }
    
    .navbar-collapse {
        background: #000;
        padding: 20px;
        border-bottom: 2px solid #bd0028;
    }
    
    .dropdown-menu-custom {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none; /* Toggle via JS/CSS */
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        margin-top: 10px;
    }
    
    .dropdown-custom.open .dropdown-menu-custom {
        display: block;
    }
}

    .deals-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/acceerece/Banners/slider-4.png');
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 50px;
        }
        .deals-hero h1 {
            font-family: 'Audiowide', cursive;
            font-size: 3.5rem;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        .deals-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .deal-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #cc0000;
            color: white;
            padding: 5px 12px;
            font-weight: bold;
            font-size: 0.8rem;
            border-radius: 3px;
            z-index: 2;
            text-transform: uppercase;
        }



