@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #ffffff;
    /* Shifted to White */
    --secondary-color: #1a1a1a;
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --text-muted: #94a3b8;
    --border-color: #333333;
    --font-main: 'Inter', sans-serif;
    --container-width: 1200px;
    --section-padding: 80px 0;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    color: var(--text-muted);
}

/* Header & Nav */
.header {
    background-color: #111;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
}

.header.sticky {
    background: rgba(10, 10, 10, 0.98) !important;
    /* Slightly more opaque, no blur */
    box-shadow: 0 10px 30px rgb(0 0 0 / 36%);
    /* Padding change removed to prevent layout reflows */
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.logo-img {
    height: 75px;
    width: auto;
    display: block;
    object-fit: contain;
}

.search-bar {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 30px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    width: 40%;
}

.search-bar input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.search-bar i {
    color: var(--primary-color);
    cursor: pointer;
}

.nav-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    position: relative;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    padding: 5px 0;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #d32f2f;
}

.nav-link i {
    width: 14px;
    height: 14px;
    transition: 0.3s;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* --- Dropdown Menu --- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #111;
    border-top: 2px solid #bd0028;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    font-size: 13px;
    color: #ccc;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background: rgba(189, 0, 40, 0.1);
    color: #fff;
    padding-left: 30px;
}

/* --- Mega Menu --- */
.nav-item.has-mega {
    position: static;
    /* Required for full width mega menu */
}

/* Auto-sizing Mega Menu for <= 3 columns without promo banner */
.nav-item.has-mega-auto {
    position: relative;
}

.nav-item.has-mega-auto .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: max-content;
    background: #111;
    border-top: 2px solid #bd0028;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 15px);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-item:hover .mega-menu,
.nav-item.has-mega-auto:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.nav-item.has-mega-auto:hover .mega-menu {
    transform: translate(-50%, 0);
}

.nav-item.has-mega-auto .mega-grid {
    display: grid;
    gap: 40px;
    padding: 0;
    margin: 0;
    max-width: none;
}
.nav-item.has-mega-auto .mega-grid.cols-1 { grid-template-columns: 250px; }
.nav-item.has-mega-auto .mega-grid.cols-2 { grid-template-columns: repeat(2, 250px); }
.nav-item.has-mega-auto .mega-grid.cols-3 { grid-template-columns: repeat(3, 250px); }

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;
    border-top: 2px solid #bd0028;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    padding: 40px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
    padding: 0 20px;
}

.mega-grid.cols-1 { grid-template-columns: 1fr; }
.mega-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.mega-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.mega-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.mega-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.mega-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }

.mega-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-left: 3px solid #bd0028;
    padding-left: 10px;
}

.mega-col ul li {
    margin-bottom: 10px;
}

.mega-col ul li a {
    font-size: 13px;
    color: #b3b3b3;
    transition: 0.3s;
}

.mega-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.mega-promo {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.mega-promo img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.mega-promo h5 {
    font-size: 14px;
    margin-bottom: 10px;
}

.btn-mega {
    display: inline-block;
    padding: 8px 15px;
    background: #bd0028;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: 0.3s ease;
    position: relative;
}

.header-icon-btn:hover {
    background: rgba(0, 255, 204, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.header-icon-btn i {
    width: 20px;
    height: 20px;
}

.icon-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary-color);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* New Hero V2 & Carousel Styles */
.hero-swiper {
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smoother transition */
    will-change: transform;
    transform: translateZ(0);
    /* Force GPU */
}

.hero-slide-bg::after {
    /* Overlay gradient removed from default ::after */
}

.hero-slide-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.35) 100%);
    z-index: 0;
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1.05);
    /* Slight zoom in active slide */
}

/* Video background for hero slides */
.hero-slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.35) 100%);
    z-index: 0;
}

.hero-slide .hero-content {
    z-index: 1;
}

.hero-content {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: 800px;
    position: relative;
    z-index: 10;
}

/* .hero-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(0, 255, 204, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease forwards;
} */

.hero-content h1 {
    font-family: 'Audiowide', sans-serif;
    font-size: 72px;
    margin-bottom: 25px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease 0.1s forwards;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease 0.2s forwards;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease 0.4s forwards;
}

/* Animations Trigger */
.swiper-slide-active .hero-badge,
.swiper-slide-active .hero-content h1,
.swiper-slide-active .hero-content p,
.swiper-slide-active .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    font-weight: 700;
}

.btn-outline {
    border: 1px solid rgb(255, 255, 255);
    color: white;
    /* background: rgba(255, 255, 255, 0.05); */
    backdrop-filter: blur(5px);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.1);
}

/* Swiper Navigation Customization - Glassy Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    color: #fff !important;
    transition: 0.3s ease !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #fff !important;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.3) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #000 !important;
    width: 30px !important;
    border-radius: 5px !important;
    transition: 0.3s ease !important;
}

/* Footer */
.footer {
    background: #111;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 80px;
    position: relative;
    contain: layout;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.footer-large-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.link-col h4 {
    font-family: 'Audiowide', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.link-col ul li {
    font-size: 14px;
    margin-bottom: 10px;
}

.link-col ul li a {
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.link-col ul li a:hover {
    color: #bd0028;
    padding-left: 20px;
}

.link-col ul li a::before {
    content: '\2192';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 14px;
}

.link-col ul li a:hover::before {
    opacity: 1;
    left: 0;
}



.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}

.payment-methods img {
    height: 25px;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s;
}

.payment-methods img:hover {
    opacity: 1;
}

.footer-branding-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.footer-brand-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Utilities */
.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.text-12 {
    font-size: 12px;
}

.text-14 {
    font-size: 14px;
}

.text-muted {
    color: var(--text-muted);
}

/* Mobile Menu Header Styling */
.mobile-menu-header {
    display: none;
    width: 100%;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE BREAKPOINTS */

@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-content-right {
        display: none;
    }

    .footer-large-title {
        font-size: 42px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    h1 {
        font-size: 40px;
    }

    .hero-content h1 {
        font-size: 56px;
    }
}

@media (max-width: 1024px) {

    /* Header Mobile */
    .nav-top {
        flex-wrap: nowrap;
        gap: 15px;
        justify-content: space-between;
    }

    .logo {
        order: 1;
        flex-shrink: 0;
    }

    .search-bar {
        order: 2;
        width: auto !important;
        flex: 1;
        margin: 0 10px;
        max-width: 400px;
        /* Prevent it from being too wide on tablets */
    }

    .header-actions {
        order: 3;
        flex-shrink: 0;
    }

    .menu-toggle {
        order: 4;
        flex-shrink: 0;
    }

    /* Mobile layout: Hamburger (Left), Logo (Center), Icons (Right), Search (Bottom) */
    @media (max-width: 768px) {
        .nav-top {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 15px;
        }

        .menu-toggle {
            justify-self: start;
            order: 1;
        }

        .logo {
            justify-self: center;
            order: 2;
        }

        .header-actions {
            justify-self: end;
            order: 3;
        }

        .search-bar {
            grid-column: 1 / -1;
            width: 100% !important;
            margin: 0 !important;
            order: 4;
        }

        .wishlist-btn-desktop {
            display: none !important;
        }

        .user-name-text, .chevron-icon {
            display: none !important;
        }

        .swiper-button-next,
        .swiper-button-prev {
            display: none;
        }
    }

    .menu-toggle {
        display: flex;
    }

    /* Sidebar Menu Optimized for 320px */
    .nav-bottom {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: #111;
        padding: 20px 25px;
        z-index: 9999;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 15px 0 50px rgba(0, 0, 0, 0.8);
        transform: translateX(-105%);
        overflow-y: auto;
        visibility: hidden;
        display: block;
        /* Overriding desktop flex */
    }

    .nav-bottom.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        justify-content: space-between;
    }

    /* Mobile Dropdowns */
    .dropdown-menu,
    .mega-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        /* Controlled by JS toggle */
        background: #1a1a1a;
        box-shadow: none;
        border-top: none;
        padding: 10px 0 10px 15px;
    }

    .nav-item.active .dropdown-menu,
    .nav-item.active .mega-menu {
        display: block;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .mega-col h4 {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .mega-promo {
        display: none;
        /* Hide promo on mobile to save space */
    }

    .mobile-menu-header {
        display: flex;
        width: 100%;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center;
    }

    .mobile-menu-header .logo {
        order: 1 !important;
    }

    .mobile-menu-header .mobile-close-btn {
        order: 2 !important;
        background: transparent;
        border: none;
        color: white;
        cursor: pointer;
    }

    /* Content & Footer Mobile */
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-large-title {
        font-size: 32px;
    }

    .footer-content-right {
        display: none;
    }

    /* Hero Mobile */
    .hero-swiper {
        height: 70vh;
    }

    .hero-content {
        height: 70vh;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }

    .header-icon-btn {
        width: 32px;
        height: 32px;
    }
}

/* Global Classes */
body.no-scroll {
    overflow: hidden;
}

/* Categories Grid Section */
.categories-section {
    padding: 75px 0 10px;
    contain: layout paint;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.category-card-v2 {
    background: #f8f8f8;
    padding: 30px 20px;
    text-align: center;
    border-radius: 4px;
    transition: 0.3s ease;
    cursor: pointer;
}

.category-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.category-card-v2 img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 2px;
}

.category-card-v2 h4 {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.category-card-v2 p {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 36px;
}

.category-btn {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    background: #000;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 2px;
    letter-spacing: 1.5px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card-v2:hover .category-btn {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Promo Banners Section */
.promo-section {
    padding: 20px 0 60px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.promo-banner {
    position: relative;
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    background-size: cover;
    background-position: center;
}

.promo-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, transparent 70%);
    z-index: 1;
}

.promo-banner.banner-blue::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 81, 255, 0.4) 0%, transparent 100%);
    z-index: 2;
}

.promo-banner.banner-purple::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(144, 0, 255, 0.4) 0%, transparent 100%);
    z-index: 2;
}

.promo-content {
    position: relative;
    z-index: 10;
}

.promo-content h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.promo-content p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.promo-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-btn:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card System */
.product-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #000;
    margin-bottom: 0;
    font-size: 32px;
    font-family: 'Audiowide', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding-right: 25px;
    transition: 0.3s;
}

.view-all::after {
    content: '\2192';
    /* Right arrow */
    position: absolute;
    right: 0;
    transition: 0.3s;
}

.view-all::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #000;
    transition: 0.3s;
}

.view-all:hover::before {
    width: calc(100% - 25px);
}

.view-all:hover::after {
    transform: translateX(5px);
}

.view-all:hover {
    color: #000;
    opacity: 0.7;
}

/* Product Swiper Customization */
/* .product-swiper { 
    padding: 20px 60px 60px !important;
    margin: 0 -60px;
} */
.product-swiper .swiper-button-next,
.product-swiper .swiper-button-prev {
    color: #000 !important;
    background: #fff !important;
    width: 50px !important;
    height: 50px !important;
    border: 1px solid #eee !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    z-index: 100 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.product-swiper .swiper-button-next {
    right: 5px !important;
}

.product-swiper .swiper-button-prev {
    left: 5px !important;
}

.product-swiper .swiper-button-next::after,
.product-swiper .swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}

.product-swiper .swiper-pagination-bullet-active {
    background: #000 !important;
}

.product-card {
    background: #fff;
    padding: 20px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.product-img-wrapper {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: #f9f9f9;
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 8px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Product Badges */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge.new {
    background: #bd0028;
    /* Premium Red */
    color: #fff;
}

.badge.sale {
    background: #000;
    color: #fff;
}

/* Detail Page Badges */
.detail-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.detail-badge.new {
    background: #bd0028;
    color: #fff;
}

.detail-badge.sale {
    background: #000;
    color: #fff;
}


.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: grid;
    grid-template-columns: 1fr;
    /* Vertical stack */
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    /* Slide from right */
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.product-card:hover .product-actions {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    /* Slide into view */
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    color: #333;
}

.action-btn i {
    width: 18px;
    height: 18px;
}

.action-btn:hover {
    background: #bd0028;
    /* Premium Red */
    border-color: #bd0028;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 82, 82, 0.3);
}

.action-btn.active {
    background: #bd0028;
    border-color: #bd0028;
    color: #fff;
}


.product-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.5s;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-name a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.product-name a:hover {
    color: #bd0028;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.product-price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #bd0028;
}

.btn-buy {
    background: transparent;
    color: #000;
    border: 1.5px solid #000;
    padding: 12px 0;
    border-radius: 2px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    width: 100%;
    cursor: pointer;
}

.btn-buy:hover {
    background: #000;
    color: #fff;
}

.btn-add-cart {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    padding: 10px 0;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    width: 100%;
}

.btn-add-cart:hover {
    background: #000;
    color: #fff;
}

/* Grid Specifics */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Slider Specifics */
.product-swiper {
    padding: 20px 5px 50px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 425px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Flavour Banner Section */
.flavour-banner-bg {
    background-image: url('../assets/image/cta.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0;
    padding: 60px 20px;
    /* Reduced padding for a sleeker look */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.flavour-banner-content h2 {
    font-family: 'Audiowide', sans-serif;
    color: #fff;
    font-size: 36px;
    /* Slightly smaller for better fit */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-banner-shop {
    display: inline-block;
    padding: 10px 35px;
    border: 1.5px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-banner-shop:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .flavour-banner-content h2 {
        font-size: 20px;
    }

    .flavour-banner-bg {
        padding: 40px 15px;
    }
}

/* Starter CTA Section */
.starter-cta-section {
    padding: 100px 0;
    background: #000;
    /* Dark Base */
    position: relative;
    /* overflow: hidden; */
}

.starter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
    border-radius: 20px;
    padding: 60px;
}

.starter-content {
    text-align: center;
    max-width: 600px;
    z-index: 5;
}

.starter-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #bd0028;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.starter-content h2 {
    font-family: 'Audiowide', sans-serif;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.starter-content p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.starter-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-starter-solid {
    background: #bd0028;
    color: #fff;
    border: 1.5px solid #bd0028;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-starter-solid:hover {
    background: transparent;
    color: #bd0028;
}

.btn-starter-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 12px 23px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-starter-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Floating Pods */
.floating-pod {
    position: absolute;
    width: 180px;
    /* Reduced size */
    z-index: 2;
    pointer-events: none;
}

.floating-pod img {
    width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.pod-left {
    left: 30px;
    bottom: -130px;
    animation: floatLeft 6s ease-in-out infinite;
}

.pod-right {
    right: 30px;
    top: -130px;
    animation: floatRight 6s ease-in-out infinite;
}


@keyframes floatLeft {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

@keyframes floatRight {

    0%,
    100% {
        transform: translateY(0) rotate(15deg);
    }

    50% {
        transform: translateY(20px) rotate(10deg);
    }
}

@media (max-width: 991px) {
    .starter-container {
        padding: 40px 20px;
    }

    .floating-pod {
        width: 150px;
        opacity: 0.9;
    }

    .starter-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 425px) {
    .floating-pod {
        display: none;
    }
}

.flavours-section {
    padding: 80px 0;
    background: #fff;
}

.section-header-center {
    text-align: center;
}

.section-header-center h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.section-header-center p {
    color: #888;
    font-size: 16px;
}

.flavours-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.flavour-item {
    text-align: center;
    transition: 0.3s;
}

.flavour-item h4 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flavour-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    /* Fix: Image bahr nahi jayegi */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.flavour-img {
    width: 100%;
    object-fit: contain;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    position: relative;
}

/* New Hover Effect: Lift and Zoom */
.flavour-item:hover .flavour-circle {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.flavour-item:hover .flavour-img {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .flavours-container {
        gap: 20px;
    }

    .flavour-circle {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .flavour-circle {
        width: 120px;
        height: 120px;
    }
}

/* Brands Showcase Section */
.brands-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.brand-item {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0);
    opacity: 1;
    transition: 0.4s ease;
    cursor: pointer;
}

.brand-item:hover {
    transform: scale(1.1);
}

.brand-item img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brands-section {
        padding: 40px 0;
    }

    .brand-item {
        height: 80px;
    }

    .brand-item img {
        max-width: 100px;
    }
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.blog-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 6px 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.blog-info {
    padding: 30px;
}

.blog-date {
    font-size: 12px;
    color: #999;
    display: block;
    font-weight: 500;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.4;
    transition: 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-title {
    color: #bd0028;
    cursor: pointer;
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
    padding-bottom: 2px;
    padding-right: 25px;
    text-decoration: none;
}

.read-more::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #000;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more::after {
    content: '\2192';
    /* Right arrow */
    position: absolute;
    right: 0;
    transition: 0.3s;
}

.read-more:hover::before {
    width: calc(100% - 25px);
}

.read-more:hover::after {
    transform: translateX(5px);
}

.read-more:hover {
    color: #000;
}



@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-section {
        padding: 60px 0;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.testimonials-swiper {
    padding: 40px 0 60px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    transition: 0.4s ease;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    color: #333;
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-start;
}

.quote-icon i {
    width: 35px;
    height: 35px;
    stroke-width: 1.5;
    opacity: 0.2;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stars {
    display: flex;
    gap: 4px;
    justify-content: flex-start;
    color: #ffcc00;
}

.stars i {
    width: 14px;
    height: 14px;
}

.stars i.fill svg,
.stars i.fill svg * {
    fill: #ffcc00 !important;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonials-section {
        padding: 60px 0;
    }
}

/* FAQ Section Upgrade */
.faq-section {
    padding: 100px 0;
    background-image: url(../assets/image/faq.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.faq-container-single {
    max-width: 850px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item.active {
    border-color: #dfdfdf;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

.faq-item:hover .faq-question {
    background: #fafafa;
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

/* Custom Plus/Minus Toggle */
.faq-toggle {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    background-color: #000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Horizontal Line */
.faq-toggle::before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
}

/* Vertical Line */
.faq-toggle::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
}

/* Active State: Vertical line disappears or rotates to Minus */
.faq-item.active .faq-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 15px 30px;
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 25px 20px;
        font-size: 14px;
    }
}


/* Feature Highlight Section */
.feature-highlight {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.feature-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #f0f0f0;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    margin-bottom: 30px;
}

.feature-content h2 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: #000;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.feature-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    max-width: 520px;
}

.feature-extra-text {
    font-size: 15px;
    line-height: 1.7;
    color: #888;
    margin-bottom: 45px;
    max-width: 480px;
    font-style: italic;
    border-left: 2px solid #eee;
    padding-left: 20px;
}


.feature-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 4px;
    overflow: hidden;
}

.visual-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.6s ease;
}

.feature-visual:hover .visual-wrapper img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .feature-grid {
        gap: 40px;
    }

    .feature-content h2 {
        font-size: 40px;
    }
}

.feature-btns .btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    border: 1px solid #000;
}

.feature-btns .btn-primary:hover {
    background: transparent;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .feature-highlight {
        padding: 80px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .feature-content {
        text-align: center;
    }

    .feature-content p {
        margin: 0 auto 40px;
    }

    .feature-stats {
        justify-content: center;
    }
}

/* Smoke Background Section */
.smoke-section {
    position: relative;
    padding: 150px 0;
    background: #0a0a0a;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.smoke-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.smoke-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.smoke-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}


.smoke-content h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #fff;
}

.expandable-text {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 35px;
    transition: 0.4s ease;
}

.hidden-text {
    display: none;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1.5px solid rgb(255, 255, 255);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-show-more:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-show-more i {
    width: 18px;
    height: 18px;
    transition: 0.4s;
}

.btn-show-more.active i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .smoke-section {
        padding: 80px 0;
    }

    .smoke-content h2 {
        font-size: 32px;
    }

    .expandable-text {
        font-size: 16px;
    }
}

/* ==========================================================================
   Product Detail Page Styles
   ========================================================================== */

.product-detail-page {
    padding: 60px 0px 0px 0px;
    background: #fff;
    color: #000;
}


.breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #888;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #bd0028;
}

.product-main-area {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    /* Fix for Swiper expansion */
    gap: 60px;
    align-items: flex-start;
    /* Crucial for sticky behavior */
}


/* Left Side: Gallery */
.product-gallery-side {
    position: sticky;
    top: 135px;
    height: fit-content;
    min-width: 0;
    /* Important for grid stability */
}


.main-image-container {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: default;
}

.main-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}



.product-thumb-slider {
    position: relative;
    margin-top: 20px;
    width: 100%;
    padding: 0 40px;
    /* Bring arrows inside */
}

.thumb-item {
    height: 80px;
    border: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    background: #fff;
    opacity: 0.6;
    border-radius: 4px;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: #bd0028;
    opacity: 1;
}

.thumb-item img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.thumb-next,
.thumb-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.thumb-next {
    right: 0;
}

.thumb-prev {
    left: 0;
}

.thumb-next:hover,
.thumb-prev:hover {
    background: #bd0028;
    color: #fff;
    border-color: #bd0028;
}


/* Right Side: Details */
.product-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.price-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.detail-current-price {
    font-size: 28px;
    font-weight: 800;
    color: #bd0028;
}

.detail-old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.sale-badge {
    background: #000;
    color: #fff;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 2px;
}

.shipping-policy-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
    transition: 0.3s;
}

.shipping-policy-link:hover {
    color: #bd0028;
    text-decoration: underline;
}

.product-selection {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.selection-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.custom-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #000;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.custom-select:focus {
    border-color: #000;
    outline: none;
}

.quantity-picker {
    display: flex;
    width: 100%;
    height: 55px;
    border: 1px solid #dbd9d9;
}

.qty-btn {
    width: 40px;
    background: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #f5f5f5;
}

#qtyInput {
    flex: 1;
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    width: 40px;
}

.product-actions-btns {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quantity-picker-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quantity-picker-wrapper label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
}

.quantity-picker {
    display: flex;
    width: 150px;
    height: 50px;
    border: 1px solid #dbd9d9;
}

.purchase-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-add-to-cart,
.btn-buy-now {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.4s;
    border: 1px solid #000;
    white-space: nowrap;
}



.btn-add-to-cart {
    background: #bd0028;
    color: #fff;
    border-color: #bd0028;
}

.btn-add-to-cart:hover {
    background: #9a0021;
    color: #fff;
}

.btn-buy-now {
    background: #bd0028;
    color: #fff;
    border-color: #bd0028;
}

.btn-buy-now:hover {
    background: #9a0021;
    border-color: #9a0021;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(189, 0, 40, 0.2);
}

.btn-add-to-cart.disabled,
.btn-buy-now.disabled {
    background: #ccc !important;
    border-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.short-description {
    padding: 25px;
    background: #f9f9f9;
    border-left: 4px solid #bd0028;
}

.specs-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #000;
}

.specs-list {
    list-style: none;
    padding: 0;
}

.specs-list li {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.specs-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #bd0028;
    font-weight: bold;
}

.specs-list li strong {
    color: #000;
    font-weight: 700;
}

/* Long Description Section */
.product-long-description {
    padding-top: 60px;
    width: 100% !important;
    display: block !important;
    clear: both;
}

.description-tabs {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
    width: 100%;
}

.tab-btn {
    padding: 15px 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    color: #888;
}

.tab-btn.active {
    color: #000;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #bd0028;
}

.tab-content {
    width: 100%;
    display: block;
}



.tab-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Reviews Section Styles */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.overall-rating h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.stars i {
    width: 18px;
    height: 18px;
    color: #ddd;
}

.stars i.fill svg,
.stars i.fill svg * {
    color: #ffb800 !important;
    fill: #ffb800 !important;
}

.btn-write-review {
    padding: 15px 30px;
    background: #000;
    color: #fff;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-write-review:hover {
    background: #bd0028;
}

.review-item {
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 30px;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-initial {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    color: #bd0028;
    font-size: 18px;
}

.review-user h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.stars, .review-rating {
    display: flex;
    gap: 4px;
    align-items: center;
}

.stars i, .stars svg,
.review-rating i, .review-rating svg {
    color: #ddd;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

/* Overall stars might be slightly larger */
.overall-rating .stars i, 
.overall-rating .stars svg {
    width: 22px;
    height: 22px;
}

/* Filled Star State */
.stars .fill,
.review-rating .fill,
.stars .fill svg,
.review-rating .fill svg {
    color: #ffcc00 !important;
    fill: #ffcc00 !important;
    stroke: #ffcc00 !important;
}


.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}


.tab-content p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.feature-list li i {
    color: #bd0028;
    width: 18px;
    height: 18px;
}

/* Responsive Stacking */
@media (max-width: 991px) {
    .product-main-area {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-image-container {
        height: 400px;
    }

    .product-gallery-side {
        position: relative;
        top: 0;
    }

    .product-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .product-actions-btns {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .description-tabs {
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .tab-btn {
        white-space: nowrap;
        font-size: 12px;
    }

    .product-long-description {
        overflow-y: auto;
        padding-right: 10px;
    }
}

/* ==========================================================================
   Inline Review Form Styles
   ========================================================================== */
.review-form-inline {
    margin: 30px 0 40px;
    animation: formSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes formSlideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.review-form-inline .form-wrapper {
    background: #fafafa;
    padding: 35px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.form-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.form-header h3 {
    font-family: 'Audiowide', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #000;
}

.form-header p {
    margin: 0px;
    font-size: 13px;
    color: #888;
}

.form-row {
    display: flex;
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

.review-form .form-group {
    margin-bottom: 20px;
}

.review-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s;
    background: #fff;
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: #bd0028;
    outline: none;
    box-shadow: 0 0 0 4px rgba(189, 0, 40, 0.05);
}

.star-rating-input {
    display: flex;
    gap: 8px;
}

.star-rating-input i,
.star-rating-input svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    fill: transparent;
    stroke: #ccc;
}

/* Hover & Active States */
.star-rating-input i:hover,
.star-rating-input i.active,
.star-rating-input svg:hover,
.star-rating-input svg.active {
    stroke: #ffcc00 !important;
    fill: #ffcc00 !important;
    transform: scale(1.1);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-submit-review {
    padding: 16px 35px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cancel-review {
    padding: 16px 35px;
    background: transparent;
    color: #888;
    border: 1px solid #ddd;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit-review:hover {
    background: #bd0028;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(189, 0, 40, 0.2);
}

.btn-cancel-review:hover {
    background: #eee;
    color: #000;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

/* ==========================================================================
   Blog Detail Page Styles
   ========================================================================== */
.blog-detail-page {
    background: #fff;
}

.blog-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.blog-meta-top {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.blog-hero .blog-category {
    background: #bd0028;
    color: #fff;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: static;
    /* Reset from card styles */
}

.blog-hero .blog-date {
    font-size: 14px;
    color: #888;
}

.blog-main-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 42px;
    line-height: 1.2;
    color: #000;
    max-width: 900px;
    margin: 0 auto;
}

.blog-author-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.blog-author-meta .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info span {
    font-size: 12px;
    color: #888;
    display: block;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.blog-featured-img-container {
    margin-bottom: 60px;
}

.blog-featured-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.blog-content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.blog-main-content .content-body {
    color: #333;
}

.content-inline-img {
    width: 100%;
    border-radius: 4px;
    margin: 30px 0;
}

.blog-tags {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-tags span {
    font-weight: 700;
    font-size: 14px;
}

.blog-tags a {
    background: #f0f0f0;
    padding: 6px 15px;
    font-size: 13px;
    color: #666;
    border-radius: 2px;
    transition: 0.3s;
}

.blog-tags a:hover {
    background: #000;
    color: #fff;
}

.blog-share {
    margin-top: 40px;
    background: #000;
    color: #fff;
    padding: 30px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-links {
    display: flex;
    gap: 15px;
}

.share-btn {
    color: #fff;
    transition: 0.3s;
}

.share-btn:hover {
    color: #bd0028;
    transform: translateY(-3px);
}

.blog-sidebar {
    position: sticky;
    top: 150px;
    height: fit-content;
}

/* Sidebar Widgets Refined */
.sidebar-widget {
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 20px;
    background: #fff;
    padding: 20px;
}

.widget-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #bd0028;
}

.search-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    height: 48px;
    transition: 0.3s;
}

.search-box:focus-within {
    border-color: #d32f2f;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 0 18px;
    font-size: 14px;
    background: #fafafa;
    outline: none;
}

.search-box button {
    background: #000;
    color: #fff;
    border: none;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.search-box button i {
    width: 20px;
    height: 20px;
}

.search-box button:hover {
    background: #d32f2f;
}

.category-list li {
    list-style: none;
    margin-bottom: 15px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: #444;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.category-list a span {
    background: #f0f0f0;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    min-width: 30px;
    text-align: center;
    transition: 0.3s;
}

.category-list a:hover span {
    background: #bd0028;
    color: #fff;
}

.category-list a:hover {
    color: #bd0028;
    transform: translateX(5px);
}

.recent-post-item {
    color: #000;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.recent-post-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.product-name a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.product-name a:hover {
    color: #bd0028;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.product-price-container {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    display: block;
    text-decoration: none;
    transition: 0.3s;
}

.recent-post-item a:hover {
    color: #bd0028;
}

.recent-post-item span {
    font-size: 12px;
    color: #888;
}

@media (max-width: 1024px) {
    .blog-content-layout {
        gap: 25px;
    }

    .blog-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .blog-main-title {
        font-size: 32px;
    }

    .blog-content-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-featured-img {
        height: 300px;
    }

    .blog-share {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================================================
   Collection Page Styles
   ========================================================================== */
.collection-page {
    padding: 60px 0 100px;
}

.collection-header {
    margin-bottom: 50px;
}

.collection-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 36px;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.collection-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.collection-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.collection-main .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (min-width: 425px) and (max-width: 768px) {
    .collection-main .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

@media (min-width: 320px) and (max-width: 424px) {
    .collection-main .product-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .collection-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px 0;
    }

    .btn-mobile-filter {
        width: 100% !important;
        justify-content: center;
        margin-right: 0 !important;
    }

    .control-group {
        width: 100%;
    }

    .control-select {
        width: 100% !important;
        text-align: center;
    }

    .categories-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-header h2 {
        font-size: 25px;
    }

    .sidebar-widget {
        /* border:none; */
        padding: 5px;
    }
}

/* Sidebar Filters */
.collection-sidebar {
    background: #fff;
    position: sticky;
    top: 150px;
    height: fit-content;
}

.sidebar-main-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.close-sidebar {
    margin-top: -15px;
    display: none;
    /* Hidden on desktop */
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    color: #000;
}

.sidebar-main-title h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    color: #000;
}

.sidebar-header {
    display: none;
    /* Only mobile */
}

.filter-widget {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.filter-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #000;
}

.accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0 !important;
    padding-bottom: 20px;
    transition: 0.3s;
}

.filter-widget .filter-content {
    display: none;
    padding-bottom: 20px;
}

.filter-widget.active .filter-content {
    display: block;
}

.filter-widget.active .accordion-trigger i {
    transform: rotate(180deg);
}

.filter-widget .accordion-trigger i {
    transition: 0.3s;
    font-size: 18px;
    color: #000;
}

/* Accordion */
.category-accordion {
    list-style: none;
}

.accordion-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    color: #333;
    border-bottom: 1px dashed #eee;
}

.cat-filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cat-filter-group input[type="checkbox"] {
    display: none;
}



.cat-check-label {
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

input[type="checkbox"]:checked+.cat-check-label {
    background: #bd0028;
    border-color: #bd0028;
}

input[type="checkbox"]:checked+.cat-check-label::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cat-name-toggle,
.cat-name {
    cursor: pointer;
    font-size: 14px !important;
    color: #333 !important;
    font-weight: 500 !important;
    display: inline-block !important;
}

.cat-name-toggle:hover,
.cat-name:hover {
    color: #bd0028 !important;
}


.accordion-item:hover {
    color: #bd0028;
    padding-left: 5px;
}

.sub-categories {
    list-style: none;
    padding-left: 15px;
    display: none;
    /* Initially hidden */
}

.category-accordion li.active .sub-categories {
    display: block;
}

.category-accordion li.active .accordion-item i {
    transform: rotate(180deg);
}

.sub-categories li,
.brand-list li {
    padding: 6px 0;
}

.sub-categories label,
.brand-list label,
.single-cat {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.sub-categories input,
.brand-list input {
    accent-color: #bd0028;
}

.sub-categories label:hover,
.brand-list label:hover {
    color: #000;
}

/* Price Range */
.price-slider-wrapper {
    padding: 10px 5px;
}

#priceRange {
    width: 100%;
    accent-color: #bd0028;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    color: #000;
    /* Added color */
}

.btn-clear-filters {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #ddd;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.btn-clear-filters:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Collection Main Listing */
.collection-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.btn-mobile-filter {
    display: none;
    /* Only mobile */
}

.control-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.control-group label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    /* Added color */
}

.control-select {
    padding: 8px 15px;
    border: 1px solid #eee;
    font-size: 13px;
    border-radius: 4px;
    outline: none;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-num {
    width: 40px;
    color: #000000;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.page-num.active,
.page-num:hover {
    background: #bd0028;
    color: #fff;
    border-color: #bd0028;
}

.page-btn {
    padding: 0 20px;
    height: 40px;
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.page-btn:hover {
    background: #000;
    color: #fff;
}

/* Empty State UI */
.no-products-ui {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border: 1px dashed #ddd;
    border-radius: 8px;
    margin: 20px 0;
}

.no-products-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    color: #bd0028;
}

.no-products-icon i {
    width: 30px;
    height: 30px;
}

.no-products-ui h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
    text-transform: uppercase;
}

.no-products-ui p {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-clear-filters-large {
    background: #bd0028;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-clear-filters-large:hover {
    background: #000;
}

/* Responsive */
@media (max-width: 1024px) {
    .collection-layout {
        grid-template-columns: 1fr;
    }

    .collection-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100%;
        background: #fff;
        z-index: 10000;
        padding: 30px;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .collection-sidebar.active {
        left: 0;
    }

    .sidebar-main-title {
        margin-bottom: 20px;
    }

    .close-sidebar {
        display: block;
        /* Show only on mobile */
    }

    .btn-mobile-filter {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #000;
        color: #fff;
        padding: 10px 20px;
        border: none;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-right: auto;
    }

    .collection-controls {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .control-group label {
        display: none;
    }

    .collection-controls {
        gap: 15px;
    }
}

/* Wishlist Page */
.wishlist-page {
    padding: 80px 0;
    min-height: 60vh;
}

.page-header {
    margin-bottom: 50px;
    text-align: center;
}

.page-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 36px;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.wishlist-table-container {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow-x: auto;
}

.wishlist-table {
    width: 100%;
    border-collapse: collapse;
}

.wishlist-table th {
    color: #000;
    background: #fcfcfc;
    padding: 20px;
    text-align: left;
    font-family: 'Audiowide', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 2px solid #eee;
}

.wishlist-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.product-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-item-meta img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 4px;
}

.product-item-meta a {
    font-weight: 700;
    color: #000;
    font-size: 16px;
    transition: 0.3s;
}

.product-item-meta a:hover {
    color: #bd0028;
}

.price-cell {
    font-weight: 700;
    font-size: 16px;
    color: #bd0028;
}

.stock-badge {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.stock-badge.in-stock {
    background: #e6f9ed;
    color: #1a8e4a;
}

.stock-badge.out-stock {
    background: #ffebeb;
    color: #d32f2f;
}

.btn-wishlist-cart {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    /* Prevents text from breaking */
    width: 100%;
    max-width: 180px;
}

.btn-wishlist-cart:hover:not(:disabled) {
    background: #bd0028;
}

.btn-wishlist-cart:disabled {
    background: #ccc;
    color: #999;
    cursor: not-allowed;
}

.btn-remove-wishlist {
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: 0.3s;
}

.btn-remove-wishlist:hover {
    background: #ffebeb;
    color: #d32f2f;
}

.action-cell {
    text-align: center;
    min-width: 200px;
}

.remove-cell {
    text-align: center;
    width: 80px;
}

.wishlist-actions {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

.btn-clear-wishlist {
    background: none;
    border: 1px solid #eee;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-clear-wishlist:hover {
    background: #ffebeb;
    color: #d32f2f;
    border-color: #d32f2f;
}

/* Empty Wishlist */
.empty-wishlist {
    text-align: center;
    padding: 100px 0;
}

.empty-wishlist i {
    width: 80px;
    height: 80px;
    color: #ccc;
    /* Slightly darker than before */
    margin-bottom: 20px;
}

.empty-wishlist h2 {
    font-family: 'Audiowide', sans-serif;
    margin-bottom: 10px;
    color: #000;
    /* Explicit black color */
}

.empty-wishlist p {
    color: #666;
    margin-bottom: 30px;
}

.btn-continue {
    display: inline-block;
    background: #bd0028;
    color: #fff;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.btn-continue:hover {
    background: #000;
}

/* Responsive Wishlist */
@media (max-width: 768px) {

    .wishlist-table th:nth-child(3),
    .wishlist-table td:nth-child(3) {
        display: none;
    }
}

/* Product Detail Wishlist Button */
.detail-wishlist-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid #eee;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.detail-wishlist-btn:hover {
    border-color: #bd0028;
    color: #bd0028;
    background: #fff5f5;
}

.detail-wishlist-btn.active {
    background: #bd0028;
    border-color: #bd0028;
    color: #fff;
}

.detail-wishlist-btn i {
    width: 22px;
    height: 22px;
}

/* --- Cart Sidebar Drawer --- */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: #fff;
    z-index: 1100;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Slightly lighter overlay without blur */
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    color: #000;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item-img {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px;
    background: #f9f9f9;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price {
    font-size: 14px;
    color: #bd0028;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-item-variant {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

/* Product Detail Rating Summary */
.product-rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.product-rating-summary .stars {
    display: flex;
    gap: 2px;
}

.product-rating-summary .stars i {
    width: 16px;
    height: 16px;
    color: #ccc;
    fill: transparent;
}

.product-rating-summary .stars i.fill {
    color: #ffb800;
    fill: #ffb800;
}

.product-rating-summary .review-count {
    font-size: 14px;
    color: #666;
}

.cart-qty-toggle {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    overflow: hidden;
    height: 28px;
}

.cart-qty-btn {
    background: #fff;
    border: none;
    width: 28px;
    height: 100%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.cart-qty-btn:hover {
    background: #eee;
}

.cart-qty-input {
    width: 30px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 13px;
    font-weight: 700;
    height: 100%;
}

.btn-remove-item {
    background: none;
    border: none;
    color: #999;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
}

.btn-remove-item:hover {
    color: #bd0028;
}

.cart-sidebar-header h3 {
    font-family: 'Audiowide', sans-serif;
    font-size: 20px;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
}

.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px;
    background: #fff;
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

/* Chrome, Edge, Safari */
.cart-items-container::-webkit-scrollbar {
    width: 3px;
}

.cart-items-container::-webkit-scrollbar-track {
    background: transparent;
}

.cart-items-container::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.cart-items-container::-webkit-scrollbar-thumb:hover {
    background: #bd0028;
}

.cart-sidebar-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
    background: #fff;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.02);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-total span:first-child {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.total-amount {
    font-size: 22px;
    font-weight: 700;
    color: #bd0028;
    /* Changed to theme red for better visibility */
}

.shipping-note {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    line-height: 1.4;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: #bd0028;
    color: #fff;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-checkout:hover {
    background: #000;
}

.btn-view-cart {
    width: 100%;
    padding: 13px;
    background: #fff;
    color: #000;
    border: 1.5px solid #000;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
    font-size: 13px;
    display: block;
    text-align: center;
}

.btn-view-cart:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 500px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-hero {
    padding: 60px 0 80px;
    text-align: center;
}

.contact-form-container {
    max-width: 800px;
    margin: -50px auto 0;
    /* Centered with overlap */
    position: relative;
    z-index: 5;
}

/* Form Panel */
.contact-form-panel {
    background: #fff;
    padding: 50px;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1.5px solid #eee;
    border-radius: 6px;
    font-size: 15px;
    transition: 0.3s;
    background: #fcfcfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #bd0028;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(189, 0, 40, 0.05);
}

.btn-submit-contact {
    background: #000;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    width: 100%;
    /* Full width for solid look */
    justify-content: center;
}

.btn-submit-contact:hover {
    background: #bd0028;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(189, 0, 40, 0.2);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Policy & Content Page Styles
   ========================================================================== */
.policy-hero {
    background: linear-gradient(rgb(0 0 0 / 35%), rgba(0, 0, 0, 0.7)), url(../assets/image/vape-hero-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.policy-hero .page-title,
.policy-hero .page-subtitle {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.policy-hero .breadcrumb,
.policy-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.policy-hero .last-updated {
    color: rgba(255, 255, 255, 0.6);
}

.last-updated {
    font-size: 13px;
    color: #999;
    font-style: italic;
    margin-top: 10px;
}

.policy-content {
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.content-card {
    background: #fff;
    padding: 60px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    max-width: 1000px;
    margin: 0 auto;
}

.policy-block {
    margin-bottom: 40px;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h3 {
    font-family: 'Audiowide', sans-serif;
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policy-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

@media (max-width: 768px) {
    .content-card {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .policy-hero {
        padding: 60px 0;
    }
}

/* ==========================================================================
   Checkout Page Styles
   ========================================================================== */
.checkout-page {
    padding: 60px 0 100px;
    background: #fff;
    color: #000;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-section h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-section p {
    font-size: 13px;
    color: #666;
}

.form-section p a {
    color: #bd0028;
    font-weight: 600;
}

.modern-form .form-group {
    margin-bottom: 15px;
}

.modern-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.modern-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s;
}

.modern-form input[type="checkbox"],
.modern-form input[type="radio"] {
    width: 18px;
    height: 18px;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.modern-form input:focus {
    border-color: #000;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-top: 10px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transform: translateY(1px);
}

.checkbox-group label {
    margin: 0;
    line-height: 1.2;
    cursor: pointer;
}

/* Payment & Billing Redesign */
.payment-container,
.billing-container {
    border: 1px solid #ddd;
    overflow: hidden;
}

.payment-method-header {
    padding: 20px;
    background: #fff;
    border: 2px solid #bd0028;
    /* Website Red */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-icons {
    display: flex;
    gap: 8px;
}

.card-icons img {
    height: 20px;
    width: auto;
    background: #fff;
    padding: 2px 5px;
    border: 1px solid #eee;
    border-radius: 3px;
}

.payment-method-info {
    padding: 20px;
    background: #fdfdfd;
    border: 1px solid #ddd;
    border-top: none;
}

.payment-method-info p {
    font-size: 14px;
    color: #444;
}

/* Billing Options */
.billing-option {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: 0.2s;
    background: #fff;
}

.billing-option:last-child {
    border-bottom: none;
}

.billing-option.active {
    background: #fff9fa;
    /* Very subtle red tint */
    border: 1px solid #bd0028;
    /* Website Red */
    z-index: 1;
}

.billing-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #bd0028;
}

.billing-form-hidden {
    display: none;
    padding: 25px;
    background: #fdfdfd;
    border-top: 1px solid #eee;
}

.billing-form-hidden.show {
    display: block;
}

.modern-select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
}

.btn-pay-now {
    width: 50%;
    background: #bd0028;
    /* Website Primary Red */
    color: #fff;
    border: none;
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-pay-now:hover {
    background: #000;
    /* Hover to Black */
    transform: translateY(-2px);
}

.mt-20 {
    margin-top: 20px;
}

.checkout-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.btn-complete-order {
    background: #bd0028;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-complete-order:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.back-to-cart {
    font-size: 13px;
    color: #666;
    text-decoration: underline;
}

/* Summary Column */
.checkout-summary-side {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.summary-card {
    background: #fdfdfd;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.summary-items {
    padding: 6px;
    max-height: 400px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.item-img {
    width: 65px;
    /* Increased to Pro size */
    height: 65px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-img img {
    max-width: 92%;
    max-height: 92%;
    object-fit: contain;
}

.item-qty-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #555;
    /* Slightly darker for better visibility */
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.item-price {
    font-weight: 700;
    font-size: 14px;
}

.discount-code-box {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.btn-apply {
    padding: 0 20px;
    background: #eee;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.summary-totals {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.total-row.grand-total {
    padding-top: 6px;
    border-top: 1px solid #eee;
    font-weight: 800;
}

.final-price {
    font-size: 24px;
    color: #bd0028;
}

@media (max-width: 768px) {
    .checkout-page {
        padding-top: 30px;
    }
    
    .checkout-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .checkout-summary-side {
        order: -1; /* Keep summary at the top for mobile */
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }

    .summary-card {
        padding: 20px 15px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    }

    .summary-item {
        gap: 15px;
        margin-bottom: 20px;
    }

    .item-img {
        width: 55px;
        height: 55px;
    }

    .item-name {
        font-size: 13px;
    }

    .final-price {
        font-size: 20px;
    }

    /* Form Improvements on Mobile */
    .form-section {
        padding: 20px 15px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modern-form input {
        padding: 14px;
        font-size: 15px;
    }

    .checkout-footer {
        flex-direction: column;
        gap: 15px;
    }

    .btn-pay-now {
        width: 100%;
        padding: 18px;
    }

    /* Payment & Billing Refinements */
    .form-section .section-header {
        margin-bottom: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .form-section .section-header h3 {
        font-size: 16px;
        margin-bottom: 0;
    }

    .form-section .section-header p {
        font-size: 12px;
        line-height: 1.4;
        text-align: left;
    }

    .payment-method-header {
        padding: 12px;
        font-size: 13px;
    }

    .payment-method-info {
        padding: 15px;
        font-size: 13px;
    }

    .billing-option {
        padding: 12px 15px;
        font-size: 13px;
    }

    .billing-option.active {
        border-width: 1px;
    }
}

/* Authentication Page Styles */
.auth-page {
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background: #fff;
}

.auth-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.auth-box {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    position: relative;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    color: #888;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: var(--font-main);
}

.auth-tab.active {
    color: #bd0028;
}

.auth-tab:hover {
    color: #d32f2f;
}

.auth-tab-indicator {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50%;
    height: 2px;
    background: #bd0028;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-slider-container {
    width: 100%;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-slider {
    display: flex;
    width: 200%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
}

.auth-form-pane {
    width: 50%;
    padding: 0 5px;
    flex-shrink: 0;
}

.auth-form .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-form .form-header h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 28px;
    margin-bottom: 8px;
    color: #000;
}

.auth-form .form-header p {
    font-size: 14px;
    color: #666;
}

.auth-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 12px 15px;
    color: #000;
    font-size: 14px;
    transition: 0.3s;
    font-family: var(--font-main);
}

.auth-form input:focus {
    border-color: #000;
    outline: none;
}

.auth-form .password-wrapper {
    position: relative;
    width: 100%;
}

.auth-form .password-wrapper input {
    padding-right: 45px;
}

.auth-form .password-toggle-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: 0.3s;
}

.auth-form .password-toggle-btn:hover {
    color: #000;
}

.auth-form .password-toggle-btn i {
    width: 18px;
    height: 18px;
}

.auth-form .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.auth-form .remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: normal;
    white-space: nowrap;
}

.auth-form .remember-me input[type="checkbox"] {
    margin: 0;
    width: auto;
    cursor: pointer;
}

.auth-form .forgot-password {
    color: #666;
    text-decoration: underline;
    transition: 0.3s;
}

.auth-form .forgot-password:hover {
    color: #bd0028;
}

.auth-submit-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: 1.5px solid #000;
    padding: 14px 0;
    border-radius: 2px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    /* margin-top: 10px; */
}

.auth-submit-btn:hover {
    background: #bd0028;
    border: 1.5px solid #bd0028;
}

@media (max-width: 480px) {
    .auth-box {
        padding: 30px 20px;
    }
}

.auth-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0 20px;
}

.auth-separator::before,
.auth-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.auth-separator span {
    padding: 0 15px;
    color: #888;
    font-size: 13px;
    font-weight: 500;
}

.btn-social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 12px 0;
    border-radius: 2px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-social:hover {
    background: #fafafa;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Blog Listing & Sidebar Styles
   ========================================================================== */

.blog-listing-page {
    background: #fff;
}

.blog-content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding-top: 80px;
    align-items: flex-start;
}

/* Left Section: Blog Grid */
.listing-grid {
    grid-template-columns: repeat(3, 1fr);
}


/* Responsive Blog Layout */
@media (max-width: 1200px) {
    .blog-content-layout {
        gap: 30px;
        grid-template-columns: 1fr 280px;
    }

    .listing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 991px) {
    .blog-content-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .listing-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   Bento Grid Section (Redesigned Masonry)
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.bento-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.bento-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item.span-2-2 {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.span-2-1 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    transition: all 0.4s ease;
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    color: #fff;
    z-index: 2;
}

.bento-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #bd0028;
    color: #fff;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.bento-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #fff;
}

.span-2-2 .bento-title {
    font-size: 32px;
}

.bento-desc {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 90%;
}

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-item.span-2-2 {
        grid-row: span 1;
        /* Reset row span for better fit */
    }

    .span-2-2 .bento-title {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .bento-item.span-2-2,
    .bento-item.span-2-1 {
        grid-column: span 1;
    }

    .bento-section {
        padding: 0 20px !important;
    }
}

/* ==========================================================================
   What We Offer Section
   ========================================================================== */
.offer-section {
    padding: 100px 0;
}

.offer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.offer-header {
    flex: 0 0 350px;
}

.offer-header h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 36px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.offer-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.offer-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.offer-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0px 4px 50px rgb(189 0 40 / 5%);
    border-color: #bd002822;
}

/* Unique Border Radii for each card */
.offer-card:nth-child(1) {
    border-radius: 40px 10px 40px 10px;
}

.offer-card:nth-child(2) {
    border-radius: 10px 40px 10px 40px;
}

.offer-card:nth-child(3) {
    border-radius: 25px;
}

.offer-card:nth-child(4) {
    border-radius: 15px 15px 50px 15px;
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.offer-card:hover .offer-icon {
    background: #bd0028;
}

.offer-card h3 {
    font-family: 'Audiowide', sans-serif;
    font-size: 22px;
    color: #000;
}

.offer-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Offer Section */
@media (max-width: 1200px) {
    .offer-container {
        flex-direction: column;
        gap: 50px;
    }

    .offer-header {
        flex: none;
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-section {
        padding: 70px 0;
    }

    .offer-container {
        padding: 0 20px;
    }
}

/* Collection Page Optimizations */
.product-grid {
    transition: opacity 0.3s ease;
    position: relative;
    min-height: 400px;
}

.product-grid.is-loading {
    pointer-events: none;
}

.product-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.spinner-custom {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #bd0028;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pagination-dots {
    padding: 0 10px;
    color: #999;
    font-weight: bold;
}

.category-accordion .accordion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    cursor: pointer;
    transition: 0.3s;
}

.category-accordion .accordion-item:hover .cat-name-toggle {
    color: #bd0028;
}

.category-accordion .sub-categories {
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.category-accordion li.active>.sub-categories {
    max-height: 500px;
}

.category-accordion li.active>.accordion-item i {
    transform: rotate(180deg);
}

.filter-checkbox {
    cursor: pointer;
}

/* Premium Checkbox Styling */
.cat-filter-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.filter-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.cat-check-label {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-block;
}

.filter-checkbox:checked~.cat-check-label {
    background-color: #bd0028;
    border-color: #bd0028;
}

.cat-check-label:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox:checked~.cat-check-label:after {
    display: block;
}

.cat-filter-group:hover .cat-check-label {
    border-color: #bd0028;
}

.cat-name,
.cat-name-toggle {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    transition: 0.3s;
}

.filter-checkbox:checked~.cat-name,
.filter-checkbox:checked~.cat-name-toggle {
    color: #000;
    font-weight: 600;
}

.sale-percentage {
    background: #fdf2f2;
    color: #bd0028;
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid rgba(189, 0, 40, 0.1);
}/* --- Shopping Cart Page (Premium Light Redesign) --- */
.cart-page {
    background: #fdfdfd;
    min-height: 80vh;
    padding-top: 60px;
    padding-bottom: 100px;
    color: #1a1a1a;
}

.cart-page h1 {
    font-family: 'Audiowide', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #000;
}

.cart-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    margin-top: 40px;
}

.cart-table-header {
    display: grid;
    grid-template-columns: 3.5fr 1fr 1.5fr 1fr;
    padding: 15px 25px;
    background: #f1f1f1;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 15px;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-row {
    display: grid;
    grid-template-columns: 3.5fr 1fr 1.5fr 1fr;
    padding: 20px 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    align-items: center;
    transition: 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.cart-row:hover {
    border-color: #ddd;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.cart-product-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-img-box {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
    border: 1px solid #eee;
}

.cart-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-details h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cart-item-details h3 a {
    color: #000;
}

.cart-item-details h3 a:hover {
    color: #bd0028;
}

.variant-tag {
    display: inline-block;
    font-size: 11px;
    color: #777;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 3px;
}

/* Light Quantity Picker */
.cart-qty-picker {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: fit-content;
    overflow: hidden;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
}

.cart-qty-btn:hover {
    background: #f0f0f0;
}

.cart-qty-input {
    width: 35px;
    height: 32px;
    background: transparent;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
}

.btn-remove-icon {
    background: #fff;
    color: #999;
    border: 1px solid #eee;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.cart-total-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.btn-remove-icon:hover {
    background: #fee;
    color: #bd0028;
    border-color: #fcc;
    transform: scale(1.1);
}

/* Light Summary Card */
.cart-summary-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    position: sticky;
    top: 120px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.summary-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #000;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.summary-list {
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.summary-item.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    color: #000;
    font-weight: 800;
    font-size: 20px;
}

.btn-checkout-premium {
    display: block;
    width: 100%;
    padding: 18px;
    background: #000;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: 0.3s ease;
}

.btn-checkout-premium:hover {
    background: #bd0028;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(189, 0, 40, 0.2);
}

.continue-shopping-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 14px;
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.continue-shopping-link:hover {
    color: #000;
}

@media (max-width: 1200px) {
    .cart-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Utility Classes */
.desktop-only {
    display: block;
}
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
    
    .cart-page {
        padding-top: 20px;
    }
    
    .cart-page h1 {
        font-size: 22px;
        text-align: center;
    }

    .cart-page .section-header p {
        text-align: center;
        margin-bottom: 25px;
        font-size: 14px;
    }
    
    .cart-table-header {
        display: none;
    }
    
    .cart-row {
        display: flex;
        flex-wrap: wrap;
        padding: 15px;
        gap: 15px;
        align-items: center;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
    }
    
    .col-product {
        width: 100%;
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .cart-img-box {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .cart-product-info {
        display: flex;
        gap: 15px;
        align-items: center;
        width: 100%;
    }

    .cart-item-details h3 {
        font-size: 15px;
        margin-bottom: 3px;
        line-height: 1.2;
    }

    .variant-tag {
        font-size: 10px;
        padding: 1px 6px;
    }
    
    .col-qty {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .cart-qty-picker {
        transform: scale(0.9);
        transform-origin: left;
    }
    
    .col-total {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .cart-total-wrapper {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .btn-remove-icon {
        width: 32px;
        height: 32px;
    }

    .cart-summary-card {
        padding: 20px;
        margin-top: 20px;
    }
}

/* Account Dropdown Styles (Phase 2.3) */
.account-dropdown-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 10px; /* Added spacing */
}

.account-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    height: 40px;
    width: auto !important; /* Override fixed width */
    min-width: 40px;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff; /* Changed to white for dark header */
    transition: color 0.3s;
    border-radius: 4px !important; /* Override circle shape */
}

.account-toggle:hover {
    color: #bd0028;
}

.user-name-text {
    font-size: 14px;
    font-weight: 600;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff; /* Ensure text is white */
}

.chevron-icon {
    width: 14px !important;
    height: 14px !important;
    transition: transform 0.3s;
}

.account-dropdown-wrapper:hover .chevron-icon {
    transform: rotate(180deg);
}

.account-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 240px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    padding: 10px 0;
}

.account-dropdown-wrapper:hover .account-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 12px 20px;
}

.welcome-text {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.user-email {
    font-size: 12px;
    color: #888;
    margin: 4px 0 0;
}

.dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.dropdown-item i {
    width: 18px !important;
    height: 18px !important;
    color: #888;
}

.dropdown-item:hover {
    background: #f9f9f9;
    color: #bd0028;
}

.dropdown-item:hover i {
    color: #bd0028;
}

.logout-link {
    color: #ef4444;
}

.logout-link:hover {
    background: #fff1f2;
    color: #e11d48;
}

.logout-link:hover i {
    color: #e11d48;
}

/* Auth Page Enhancements */
/* Premium Toast System */
.toast-container { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    z-index: 10000; 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    pointer-events: none; 
}

.toast { 
    background: #111111; 
    color: #ffffff; 
    padding: 16px 28px; 
    border-radius: 4px; 
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4); 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    min-width: 320px; 
    transform: translateX(130%); 
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    pointer-events: auto; 
    border-left: 5px solid #bd0028; 
    backdrop-filter: blur(10px); 
    position: relative;
    overflow: hidden;
}

.toast.active { 
    transform: translateX(0); 
}

.toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(189, 0, 40, 0.08), transparent);
    pointer-events: none;
}

.toast-success { border-left-color: #bd0028; }
.toast-error { border-left-color: #ff3e3e; }
.toast-info { border-left-color: #000000; }

.toast-icon { 
    font-size: 22px; 
    display: flex; 
    align-items: center; 
    color: #bd0028;
}

.toast-message { 
    font-size: 14px; 
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Button Loading States */
.btn-loading { pointer-events: none; position: relative; color: transparent !important; }
.btn-loading::after { content: ""; position: absolute; width: 20px; height: 20px; top: 50%; left: 50%; margin: -10px 0 0 -10px; border: 3px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: #fff; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Authentication Page Styles (Phase 2.3) */
.auth-page {
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background: #fff;
}

.auth-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.auth-box {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    position: relative;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    color: #888;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0;
    cursor: pointer;
    transition: 0.3s ease;
}

.auth-tab.active {
    color: #bd0028;
}

.auth-tab:hover {
    color: #d32f2f;
}

.auth-tab-indicator {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50%;
    height: 2px;
    background: #bd0028;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-slider-container {
    width: 100%;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-slider {
    display: flex;
    width: 200%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
}

.auth-form-pane {
    width: 50%;
    padding: 0 5px;
    flex-shrink: 0; 
}

.auth-form .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-form .form-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #000;
}

.auth-form .form-header p {
    font-size: 14px;
    color: #666;
}

.auth-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 12px 15px;
    color: #000;
    font-size: 14px;
    transition: 0.3s;
}

.auth-form input:focus {
    border-color: #000;
    outline: none;
}

.auth-form .password-wrapper {
    position: relative;
    width: 100%;
}

.auth-form .password-wrapper input {
    padding-right: 45px;
}

.auth-form .password-toggle-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: 0.3s;
}

.auth-form .password-toggle-btn:hover {
    color: #000;
}

.auth-form .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.auth-form .remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: normal;
}

.auth-form .forgot-password {
    color: #666;
    text-decoration: underline;
    transition: 0.3s;
}

.auth-form .forgot-password:hover {
    color: #bd0028;
}

.auth-submit-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: 1.5px solid #000;
    padding: 14px 0;
    border-radius: 2px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    cursor: pointer;
}

.auth-submit-btn:hover {
    background: #bd0028;
    border: 1.5px solid #bd0028;
}

.auth-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0 20px;
}

.auth-separator::before,
.auth-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.auth-separator span {
    padding: 0 15px;
    color: #888;
    font-size: 13px;
    font-weight: 500;
}

.btn-social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 12px 0;
    border-radius: 2px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-social:hover {
    background: #fafafa;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

@media (max-width: 480px) {
    .auth-box {
        padding: 30px 20px;
    }
}

/* Account Page Dashboard Styles (Phase 2.3) */
.account-page {
    background: #f8f9fa;
    min-height: 90vh;
    padding-top: 40px;
}

.account-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: flex-start;
}

/* Sidebar Styling - Modern & Clean */
.account-sidebar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px 0;
    position: sticky;
    top: 120px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.user-profile-brief {
    padding: 0 24px 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 54px;
    height: 54px;
    background: #fff1f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bd0028;
    flex-shrink: 0;
}

.user-avatar i {
    width: 26px;
    height: 26px;
}

.user-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-info p {
    font-size: 12px;
    color: #6b7280;
    margin: 2px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.account-nav {
    display: flex;
    flex-direction: column;
    padding: 0 12px;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #4b5563;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin-bottom: 4px;
}

.account-nav-link i {
    width: 18px;
    height: 18px;
    color: #9ca3af;
    transition: color 0.2s;
}

.account-nav-link:hover {
    background: #f9fafb;
    color: #bd0028;
}

.account-nav-link:hover i {
    color: #bd0028;
}

.account-nav-link.active {
    background: #fff1f2;
    color: #bd0028;
}

.account-nav-link.active i {
    color: #bd0028;
}

.nav-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 12px 16px;
}

.logout-btn {
    color: #dc2626;
}

.logout-btn:hover {
    background: #fef2f2;
}

/* Content Area - Card Based Layout */
.account-content {
    min-width: 0;
}

.account-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.welcome-header {
    margin-bottom: 40px;
}

.welcome-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111827;
}

.welcome-header p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.dashboard-info-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    font-weight: 700;
    margin: 0;
}

.edit-link, .view-all, .btn-link {
    font-size: 13px;
    color: #bd0028;
    text-decoration: none !important;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.edit-link:hover, .view-all:hover {
    border-bottom-color: #bd0028;
}

.card-body p {
    font-size: 15px;
    margin-bottom: 8px;
    color: #111827;
}

.card-body p strong {
    color: #6b7280;
    font-weight: 500;
    margin-right: 8px;
}

/* Professional Buttons - Matching Theme */
.btn-primary {
    background-color: #bd0028 !important;
    color: #ffffff !important;
    padding: 14px 28px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-primary:hover {
    background-color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px rgba(189, 0, 40, 0.3) !important;
}

.btn-outline {
    background-color: transparent !important;
    color: #bd0028 !important;
    border: 2px solid #bd0028 !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.btn-outline:hover {
    background-color: #bd0028 !important;
    color: #fff !important;
}

/* Account Tables - Professional Finish */
.orders-table-wrapper {
    overflow-x: auto;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
}

.account-table {
    width: 100%;
    border-collapse: collapse;
}

.account-table th {
    text-align: left;
    padding: 16px 10px;
    background: #f9fafb;
    border-bottom: 1px solid #f3f4f6;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4b5563;
    letter-spacing: 0.05em;
}

.account-table td {
    padding: 16px 10px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    color: #111827;
    vertical-align: middle;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-pending { background: #fff7ed; color: #9a3412; }
.status-paid, .status-shipped, .status-delivered { background: #f0fdf4; color: #166534; }
.status-processing { background: #eff6ff; color: #1e40af; }
.status-cancelled { background: #fef2f2; color: #991b1b; }

.btn-action-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: transparent;
    color: #bd0028;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    border: 1px solid #bd0028;
    white-space: nowrap;
    cursor: pointer;
}

.btn-action-view:hover {
    background: #bd0028;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(189, 0, 40, 0.15);
}


/* Profile Form - Better Inputs */
.modern-form .form-group {
    margin-bottom: 24px;
}

.modern-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.modern-form input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    color: #111827;
    transition: all 0.2s;
    background: #fff;
}

.modern-form input:focus {
    border-color: #bd0028;
    outline: none;
    box-shadow: 0 0 0 3px rgba(189, 0, 40, 0.1);
}

.modern-form input:disabled {
    background: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
}

.form-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.empty-orders-state {
    text-align: center;
    /* padding: 80px 0; */
}

.empty-icon {
    width: 120px;
    height: 120px;
    background: #f9fafb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #cbd5e0;
}

.empty-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.empty-orders-state h3 {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .account-container {
        grid-template-columns: 1fr;
    }
    
    .account-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .account-card {
        padding: 24px;
    }
    
    .welcome-header h2 {
        font-size: 24px;
    }
    
    .account-table thead {
        display: none;
    }
    
    .account-table tr {
        display: block;
        border: 1px solid #f3f4f6;
        border-radius: 12px;
        margin-bottom: 16px;
        padding: 16px;
    }
    
    .account-table td {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border: none;
        font-size: 13px;
    }
    
    .account-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #6b7280;
        text-transform: uppercase;
        font-size: 11px;
    }
}

/* Address Management Styles (Phase 2.3) */
.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.address-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.address-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #bd0028;
}

.default-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #bd0028;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.address-card h4 {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}

.address-card p {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.5;
}

.address-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
    margin-top: 12px;
}

.address-actions {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
}

.address-action-btn {
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.btn-set-default { color: #bd0028; }
.btn-delete-address { color: #ef4444; }

.btn-set-default:hover, .btn-delete-address:hover {
    text-decoration: underline;
}

.address-form-container {
    background: #f9fafb;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    margin-bottom: 40px;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

/* Premium Search Autocomplete Dropdown Styles */
.search-bar {
    position: relative;
}

.search-suggestions-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    z-index: 99999;
    max-height: 480px;
    overflow-y: auto;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.search-suggestions-dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar for Search Dropdown */
.search-suggestions-dropdown::-webkit-scrollbar {
    width: 6px;
}
.search-suggestions-dropdown::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0 12px 12px 0;
}
.search-suggestions-dropdown::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}
.search-suggestions-dropdown::-webkit-scrollbar-thumb:hover {
    background: #e60000;
}


.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #1a1a1a;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.suggestion-item:last-of-type {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #1a1a1a;
}

.suggestion-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 14px;
    border: 1px solid #2a2a2a;
    background: #000;
}

.suggestion-info {
    flex: 1;
    min-width: 0; /* Enables text truncation */
}

.suggestion-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.suggestion-item:hover .suggestion-name {
    color: #e50914; /* Accent Red */
}

.suggestion-price {
    color: #a0a0a0;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.suggestion-price span {
    color: #e50914; /* Accent Red */
}

.suggestion-no-results {
    padding: 24px;
    text-align: center;
    color: #777;
    font-size: 14px;
}

.suggestion-view-all {
    display: block;
    padding: 14px;
    text-align: center;
    background: #0c0c0c;
    color: #e50914;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border-top: 1px solid #2a2a2a;
    border-radius: 0 0 12px 12px;
}

.suggestion-view-all:hover {
    background: #141414;
    color: #ff1f29;
}


/* Mobile Only Nav Item */
.mobile-only-nav {
    display: none !important;
}

@media (max-width: 1024px) {
    .mobile-only-nav {
        display: block !important;
    }
}

/* Site Entry Modal */
.site-entry-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.site-entry-overlay.active {
    opacity: 1;
    visibility: visible;
}

.site-entry-modal {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.site-entry-overlay.active .site-entry-modal {
    transform: translateY(0);
}

.site-entry-modal .entry-icon {
    width: 70px;
    height: 70px;
    background: #bd0028;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.site-entry-modal .entry-icon i {
    width: 35px;
    height: 35px;
}

.site-entry-modal h2 {
    color: #fff;
    font-size: 28px;
    font-family: 'Audiowide', sans-serif;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.site-entry-modal p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.entry-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-entry-yes {
    background: #bd0028;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-entry-yes:hover {
    background: #a00020;
}

.btn-entry-no {
    background: transparent;
    color: #888;
    border: 1px solid #444;
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-entry-no:hover {
    background: #222;
    color: #fff;
}

/* Age Gate - Logo Styles */
.entry-logo {
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
}

.entry-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(189, 0, 40, 0.4));
}

.entry-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #bd0028, transparent);
    margin: 0 auto 25px;
    border-radius: 2px;
}

/* Rich Text Section Styles */
.rich-text-section {
    /*padding: 60px 0;*/
    background-color: transparent;
}

.rich-text-section .section-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #111111 !important; /* Ensure visibility on white bg */
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.rich-text-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #bd0028; /* Theme Red Accent */
}

.rich-text-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rich-text-item {
    width: 100%;
}

.rich-text-item h3 {
    font-family: 'Audiowide', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #111111 !important;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rich-text-item .content-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444444 !important;
}

.rich-text-item .content-body p {
    margin-bottom: 15px;
    color: #444444 !important;
    font-size: 16px;
    line-height: 1.8;
}

.rich-text-item .content-body p:last-child {
    margin-bottom: 0;
}

.rich-text-item .content-body strong {
    color: #111111 !important;
    font-weight: 700;
}

.rich-text-item .content-body a {
    color: #bd0028 !important;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.rich-text-item .content-body a:hover {
    color: #000000 !important;
}

.rich-text-item .content-body h1,
.rich-text-item .content-body h2,
.rich-text-item .content-body h3,
.rich-text-item .content-body h4,
.rich-text-item .content-body h5,
.rich-text-item .content-body h6 {
    color: #111111 !important;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Audiowide', sans-serif !important;
}

.rich-text-item .content-body ul,
.rich-text-item .content-body ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.rich-text-item .content-body li {
    margin-bottom: 8px;
    color: #444444 !important;
    line-height: 1.6;
}

.rich-text-item .btn {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rich-text-item .btn-dark {
    background-color: #111111;
    color: #ffffff !important;
    border: 1px solid #111111;
}

.rich-text-item .btn-dark:hover {
    background-color: #bd0028;
    border-color: #bd0028;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(189, 0, 40, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rich-text-section {
        padding: 40px 0;
    }
    .rich-text-section .section-title {
        font-size: 26px;
    }
}

/* Premium Table Styles in Rich Text & Blogs */
.content-body table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin: 30px 0 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
}

.content-body th {
    background-color: #111111 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 0.8px !important;
    padding: 16px 20px !important;
    text-align: left !important;
    border: none !important;
    border-bottom: 2px solid #bd0028 !important; /* Premium Accent line */
}

.content-body td {
    padding: 16px 20px !important;
    color: #444444 !important;
    background-color: #ffffff !important;
    border: none !important;
    border-bottom: 1px solid #edf2f7 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    text-align: left !important;
    transition: background-color 0.2s ease !important;
}

/* Zebra Striping */
.content-body tr:nth-child(even) td {
    background-color: #f8fafc !important;
}

/* Remove bottom border on last row */
.content-body tr:last-child td {
    border-bottom: none !important;
}

/* Hover Effect */
.content-body tbody tr:hover td {
    background-color: rgba(189, 0, 40, 0.02) !important;
}

/* Responsive Table Scroll */
@media (max-width: 768px) {
    .content-body table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

