@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
        :root {
            --bh-red: #e31e24;
            --bh-orange: #ff6900;
            --bh-green: #4caf50;
            --bh-dark: #333;
            --bh-light-gray: #f8f9fa;
        }

        body {
            font-family: 'Open Sans', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
        }

        /* Top Header */
        .top-header {
            background-color: var(--bh-light-gray);
            font-size: 12px;
            padding: 5px 0;
            border-bottom: 1px solid #ddd;
        }

        .top-header .container-fluid {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-header a {
            color: #666;
            text-decoration: none;
            margin: 0 10px;
        }

        .top-header a:hover {
            color: var(--bh-red);
        }

        /* Responsive Top Header */
        @media (max-width: 768px) {
            .top-header {
                font-size: 10px;
                padding: 3px 0;
            }
            
            .top-header a {
                margin: 0 5px;
                font-size: 10px;
            }
            
            .top-header .d-flex {
                flex-wrap: wrap;
                gap: 5px;
            }
            
            .top-header span {
                font-size: 10px;
            }
        }

        @media (max-width: 576px) {
            .top-header {
                font-size: 9px;
                padding: 2px 0;
            }
            
            .top-header .container-fluid {
                padding: 0 10px;
            }
            
            .top-header a {
                margin: 0 3px;
                font-size: 9px;
            }
        }

        /* Main Header */
        .main-header {
            background-color: white;
            padding: 10px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .logo {
            background-color: var(--bh-red);
            color: white;
            padding: 8px 15px;
            font-weight: bold;
            font-size: 24px;
            border-radius: 3px;
        }

        .search-section {
            flex-grow: 1;
            max-width: 600px;
            margin: 0 20px;
        }

        .search-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-input {
            border: 2px solid #ddd;
            padding: 12px 50px 12px 15px;
            font-size: 16px;
            width: 100%;
            border-radius: 4px;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--bh-orange);
        }

        .search-input.search-active {
            border-color: var(--bh-red);
            background-color: #fff5f5;
        }

        /* Search Summary Styles */
        .search-summary {
            border-left: 4px solid var(--bh-red);
            background-color: #f8f9fa !important;
            transition: all 0.3s ease;
        }

        .search-summary:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .search-btn {
            position: absolute;
            right: 5px;
            background-color: var(--bh-orange);
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 3px;
            cursor: pointer;
        }

        .search-clear {
            position: absolute;
            right: 50px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            font-size: 14px;
            padding: 4px;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .search-clear:hover {
            color: var(--bh-red);
            background-color: rgba(227, 30, 36, 0.1);
        }

        .search-btn:hover {
            background-color: #e55a00;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .expert-help {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #333;
            text-decoration: none;
        }

        .expert-help:hover {
            color: var(--bh-red);
        }

        .flash-deal {
            background-color: var(--bh-red);
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 12px;
            text-decoration: none;
        }

        .account-cart {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .account-cart a {
            color: #333;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
        }

        .account-cart a:hover {
            color: var(--bh-red);
        }

        .account-cart i {
            font-size: 18px;
            margin-bottom: 2px;
        }

        /* User Account Styles */
        .user-account {
            position: relative;
        }

        .account-link {
            display: flex !important;
            align-items: center;
            gap: 12px;
            color: #333 !important;
            text-decoration: none;
            transition: color 0.3s ease;
            padding: 8px 0;
            flex-direction: row !important;
        }

        .account-link:hover {
            color: var(--bh-red) !important;
        }

        .user-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--bh-light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 2px solid var(--bh-red);
        }

        .user-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .user-avatar i {
            font-size: 20px;
            color: var(--bh-red);
        }

        .user-greeting {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .greeting-text {
            font-weight: 600;
            font-size: 14px;
        }

        .account-text {
            font-size: 12px;
            opacity: 0.9;
        }

        /* User Dropdown */
        .user-dropdown {
            min-width: 200px;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-radius: 12px;
            padding: 10px 0;
            margin-top: 10px;
        }

        .user-dropdown .dropdown-item {
            padding: 12px 20px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .user-dropdown .dropdown-item:hover {
            background: var(--bh-light-gray);
            padding-left: 25px;
        }

        .user-dropdown .dropdown-item i {
            width: 16px;
            font-size: 14px;
            color: var(--bh-red);
        }

        .user-dropdown .dropdown-item.text-danger i {
            color: #dc3545;
        }

        .user-dropdown .dropdown-divider {
            margin: 8px 0;
            border-color: #f0f0f0;
        }

        /* Cart Link */
        .cart-link {
            position: relative;
            display: flex !important;
            align-items: center;
            gap: 12px;
            color: #333 !important;
            text-decoration: none;
            transition: color 0.3s ease;
            padding: 8px 0;
            flex-direction: column !important;
        }

        .cart-link:hover {
            color: var(--bh-red) !important;
        }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--bh-orange);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--bh-red);
            min-width: 20px;
            animation: pulse 2s infinite;
        }

        .cart-badge:empty {
            display: none;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        /* Responsive Main Header */
        @media (max-width: 992px) {
            .main-header .container {
                padding: 0 15px;
            }
            
            .search-section {
                margin: 0 15px;
                max-width: 400px;
            }
            
            .header-right {
                gap: 15px;
            }
            
            .expert-help {
                display: none;
            }
            
            .logo {
                font-size: 20px;
                padding: 6px 12px;
            }
        }

        @media (max-width: 768px) {
            .main-header {
                padding: 8px 0;
            }
            
            .main-header .d-flex {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .search-section {
                order: 3;
                width: 100%;
                margin: 10px 0 0 0;
                max-width: none;
            }
            
            .search-input {
                padding: 10px 45px 10px 12px;
                font-size: 14px;
            }
            
            .logo {
                font-size: 18px;
                padding: 5px 10px;
            }
            
            .header-right {
                gap: 10px;
            }
            
            .account-cart a {
                font-size: 10px;
            }
            
            .account-cart i {
                font-size: 16px;
            }
            
            .flash-deal {
                padding: 3px 8px;
                font-size: 10px;
            }
        }

        @media (max-width: 576px) {
            .main-header .container {
                padding: 0 10px;
            }
            
            .logo {
                font-size: 16px;
                padding: 4px 8px;
            }
            
            .search-input {
                padding: 8px 40px 8px 10px;
                font-size: 12px;
            }
            
            .search-btn {
                padding: 6px 10px;
            }
            
            .account-cart a span {
                display: none;
            }
            
            .account-cart i {
                font-size: 14px;
            }
            
            .header-right {
                gap: 8px;
            }
        }

        /* Navigation Bar */
        .main-nav {
            background-color: var(--bh-green);
            padding: 0;
            height: auto;
            min-height: 50px;
            z-index: 1200;
            position: relative;
        }

        .main-nav .navbar-nav {
            position: static;
        }

        .main-nav .nav-item.dropdown {
            position: static;
        }

        .navbar-nav .nav-link {
            color: white !important;
            padding: 15px 20px !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            font-size: 14px;
        }

        .navbar-nav .nav-link:hover {
            background-color: rgba(255,255,255,0.1);
            color: white !important;
        }

        .navbar-toggler {
            border: none;
            padding: 8px 12px;
            margin: 8px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .promo-link{
            background-color: var(--bh-red);
            color: white !important;
           
            padding: 8px 15px !important;
            margin-left: 10px;
            font-weight: 600;
            font-size: 14px;
        }
         .promo-link:hover{
            background-color: #c4161c !important;
            color: white !important;
         }

        /* Mobile Navigation Styles */
        @media (max-width: 991.98px) {
            .main-nav {
                height: auto;
                padding: 0;
            }
            
            .navbar-collapse {
                background-color: var(--bh-green);
                margin-top: 0;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav {
                padding: 10px 0;
            }
            
            .navbar-nav .nav-link {
                padding: 12px 20px !important;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                margin: 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: rgba(255,255,255,0.15);
                padding-left: 25px !important;
            }
            
            .navbar-nav .nav-item:last-child .nav-link {
                border-bottom: none;
            }
            
            /* Hide mega menu on mobile */
            .mega-menu {
                display: none !important;
            }
            
            .nav-item.dropdown .nav-link::after {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .navbar-nav .nav-link {
                padding: 10px 15px !important;
                font-size: 12px;
            }
            
            .navbar-nav .nav-link:hover {
                padding-left: 20px !important;
            }
        }

        /* Dropdown Styles */
        .dropdown-menu {
            border: none;
            border-radius: 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin-top: 0;
            padding: 20px;
            min-width: 800px;
            background-color: white;
        }

        .mega-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            max-width: 1200px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 1000;
            padding: 40px 0;
            border-radius: 0 0 8px 8px;
            margin-left: calc(-50vw + 50%);
        }

        .nav-item:hover .mega-menu {
            display: block;
        }

        .mega-menu .container-fluid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
        }

        .mega-menu-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .menu-category {
            text-align: center;
        }

        .menu-category img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 10px;
            border-radius: 50%;
            border: 2px solid #f0f0f0;
            padding: 10px;
        }

        .menu-category h5 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .menu-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .menu-links li {
            margin-bottom: 8px;
        }

        .menu-links a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            line-height: 1.5;
        }

        .menu-links a:hover {
            color: var(--bh-red);
        }

        .sidebar-content {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
        }

        /* Updated mega menu styles without icons */
        .menu-category {
            text-align: left;
            padding: 15px;
            background-color: #fafafa;
            border-radius: 8px;
            border-left: 3px solid var(--bh-red);
        }

        .category-group-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--bh-red);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .menu-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .menu-links li {
            margin-bottom: 6px;
        }

        .menu-links a {
            color: #555;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s ease;
            line-height: 1.4;
            display: block;
            padding: 4px 0;
            border-radius: 3px;
        }

        .menu-links a:hover {
            color: var(--bh-red);
            background-color: rgba(227, 30, 36, 0.05);
            padding-left: 8px;
        }

        /* Sidebar styles without icons */
        .sidebar-links {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
        }

        .sidebar-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            border-bottom: 2px solid var(--bh-red);
            padding-bottom: 8px;
        }

        .sidebar-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-menu li {
            margin-bottom: 8px;
        }

        .sidebar-menu a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: block;
            padding: 8px 12px;
            border-radius: 5px;
            background-color: white;
            border: 1px solid #e9ecef;
        }

        .sidebar-menu a:hover {
            background-color: var(--bh-red);
            color: white;
            border-color: var(--bh-red);
            text-decoration: none;
        }

        .sidebar-item {
            display: flex;
            align-items: center;
            padding: 10px;
            margin-bottom: 10px;
            background-color: white;
            border-radius: 50px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
        }

        .sidebar-item:hover {
            background-color: var(--bh-red);
            color: white;
            text-decoration: none;
        }

        .sidebar-item img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 15px;
        }

        /* Hero Section Styles */
        .hero-slider {
            position: relative;
            overflow: hidden;
            height: 500px;
        }

        .hero-slide {
            height: 500px;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-content {
            color: white;
            z-index: 2;
        }

        .hero-badge {
            background-color: var(--bh-orange);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.5;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .hero-image {
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
        }

        .carousel-indicators {
            bottom: 20px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }

        /* Categories Section */
        .categories-section {
            background-color: #f8f9fa;
            padding: 60px 0;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .category-item {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .category-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .category-icon {
            margin-bottom: 15px;
        }

        .category-icon img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .category-item:hover .category-icon img {
            transform: scale(1.1);
        }

        .category-item h6 {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin: 0;
            line-height: 1.3;
        }

        /* Deal Zone / Product Cards */
        .deal-zone {
            background-color: white;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--bh-red), var(--bh-orange));
            border-radius: 2px;
        }

        .deal-item {
            background: white;
            border-radius: 15px;
            padding: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .deal-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--bh-red), var(--bh-orange));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .deal-item:hover::before {
            transform: scaleX(1);
        }

        .deal-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .deal-item .product-image {
            position: relative;
            margin-bottom: 15px;
            overflow: hidden;
            border-radius: 10px;
            background: #fff;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .deal-item .product-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .deal-item:hover .product-image img {
            transform: scale(1.05);
        }

        .deal-item .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--bh-red);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .deal-item .product-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            line-height: 1.3;
            flex-grow: 1;
        }

        .deal-item .product-description {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .deal-item .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .deal-item .current-price {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--bh-red);
        }

        .deal-item .original-price {
            font-size: 1rem;
            color: #999;
            text-decoration: line-through;
        }

        .deal-item .discount {
            background: var(--bh-green);
            color: white;
            padding: 2px 6px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .deal-item .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 12px;
        }

        .deal-item .stars {
            color: #ffc107;
            font-size: 0.9rem;
        }

        .deal-item .rating-text {
            color: #666;
            font-size: 0.8rem;
        }

        .deal-item .btn-shop {
            background: linear-gradient(135deg, var(--bh-red), var(--bh-orange));
            border: none;
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }

        .deal-item .btn-shop:hover {
            background: linear-gradient(135deg, var(--bh-orange), var(--bh-red));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 30, 36, 0.4);
        }

        .deal-item .product-actions {
            display: flex;
            gap: 10px;
            margin-top: auto;
        }

        .deal-item .btn-wishlist {
            background: none;
            border: 2px solid #ddd;
            color: #666;
            padding: 10px;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

            .deal-item .btn-wishlist:hover {
                border-color: var(--bh-red);
                color: var(--bh-red);
                background: rgba(231, 30, 36, 0.1);
            }

            /* Banner Section Styles */
            .banner-section {
                padding: 60px 0;
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            }

            .banner-item {
                position: relative;
                height: 300px;
                border-radius: 20px;
                overflow: hidden;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                cursor: pointer;
                transition: all 0.4s ease;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }

            .banner-item::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
                transition: all 0.4s ease;
                z-index: 1;
            }

            .banner-item:hover::before {
                background: linear-gradient(135deg, rgba(231, 30, 36, 0.8) 0%, rgba(255, 105, 0, 0.6) 100%);
            }

            .banner-item:hover {
                transform: translateY(-10px) scale(1.02);
                box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            }

            .banner-content {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                text-align: center;
                color: white;
                z-index: 2;
                padding: 30px;
                width: 90%;
            }

            .banner-content h3 {
                font-size: 2rem;
                font-weight: bold;
                margin-bottom: 15px;
                text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
                line-height: 1.2;
            }

            .banner-content p {
                font-size: 1.1rem;
                margin-bottom: 25px;
                opacity: 0.95;
                text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
                line-height: 1.5;
            }

            .banner-content .btn {
                background: linear-gradient(135deg, var(--bh-red), var(--bh-orange));
                border: none;
                color: white;
                padding: 12px 30px;
                border-radius: 25px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                transition: all 0.3s ease;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            }

            .banner-content .btn:hover {
                background: linear-gradient(135deg, var(--bh-orange), var(--bh-red));
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(231, 30, 36, 0.4);
                color: white;
            }

            /* Banner Animation */
            .banner-item {
                animation: fadeInUp 0.6s ease forwards;
                opacity: 0;
                transform: translateY(30px);
            }

            .banner-item:nth-child(1) {
                animation-delay: 0.1s;
            }

            .banner-item:nth-child(2) {
                animation-delay: 0.2s;
            }

            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* Shop Page Styles */
            .breadcrumb-section {
                background-color: #f8f9fa;
                border-bottom: 1px solid #ddd;
            }

            .breadcrumb {
                background: none;
                padding: 0;
                margin: 0;
            }

            .breadcrumb-item a {
                color: var(--bh-red);
                text-decoration: none;
            }

            .breadcrumb-item.active {
                color: #666;
            }

            .shop-sidebar {
                background: white;
                border-radius: 10px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                overflow: hidden;
            }

            .sidebar-widget {
                padding: 25px;
                border-bottom: 1px solid #f0f0f0;
            }

            .sidebar-widget:last-child {
                border-bottom: none;
            }

            .widget-title {
                font-size: 18px;
                font-weight: 600;
                color: #333;
                margin-bottom: 20px;
                padding-bottom: 10px;
                border-bottom: 2px solid var(--bh-light-gray);
            }

            .widget-title i {
                color: var(--bh-red);
            }

            .filter-item {
                margin-bottom: 12px;
                display: flex;
                align-items: center;
            }

            .filter-checkbox {
                margin-right: 10px;
                cursor: pointer;
                transform: scale(1.1);
            }

            .filter-item label {
                cursor: pointer;
                font-size: 14px;
                color: #555;
                margin-bottom: 0;
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
            }

            .filter-item .count {
                color: #999;
                font-size: 12px;
            }

            .price-filter {
                padding: 10px 0;
            }

            .price-range-slider {
                position: relative;
                margin-bottom: 20px;
            }

            .price-slider {
                width: 100%;
                height: 5px;
                border-radius: 5px;
                background: #ddd;
                outline: none;
                -webkit-appearance: none;
                margin-bottom: 10px;
            }

            .price-slider::-webkit-slider-thumb {
                appearance: none;
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background: var(--bh-red);
                cursor: pointer;
                border: 2px solid white;
                box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            }

            .price-slider::-moz-range-thumb {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background: var(--bh-red);
                cursor: pointer;
                border: 2px solid white;
                box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            }

            .price-display {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 15px;
                font-weight: 600;
                color: #333;
            }

            .price-values {
                color: var(--bh-red);
            }

            .price-presets {
                display: flex;
                flex-direction: column;
                gap: 8px;
            }

            .preset-btn {
                background: #f8f9fa;
                border: 1px solid #ddd;
                padding: 8px 12px;
                border-radius: 5px;
                font-size: 12px;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .preset-btn:hover {
                background: var(--bh-red);
                color: white;
                border-color: var(--bh-red);
            }

            .rating-filter .filter-item label {
                flex-direction: column;
                align-items: flex-start;
            }

            .rating-filter .stars {
                color: #ffc107;
                margin-bottom: 5px;
            }

            .rating-filter .rating-text {
                font-size: 12px;
                color: #666;
            }

            .btn-clear-filters {
                background: linear-gradient(135deg, var(--bh-red), var(--bh-orange));
                color: white;
                border: none;
                padding: 12px 20px;
                border-radius: 25px;
                font-weight: 600;
                transition: all 0.3s ease;
            }

            .btn-clear-filters:hover {
                background: linear-gradient(135deg, var(--bh-orange), var(--bh-red));
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(231, 30, 36, 0.4);
            }

            .shop-header {
                margin-bottom: 30px;
            }

            .page-title {
                font-size: 2.5rem;
                font-weight: bold;
                color: #333;
                margin-bottom: 10px;
            }

            .page-title i {
                color: var(--bh-red);
            }

            .results-count {
                color: #666;
                font-size: 14px;
                margin-bottom: 0;
            }

            .shop-controls {
                display: flex;
                align-items: center;
                gap: 20px;
                justify-content: flex-end;
            }

            .view-mode {
                display: flex;
                border: 1px solid #ddd;
                border-radius: 5px;
                overflow: hidden;
            }

            .view-btn {
                background: white;
                border: none;
                padding: 10px 15px;
                cursor: pointer;
                transition: all 0.3s ease;
                color: #666;
            }

            .view-btn.active,
            .view-btn:hover {
                background: var(--bh-red);
                color: white;
            }

            .sort-dropdown select {
                border: 1px solid #ddd;
                padding: 10px 15px;
                border-radius: 5px;
                background: white;
                cursor: pointer;
                min-width: 200px;
            }

            .sort-dropdown select:focus {
                outline: none;
                border-color: var(--bh-red);
            }

            .products-grid {
                margin-bottom: 40px;
            }

            .product-item {
                margin-bottom: 30px;
            }

            .product-overlay {
                position: absolute;
                top: 10px;
                right: 10px;
                display: flex;
                flex-direction: column;
                gap: 5px;
                opacity: 0;
                transition: all 0.3s ease;
            }

            .deal-item:hover .product-overlay {
                opacity: 1;
            }

            .btn-quick-view,
            .btn-compare {
                background: white;
                border: none;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 2px 8px rgba(0,0,0,0.2);
                cursor: pointer;
                transition: all 0.3s ease;
                color: #666;
            }

            .btn-quick-view:hover,
            .btn-compare:hover {
                background: var(--bh-red);
                color: white;
                transform: scale(1.1);
            }

            .product-info {
                padding: 20px;
            }

            /* List View Styles */
            .list-view .deal-item {
                display: flex;
                flex-direction: row;
                align-items: center;
                padding: 20px;
                margin-bottom: 20px;
            }

            .list-view .product-image {
                width: 200px;
                height: 150px;
                flex-shrink: 0;
                margin-right: 20px;
                margin-bottom: 0;
            }

            .list-view .product-info {
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                padding: 0;
            }

            .list-view .product-title {
                font-size: 1.2rem;
                margin-bottom: 8px;
            }

            .list-view .product-description {
                margin-bottom: 10px;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .list-view .product-actions {
                margin-top: 10px;
                align-self: flex-start;
            }

            .list-view .btn-shop {
                padding: 8px 20px;
                font-size: 0.85rem;
            }

            @media (max-width: 768px) {
                .list-view .deal-item {
                    flex-direction: column;
                    text-align: center;
                }
                
                .list-view .product-image {
                    width: 100%;
                    height: 200px;
                    margin-right: 0;
                    margin-bottom: 15px;
                }
                
                .list-view .product-actions {
                    align-self: stretch;
                }
            }

            .pagination-wrapper {
                margin-top: 50px;
                padding-top: 30px;
                border-top: 1px solid #f0f0f0;
            }

            .pagination {
                margin-bottom: 0;
            }

            .page-link {
                color: #666;
                border: 1px solid #ddd;
                padding: 10px 15px;
                margin: 0 3px;
                border-radius: 5px;
                transition: all 0.3s ease;
            }

            .page-link:hover {
                background: var(--bh-red);
                color: white;
                border-color: var(--bh-red);
            }

            .page-item.active .page-link {
                background: var(--bh-red);
                border-color: var(--bh-red);
                color: white;
            }

            .page-item.disabled .page-link {
                color: #ccc;
                pointer-events: none;
            }

            /* Mobile Responsive Shop Styles */
            @media (max-width: 992px) {
                .shop-sidebar {
                    margin-bottom: 30px;
                }
                
                .shop-controls {
                    flex-direction: column;
                    align-items: stretch;
                    gap: 15px;
                }
                
                .view-mode {
                    justify-content: center;
                }
                
                .sort-dropdown select {
                    min-width: auto;
                    width: 100%;
                }
            }

            @media (max-width: 768px) {
                .page-title {
                    font-size: 2rem;
                }
                
                .sidebar-widget {
                    padding: 20px;
                }
                
                .shop-controls {
                    text-align: center;
                }
                
                .products-grid .col-lg-4 {
                    margin-bottom: 20px;
                }
            }

            @media (max-width: 576px) {
                .page-title {
                    font-size: 1.75rem;
                }
                
                .sidebar-widget {
                    padding: 15px;
                }
                
                .widget-title {
                    font-size: 16px;
                }
                
                .deal-item {
                    padding: 15px;
                }
                
                .product-overlay {
                    position: static;
                    opacity: 1;
                    flex-direction: row;
                    justify-content: center;
                    margin-top: 10px;
                }
            }

            /* Product Page Styles */
            .product-page {
                background-color: #f8f9fa;
            }

            .product-gallery {
                background: white;
                border-radius: 10px;
                padding: 20px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                display: block !important;
                flex-direction: column !important;
            }

            .main-image-container {
                position: relative;
                margin-bottom: 20px;
                border-radius: 10px;
                overflow: hidden;
                background: #f8f9fa;
                width: 100%;
                display: block;
            }

            .main-image {
                position: relative;
                text-align: center;
                padding: 20px;
                min-height: 400px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .main-image img {
                max-width: 100%;
                max-height: 400px;
                object-fit: contain;
                transition: transform 0.3s ease;
            }

            .main-image:hover img {
                transform: scale(1.05);
            }

            .product-badge {
                position: absolute;
                top: 15px;
                left: 15px;
                background: var(--bh-red);
                color: white;
                padding: 5px 12px;
                border-radius: 15px;
                font-size: 12px;
                font-weight: bold;
                z-index: 10;
            }

            .image-actions {
                position: absolute;
                top: 15px;
                right: 15px;
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .btn-zoom, .btn-fullscreen {
                background: white;
                border: none;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 2px 8px rgba(0,0,0,0.2);
                cursor: pointer;
                transition: all 0.3s ease;
                color: #666;
            }

            .btn-zoom:hover, .btn-fullscreen:hover {
                background: var(--bh-red);
                color: white;
                transform: scale(1.1);
            }

            .thumbnail-container {
                margin-top: 20px;
                position: relative;
                width: 100%;
                display: block !important;
            }

            .thumbnail-slider {
                display: flex !important;
                flex-direction: row !important;
                gap: 12px;
                overflow-x: auto;
                overflow-y: hidden;
                padding: 10px 5px;
                scroll-behavior: smooth;
                width: 100%;
                /* Force horizontal layout */
                white-space: nowrap;
                /* Hide scrollbar for a cleaner look */
                scrollbar-width: thin;
            }

            .thumbnail-slider::-webkit-scrollbar {
                height: 4px;
            }

            .thumbnail-slider::-webkit-scrollbar-track {
                background: #f1f1f1;
                border-radius: 2px;
            }

            .thumbnail-slider::-webkit-scrollbar-thumb {
                background: var(--bh-red);
                border-radius: 2px;
            }

            .thumbnail-slider::-webkit-scrollbar-thumb:hover {
                background: var(--bh-orange);
            }

            .thumbnail-item {
                flex-shrink: 0 !important;
                width: 90px;
                height: 90px;
                border: 3px solid transparent;
                border-radius: 12px;
                overflow: hidden;
                cursor: pointer;
                transition: all 0.3s ease;
                position: relative;
                background: #f8f9fa;
                display: inline-block !important;
                margin-right: 8px;
            }

            .thumbnail-item.active {
                border-color: var(--bh-red);
                box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
                transform: translateY(-2px);
            }

            .thumbnail-item:hover {
                border-color: var(--bh-orange);
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            }

            .thumbnail-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s ease;
                display: block;
            }

            .thumbnail-item:hover img {
                transform: scale(1.05);
            }

            .thumbnail-nav-btn {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 32px;
                height: 32px;
                border: none;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.9);
                color: var(--bh-red);
                font-size: 14px;
                cursor: pointer;
                z-index: 2;
                transition: all 0.3s ease;
                box-shadow: 0 2px 8px rgba(0,0,0,0.15);
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .thumbnail-nav-btn:hover {
                background: var(--bh-red);
                color: white;
                transform: translateY(-50%) scale(1.1);
            }

            .thumbnail-nav-btn:disabled {
                opacity: 0.5;
                cursor: not-allowed;
            }

            .thumbnail-prev {
                left: -16px;
            }

            .thumbnail-next {
                right: -16px;
            }

            .product-info {
                background: white;
                border-radius: 10px;
                padding: 30px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                height: fit-content;
                position: relative;
                z-index: 10;
            }

            /* Ensure no overlays cover the product info */
            .product-info::before,
            .product-info::after {
                display: none !important;
            }

            /* Fix any potential overlay issues on product page */
            .container.py-5 {
                position: relative;
                z-index: 1;
            }

            .product-detail-content {
                position: relative;
                z-index: 2;
                background: transparent;
            }

            .product-detail-content::before,
            .product-detail-content::after {
                display: none !important;
            }

            /* Remove any modal backdrops that might be stuck */
            .modal-backdrop {
                display: none !important;
            }

            /* Ensure body doesn't have modal-open class issues */
            body.modal-open {
                padding-right: 0 !important;
                overflow: auto !important;
            }

            .product-header {
                border-bottom: 1px solid #f0f0f0;
                padding-bottom: 20px;
                margin-bottom: 25px;
            }

            .product-rating {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 15px;
            }

            .product-rating .stars {
                color: #ffc107;
                font-size: 16px;
            }

            .rating-text {
                color: #666;
                font-size: 14px;
            }

            .write-review {
                color: var(--bh-red);
                text-decoration: none;
                font-size: 14px;
            }

            .write-review:hover {
                text-decoration: underline;
            }

            .product-title {
                font-size: 2rem;
                font-weight: bold;
                color: #333;
                margin-bottom: 10px;
                line-height: 1.3;
            }

            .product-sku {
                color: #666;
                font-size: 14px;
                margin-bottom: 20px;
            }

            .product-sku span {
                font-weight: 600;
                color: #333;
            }

            .product-price {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 20px;
            }

            .current-price {
                font-size: 2.2rem;
                font-weight: bold;
                color: var(--bh-red);
            }

            .original-price {
                font-size: 1.5rem;
                color: #999;
                text-decoration: line-through;
            }

            .discount-badge {
                background: var(--bh-green);
                color: white;
                padding: 4px 12px;
                border-radius: 15px;
                font-size: 12px;
                font-weight: bold;
            }

            .product-short-desc {
                margin-bottom: 25px;
                font-size: 14px;
            }

            .product-short-desc p {
                font-size: 16px;
                line-height: 1.6;
                color: #555;
            }

            /* Read More Button Styles */
            .read-more-btn {
                background: none;
                border: none;
                color: var(--bh-red);
                font-size: 14px;
                font-weight: 600;
                cursor: pointer;
                padding: 5px 0;
                margin-left: 5px;
                display: inline-flex;
                align-items: center;
                gap: 5px;
                transition: all 0.3s ease;
                text-decoration: none;
            }

            .read-more-btn:hover {
                color: var(--bh-orange);
                text-decoration: underline;
            }

            .read-more-btn:focus {
                outline: 2px solid var(--bh-red);
                outline-offset: 2px;
                border-radius: 3px;
            }

            .read-more-icon {
                font-size: 12px;
                transition: transform 0.3s ease;
            }

            .read-more-btn:hover .read-more-icon {
                transform: translateY(1px);
            }

            .description-hidden {
                animation: fadeIn 0.3s ease-in-out;
            }

            @keyframes fadeIn {
                from {
                    opacity: 0;
                    max-height: 0;
                }
                to {
                    opacity: 1;
                    max-height: 200px;
                }
            }

            .product-features {
                margin-bottom: 25px;
                padding: 20px;
                background: #f8f9fa;
                border-radius: 8px;
            }

            .product-features h6 {
                margin-bottom: 15px;
                font-weight: 600;
            }

            .feature-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .feature-list li {
                padding: 8px 0;
                border-bottom: 1px solid #e9ecef;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .feature-list li:last-child {
                border-bottom: none;
            }

            .feature-list li i {
                color: var(--bh-green);
                width: 16px;
            }

            .product-options {
                margin-bottom: 25px;
            }

            .option-group {
                margin-bottom: 20px;
            }

            .option-label {
                font-weight: 600;
                margin-bottom: 10px;
                display: block;
            }

            .option-buttons {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
            }

            .option-btn {
                background: white;
                border: 2px solid #ddd;
                padding: 8px 16px;
                border-radius: 25px;
                cursor: pointer;
                transition: all 0.3s ease;
                font-size: 14px;
            }

            .option-btn:hover {
                border-color: var(--bh-orange);
            }

            .option-btn.active {
                background: var(--bh-red);
                border-color: var(--bh-red);
                color: white;
            }

            .product-quantity {
                display: flex;
                align-items: center;
                gap: 20px;
                margin-bottom: 30px;
                flex-wrap: wrap;
            }

            .quantity-label {
                font-weight: 600;
            }

            .quantity-controls {
                display: flex;
                align-items: center;
                border: 2px solid #ddd;
                border-radius: 25px;
                overflow: hidden;
            }

            .qty-btn {
                background: white;
                border: none;
                width: 40px;
                height: 40px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: bold;
                transition: all 0.3s ease;
            }

            .qty-btn:hover {
                background: var(--bh-light-gray);
            }

            .qty-input {
                border: none;
                width: 60px;
                height: 40px;
                text-align: center;
                font-weight: 600;
                background: #f8f9fa;
            }

            .qty-input:focus {
                outline: none;
            }

            .stock-status {
                color: var(--bh-green);
                font-size: 14px;
                font-weight: 600;
            }

            .product-actions {
                margin-bottom: 30px;
            }

            .main-actions {
                display: flex;
                gap: 15px;
                margin-bottom: 15px;
            }

            .main-actions .btn {
                flex: 1;
                padding: 15px 25px;
                border-radius: 25px;
                font-weight: 600;
                font-size: 16px;
                transition: all 0.3s ease;
            }

            .btn-add-cart {
                background: linear-gradient(135deg, var(--bh-red), var(--bh-orange));
                border: none;
                color: white;
            }

            .btn-add-cart:hover {
                background: linear-gradient(135deg, var(--bh-orange), var(--bh-red));
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(231, 30, 36, 0.4);
            }

            .btn-buy-now {
                background: var(--bh-green);
                border: none;
                color: white;
            }

            .btn-buy-now:hover {
                background: #45a049;
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
            }

            .secondary-actions {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
            }

            .secondary-actions .btn {
                flex: 1;
                padding: 10px 15px;
                border-radius: 20px;
                border: 2px solid #ddd;
                background: white;
                color: #666;
                font-size: 14px;
                transition: all 0.3s ease;
            }

            .btn-whatsapp:hover {
                background: #25d366;
                border-color: #25d366;
                color: white;
            }

            .btn-wishlist:hover {
                background: #e91e63;
                border-color: #e91e63;
                color: white;
            }

            .btn-compare:hover {
                background: var(--bh-orange);
                border-color: var(--bh-orange);
                color: white;
            }

            .product-guarantees {
                margin-bottom: 25px;
                padding: 20px;
                background: #f8f9fa;
                border-radius: 8px;
            }

            .guarantee-item {
                display: flex;
                align-items: center;
                gap: 15px;
                padding: 10px 0;
                border-bottom: 1px solid #e9ecef;
            }

            .guarantee-item:last-child {
                border-bottom: none;
            }

            .guarantee-item i {
                color: var(--bh-green);
                font-size: 20px;
                width: 24px;
            }

            .guarantee-item strong {
                display: block;
                font-weight: 600;
                color: #333;
            }

            .guarantee-item span {
                color: #666;
                font-size: 14px;
            }

            .social-share {
                display: flex;
                align-items: center;
                gap: 15px;
                padding-top: 20px;
                border-top: 1px solid #f0f0f0;
            }

            .share-label {
                font-weight: 600;
                color: #333;
            }

            .share-buttons {
                display: flex;
                gap: 10px;
            }

            .share-btn {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .share-btn.facebook { background: #1877f2; }
            .share-btn.twitter { background: #1da1f2; }
            .share-btn.whatsapp { background: #25d366; }
            .share-btn.tiktok { background: #2e2e2e; }
            .share-btn.copy { background: #666; }

            .share-btn:hover {
                transform: scale(1.1);
                color: white;
            }

            /* Product Tabs */
            .product-tabs {
                background: white;
                border-radius: 10px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                overflow: hidden;
            }

            .product-tabs .nav-tabs {
                border-bottom: none;
                background: #f8f9fa;
                padding: 0 20px;
            }

            .product-tabs .nav-link {
                border: none;
                padding: 20px 25px;
                color: #666;
                font-weight: 600;
                border-radius: 0;
                background: transparent;
                border-bottom: 3px solid transparent;
            }

            .product-tabs .nav-link.active {
                background: white;
                color: var(--bh-red);
                border-bottom-color: var(--bh-red);
            }

            .product-tabs .nav-link:hover {
                color: var(--bh-red);
                background: rgba(231, 30, 36, 0.1);
            }

            .tab-content-wrapper {
                padding: 30px;
            }

            .tab-content-wrapper h4 {
                color: #333;
                margin-bottom: 20px;
                font-weight: 600;
            }

            .tab-content-wrapper h5 {
                color: var(--bh-red);
                margin: 25px 0 15px;
                font-weight: 600;
            }

            .tab-content-wrapper p {
                line-height: 1.7;
                color: #555;
                margin-bottom: 15px;
            }

            /* Specifications Table */
            .spec-table {
                border: 1px solid #ddd;
                border-radius: 8px;
                overflow: hidden;
            }

            .spec-row {
                display: flex;
                border-bottom: 1px solid #ddd;
            }

            .spec-row:last-child {
                border-bottom: none;
            }

            .spec-label {
                background: #f8f9fa;
                padding: 15px 20px;
                font-weight: 600;
                flex: 0 0 200px;
                border-right: 1px solid #ddd;
            }

            .spec-value {
                padding: 15px 20px;
                flex: 1;
            }

            /* Reviews */
            .reviews-summary {
                background: #f8f9fa;
                padding: 25px;
                border-radius: 8px;
                margin-bottom: 30px;
            }

            .rating-overview {
                text-align: center;
            }

            .average-rating {
                font-size: 3rem;
                font-weight: bold;
                color: var(--bh-red);
                line-height: 1;
            }

            .rating-overview .stars {
                font-size: 20px;
                color: #ffc107;
                margin: 10px 0;
            }

            .total-reviews {
                color: #666;
                font-size: 14px;
            }

            .rating-breakdown {
                padding-left: 20px;
            }

            .rating-bar {
                display: flex;
                align-items: center;
                gap: 10px;
                margin-bottom: 8px;
            }

            .rating-bar span:first-child {
                width: 60px;
                font-size: 14px;
            }

            .bar {
                flex: 1;
                height: 8px;
                background: #e9ecef;
                border-radius: 4px;
                overflow: hidden;
            }

            .bar .fill {
                height: 100%;
                background: #ffc107;
                transition: width 0.3s ease;
            }

            .rating-bar span:last-child {
                width: 30px;
                text-align: right;
                font-size: 14px;
                color: #666;
            }

            .review-item {
                border-bottom: 1px solid #f0f0f0;
                padding: 25px 0;
            }

            .review-item:last-child {
                border-bottom: none;
            }

            .review-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 15px;
            }

            .reviewer-info {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .reviewer-avatar {
                width: 50px;
                height: 50px;
                background: #f8f9fa;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #666;
                font-size: 20px;
            }

            .reviewer-details h6 {
                margin: 0 0 5px;
                font-weight: 600;
            }

            .review-stars {
                color: #ffc107;
                font-size: 14px;
            }

            .review-date {
                color: #666;
                font-size: 14px;
            }

            .review-content h6 {
                margin-bottom: 10px;
                font-weight: 600;
            }

            .review-content p {
                margin-bottom: 15px;
                line-height: 1.6;
            }

            .review-helpful {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .btn-helpful {
                background: #f8f9fa;
                border: 1px solid #ddd;
                padding: 5px 12px;
                border-radius: 15px;
                cursor: pointer;
                font-size: 12px;
                transition: all 0.3s ease;
            }

            .btn-helpful:hover {
                background: var(--bh-light-gray);
            }

            /* Write Review */
            .write-review-section {
                background: #f8f9fa;
                padding: 25px;
                border-radius: 8px;
                margin-top: 30px;
            }

            .review-form .form-group {
                margin-bottom: 20px;
            }

            .review-form label {
                font-weight: 600;
                margin-bottom: 8px;
                display: block;
            }

            .rating-input {
                margin-bottom: 20px;
            }

            .star-rating {
                display: flex;
                flex-direction: row-reverse;
                gap: 5px;
            }

            .star-rating input {
                display: none;
            }

            .star-rating label {
                cursor: pointer;
                color: #ddd;
                font-size: 20px;
                transition: color 0.3s;
            }

            .star-rating input:checked ~ label,
            .star-rating label:hover,
            .star-rating label:hover ~ label {
                color: #ffc107;
            }

            .btn-submit-review {
                background: var(--bh-red);
                color: white;
                border: none;
                padding: 12px 30px;
                border-radius: 25px;
                font-weight: 600;
            }

            /* Installation Steps */
            .installation-steps {
                margin-bottom: 30px;
            }

            .step {
                display: flex;
                gap: 20px;
                margin-bottom: 25px;
                padding-bottom: 25px;
                border-bottom: 1px solid #f0f0f0;
            }

            .step:last-child {
                border-bottom: none;
            }

            .step-number {
                width: 50px;
                height: 50px;
                background: var(--bh-red);
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: bold;
                font-size: 18px;
                flex-shrink: 0;
            }

            .step-content h6 {
                margin-bottom: 10px;
                font-weight: 600;
                color: #333;
            }

            .installation-note {
                background: #e3f2fd;
                border: 1px solid #2196f3;
                padding: 20px;
                border-radius: 8px;
                display: flex;
                gap: 15px;
                align-items: flex-start;
            }

            .installation-note i {
                color: #2196f3;
                font-size: 20px;
                margin-top: 2px;
            }

            .installation-note a {
                color: var(--bh-red);
                text-decoration: none;
            }

            /* Recommended Accessories */
            .recommended-section {
                background: white;
                padding: 30px;
                border-radius: 10px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            }

            .recommended-section .section-title {
                font-size: 2rem;
                font-weight: bold;
                color: #333;
                margin-bottom: 10px;
            }

            .section-subtitle {
                color: #666;
                margin-bottom: 30px;
            }

            .accessory-item {
                background: white;
                border: 1px solid #f0f0f0;
                border-radius: 10px;
                overflow: hidden;
                transition: all 0.3s ease;
                height: 100%;
            }

            .accessory-item:hover {
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
                transform: translateY(-2px);
            }

            .accessory-image {
                position: relative;
                height: 200px;
                background: #f8f9fa;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
            }

            .accessory-image img {
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
            }

            .accessory-badge {
                position: absolute;
                top: 10px;
                left: 10px;
                background: var(--bh-green);
                color: white;
                padding: 4px 8px;
                border-radius: 10px;
                font-size: 11px;
                font-weight: bold;
            }

            .accessory-info {
                padding: 20px;
            }

            .accessory-info h6 {
                font-weight: 600;
                margin-bottom: 8px;
                color: #333;
            }

            .accessory-info p {
                color: #666;
                font-size: 14px;
                margin-bottom: 15px;
            }

            .accessory-price {
                margin-bottom: 15px;
            }

            .accessory-price .price {
                font-size: 18px;
                font-weight: bold;
                color: var(--bh-red);
            }

            .accessory-price .original {
                color: #999;
                text-decoration: line-through;
                margin-left: 10px;
            }

            .btn-add-accessory {
                background: var(--bh-orange);
                color: white;
                border: none;
                padding: 8px 16px;
                border-radius: 20px;
                font-size: 14px;
                font-weight: 600;
                width: 100%;
                transition: all 0.3s ease;
            }

            .btn-add-accessory:hover {
                background: #e55a00;
                transform: translateY(-1px);
            }

            /* Bundle Offer */
            .bundle-offer {
                margin-top: 30px;
                background: linear-gradient(135deg, #f8f9fa, #e9ecef);
                border: 2px solid var(--bh-green);
                border-radius: 15px;
                padding: 25px;
            }

            .bundle-content {
                display: flex;
                align-items: center;
                gap: 20px;
                flex-wrap: wrap;
            }

            .bundle-icon {
                width: 60px;
                height: 60px;
                background: var(--bh-green);
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 24px;
                flex-shrink: 0;
            }

            .bundle-text {
                flex: 1;
                min-width: 200px;
            }

            .bundle-text h5 {
                margin-bottom: 5px;
                font-weight: 600;
                color: #333;
            }

            .bundle-text p {
                margin: 0;
                color: #666;
            }

            .bundle-price {
                text-align: center;
            }

            .bundle-total {
                display: block;
                font-size: 1.5rem;
                font-weight: bold;
                color: var(--bh-red);
            }

            .bundle-save {
                font-size: 14px;
                color: var(--bh-green);
                font-weight: 600;
            }

            .btn-bundle {
                background: var(--bh-green);
                color: white;
                border: none;
                padding: 12px 25px;
                border-radius: 25px;
                font-weight: 600;
                transition: all 0.3s ease;
            }

            .btn-bundle:hover {
                background: #45a049;
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
            }

            /* Related Products */
            .related-products {
                background: white;
                padding: 30px;
                border-radius: 10px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            }

            /* Mobile Responsive Product Page */
            @media (max-width: 992px) {
                .product-info {
                    margin-top: 30px;
                }
                
                .main-actions {
                    flex-direction: column;
                }
                
                .secondary-actions {
                    justify-content: center;
                }
                
                .bundle-content {
                    text-align: center;
                    justify-content: center;
                }
            }

            @media (max-width: 768px) {
                .product-title {
                    font-size: 1.5rem;
                }
                
                .current-price {
                    font-size: 1.8rem;
                }
                
                .product-quantity {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 10px;
                }
                
                .social-share {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 10px;
                }
                
                .share-buttons {
                    justify-content: center;
                    width: 100%;
                }
                
                .tab-content-wrapper {
                    padding: 20px;
                }
                
                .spec-label {
                    flex: 0 0 120px;
                    font-size: 14px;
                }
                
                .accessory-item {
                    margin-bottom: 20px;
                }
                
                .bundle-content {
                    flex-direction: column;
                }
                
                .bundle-price {
                    order: -1;
                }
            }

            @media (max-width: 576px) {
                .main-image {
                    min-height: 300px;
                    padding: 15px;
                }
                
                .thumbnail-container {
                    margin-top: 15px;
                }
                
                .thumbnail-slider {
                    gap: 8px;
                    padding: 8px 5px;
                }
                
                .thumbnail-item {
                    width: 70px;
                    height: 70px;
                    border-width: 2px;
                    border-radius: 8px;
                }
                
                .thumbnail-nav-btn {
                    width: 28px;
                    height: 28px;
                    font-size: 12px;
                }
                
                .thumbnail-prev {
                    left: -14px;
                }
                
                .thumbnail-next {
                    right: -14px;
                }
                
                .product-info {
                    padding: 20px;
                }
                
                .product-features {
                    padding: 15px;
                }
                
                .feature-list li {
                    font-size: 14px;
                }
                
                .option-buttons {
                    flex-direction: column;
                }
                
                .option-btn {
                    text-align: center;
                }
                
                .product-tabs .nav-link {
                    padding: 15px 20px;
                    font-size: 14px;
                }
                
                .spec-row {
                    flex-direction: column;
                }
                
                .spec-label {
                    border-right: none;
                    border-bottom: 1px solid #ddd;
                    flex: none;
                }
                
                .recommended-section {
                    padding: 20px;
                }
            }

            /* Cart Page Styles */
            .cart-page {
                background-color: #f8f9fa;
                min-height: 100vh;
            }

            .cart-header {
                background: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            }

            .page-title {
                font-size: 2.5rem;
                font-weight: bold;
                color: #333;
                margin-bottom: 5px;
            }

            .page-title i {
                color: var(--bh-red);
            }

            .cart-count {
                color: #666;
                margin: 0;
            }

            .btn-continue-shopping {
                background: var(--bh-green);
                color: white;
                border: none;
                padding: 10px 20px;
                border-radius: 25px;
                font-weight: 600;
                transition: all 0.3s ease;
            }

            .btn-continue-shopping:hover {
                background: #45a049;
                transform: translateY(-2px);
                color: white;
            }

            /* Cart Items */
            .cart-items {
                background: white;
                border-radius: 10px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                overflow: hidden;
            }

            .cart-item {
                display: flex;
                padding: 25px;
                border-bottom: 1px solid #f0f0f0;
                transition: all 0.3s ease;
            }

            .cart-item:last-child {
                border-bottom: none;
            }

            .cart-item:hover {
                background: #f8f9fa;
            }

            .item-image {
                flex-shrink: 0;
                width: 120px;
                height: 120px;
                background: #f8f9fa;
                border-radius: 8px;
                overflow: hidden;
                margin-right: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .item-image img {
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
            }

            .item-details {
                flex: 1;
                display: flex;
                flex-direction: column;
            }

            .item-header {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 8px;
            }

            .item-title {
                font-size: 1.2rem;
                font-weight: 600;
                color: #333;
                margin: 0;
                line-height: 1.3;
            }

            .btn-remove {
                background: none;
                border: none;
                color: #999;
                font-size: 18px;
                cursor: pointer;
                padding: 0;
                width: 30px;
                height: 30px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .btn-remove:hover {
                background: #ff4757;
                color: white;
            }

            .item-sku {
                color: #666;
                font-size: 14px;
                margin-bottom: 8px;
            }

            .item-options {
                margin-bottom: 10px;
            }

            .option {
                display: inline-block;
                background: #f8f9fa;
                padding: 3px 8px;
                border-radius: 12px;
                font-size: 12px;
                color: #666;
                margin-right: 8px;
                margin-bottom: 4px;
            }

            .item-rating {
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 15px;
            }

            .item-rating .stars {
                color: #ffc107;
                font-size: 14px;
            }

            .item-rating .rating-text {
                color: #666;
                font-size: 14px;
            }

            .item-actions {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 15px;
            }

            .quantity-controls {
                display: flex;
                align-items: center;
                border: 2px solid #ddd;
                border-radius: 25px;
                overflow: hidden;
            }

            .qty-btn {
                background: white;
                border: none;
                width: 35px;
                height: 35px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: bold;
                transition: all 0.3s ease;
            }

            .qty-btn:hover {
                background: var(--bh-light-gray);
            }

            .qty-input {
                border: none;
                width: 50px;
                height: 35px;
                text-align: center;
                font-weight: 600;
                background: #f8f9fa;
            }

            .qty-input:focus {
                outline: none;
            }

            .item-price {
                text-align: right;
            }

            .unit-price {
                display: block;
                color: #666;
                font-size: 14px;
                margin-bottom: 4px;
            }

            .total-price {
                font-size: 1.3rem;
                font-weight: bold;
                color: var(--bh-red);
            }

            .item-meta {
                display: flex;
                gap: 20px;
            }

            .btn-save-later,
            .btn-view-product {
                background: none;
                border: none;
                color: var(--bh-red);
                font-size: 14px;
                cursor: pointer;
                text-decoration: none;
                transition: color 0.3s ease;
            }

            .btn-save-later:hover,
            .btn-view-product:hover {
                color: var(--bh-orange);
                text-decoration: underline;
            }

            /* Cart Actions */
            .cart-actions {
                background: #f8f9fa;
                padding: 20px 25px;
                margin-top: 20px;
                border-radius: 10px;
            }

            .btn-clear-cart,
            .btn-update-cart {
                background: white;
                border: 2px solid #ddd;
                color: #666;
                padding: 8px 16px;
                border-radius: 20px;
                margin-right: 10px;
                font-size: 14px;
                transition: all 0.3s ease;
            }

            .btn-clear-cart:hover {
                background: #ff4757;
                border-color: #ff4757;
                color: white;
            }

            .btn-update-cart:hover {
                background: var(--bh-green);
                border-color: var(--bh-green);
                color: white;
            }

            .coupon-section {
                max-width: 300px;
                margin-left: auto;
            }

            .btn-apply-coupon {
                background: var(--bh-orange);
                color: white;
                border: none;
                border-radius: 0 4px 4px 0;
                padding: 10px 15px;
                font-weight: 600;
                transition: all 0.3s ease;
            }

            .btn-apply-coupon:hover {
                background: #e55a00;
            }

            /* Saved Items */
            .saved-items {
                background: white;
                border-radius: 10px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                padding: 25px;
                margin-top: 30px;
            }

            .section-title {
                font-size: 1.5rem;
                font-weight: 600;
                color: #333;
                margin-bottom: 20px;
                padding-bottom: 10px;
                border-bottom: 2px solid var(--bh-light-gray);
            }

            .section-title i {
                color: var(--bh-red);
            }

            /* Recommended Products */
            .recommended-products {
                background: white;
                border-radius: 10px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                padding: 25px;
            }

            .recommended-item {
                background: white;
                border: 1px solid #f0f0f0;
                border-radius: 8px;
                overflow: hidden;
                transition: all 0.3s ease;
                height: 100%;
            }

            .recommended-item:hover {
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                transform: translateY(-2px);
            }

            .recommended-item .item-image {
                width: 100%;
                height: 150px;
                margin: 0;
                border-radius: 0;
            }

            .recommended-item .item-info {
                padding: 15px;
            }

            .recommended-item h6 {
                font-weight: 600;
                margin-bottom: 8px;
                color: #333;
                font-size: 14px;
                line-height: 1.3;
            }

            .recommended-item .price {
                font-size: 16px;
                font-weight: bold;
                color: var(--bh-red);
                margin-bottom: 10px;
            }

            .btn-add-to-cart {
                background: var(--bh-orange);
                color: white;
                border: none;
                padding: 6px 12px;
                border-radius: 15px;
                font-size: 12px;
                font-weight: 600;
                width: 100%;
                transition: all 0.3s ease;
            }

            .btn-add-to-cart:hover {
                background: #e55a00;
                transform: translateY(-1px);
            }

            /* Cart Summary */
            .cart-summary {
                background: white;
                border-radius: 10px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                padding: 25px;
                position: sticky;
                top: 20px;
            }

            .summary-title {
                font-size: 1.5rem;
                font-weight: 600;
                color: #333;
                margin-bottom: 20px;
                padding-bottom: 10px;
                border-bottom: 2px solid var(--bh-light-gray);
            }

            .summary-title i {
                color: var(--bh-red);
            }

            .summary-details {
                margin-bottom: 25px;
            }

            .summary-row {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 10px 0;
                border-bottom: 1px solid #f8f9fa;
            }

            .summary-row:last-child {
                border-bottom: none;
            }

            .summary-divider {
                border-top: 2px solid #ddd;
                margin: 15px 0;
            }

            .total-row {
                font-size: 1.3rem;
                font-weight: bold;
                color: #333;
            }

            .total-row span:last-child {
                color: var(--bh-red);
            }

            .discount-row {
                color: var(--bh-green);
            }

            /* Delivery Info */
            .Delivery-info {
                margin-bottom: 25px;
                padding: 15px;
                background: #f8f9fa;
                border-radius: 8px;
            }

            .Delivery-option {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 10px;
            }

            .Delivery-option:last-child {
                margin-bottom: 0;
            }

            .Delivery-option i {
                font-size: 18px;
                width: 24px;
            }

            .Delivery-option strong {
                display: block;
                font-size: 14px;
                margin-bottom: 2px;
            }

            .Delivery-option small {
                color: #666;
                font-size: 12px;
            }

            /* Checkout Actions */
            .checkout-actions {
                margin-bottom: 25px;
            }

            .btn-checkout {
                background: linear-gradient(135deg, var(--bh-red), var(--bh-orange));
                color: white;
                border: none;
                padding: 15px 25px;
                border-radius: 25px;
                font-weight: 600;
                font-size: 16px;
                width: 100%;
                margin-bottom: 10px;
                transition: all 0.3s ease;
            }

            .btn-checkout:hover {
                background: linear-gradient(135deg, var(--bh-orange), var(--bh-red));
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(231, 30, 36, 0.4);
            }

            .btn-whatsapp-order {
                background: #25d366;
                color: white;
                border: none;
                padding: 12px 25px;
                border-radius: 25px;
                font-weight: 600;
                width: 100%;
                transition: all 0.3s ease;
            }

            .btn-whatsapp-order:hover {
                background: #20b358;
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
            }

            /* Security Badges */
            .security-badges {
                margin-bottom: 20px;
                padding: 15px;
                background: #f8f9fa;
                border-radius: 8px;
            }

            .security-badge {
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 8px;
                font-size: 13px;
                color: #666;
            }

            .security-badge:last-child {
                margin-bottom: 0;
            }

            .security-badge i {
                color: var(--bh-green);
                width: 16px;
            }

            /* Payment Methods */
            .payment-methods {
                margin-bottom: 20px;
            }

            .payment-methods h6 {
                font-size: 14px;
                font-weight: 600;
                color: #333;
                margin-bottom: 10px;
            }

            .payment-icons {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
            }

            .payment-icon {
                width: 40px;
                height: 30px;
                background: #f8f9fa;
                border: 1px solid #ddd;
                border-radius: 4px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #666;
                font-size: 16px;
            }

            /* Quick Contact */
            .quick-contact h6 {
                font-size: 14px;
                font-weight: 600;
                color: #333;
                margin-bottom: 10px;
            }

            .contact-item {
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 6px;
                font-size: 13px;
                color: #666;
            }

            .contact-item:last-child {
                margin-bottom: 0;
            }

            .contact-item i {
                color: var(--bh-red);
                width: 16px;
            }

            /* Empty Cart */
            .empty-cart {
                background: white;
                border-radius: 10px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                padding: 60px 30px;
                margin-top: 30px;
            }

            .empty-cart-icon {
                font-size: 4rem;
                color: #ddd;
                margin-bottom: 20px;
            }

            .empty-cart h3 {
                color: #333;
                margin-bottom: 15px;
            }

            .empty-cart p {
                color: #666;
                margin-bottom: 30px;
            }

            .btn-start-shopping {
                background: var(--bh-green);
                color: white;
                border: none;
                padding: 12px 30px;
                border-radius: 25px;
                font-weight: 600;
                transition: all 0.3s ease;
            }

            .btn-start-shopping:hover {
                background: #45a049;
                transform: translateY(-2px);
                color: white;
            }

            /* Mobile Responsive Cart */
            @media (max-width: 992px) {
                .cart-summary {
                    position: static;
                    margin-top: 30px;
                }
                
                .cart-actions .row {
                    text-align: center;
                }
                
                .coupon-section {
                    margin: 20px auto 0;
                }
            }

            @media (max-width: 768px) {
                .cart-header .row {
                    text-align: center;
                }
                
                .btn-continue-shopping {
                    margin-top: 15px;
                }
                
                .cart-item {
                    flex-direction: column;
                    text-align: center;
                }
                
                .item-image {
                    margin: 0 auto 15px;
                }
                
                .item-header {
                    flex-direction: column;
                    align-items: center;
                    gap: 10px;
                }
                
                .item-actions {
                    flex-direction: column;
                    gap: 15px;
                    align-items: center;
                }
                
                .item-price {
                    text-align: center;
                }
                
                .item-meta {
                    justify-content: center;
                }
                
                .cart-actions .row {
                    flex-direction: column;
                }
                
                .cart-actions .col-md-6:first-child {
                    margin-bottom: 20px;
                }
                
                .recommended-item .item-image {
                    height: 120px;
                }
            }

            @media (max-width: 576px) {
                .page-title {
                    font-size: 2rem;
                }
                
                .cart-item {
                    padding: 20px;
                }
                
                .cart-summary {
                    padding: 20px;
                }
                
                .btn-clear-cart,
                .btn-update-cart {
                    display: block;
                    width: 100%;
                    margin-bottom: 10px;
                    margin-right: 0;
                }
                
                .quantity-controls {
                    transform: scale(1.1);
                }
                
                .payment-icons {
                    justify-content: center;
                }
            }

            /* Authentication Page Styles */
            .auth-page {
                background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
                min-height: 100vh;
            }

            .auth-section {
                padding: 40px 0;
                min-height: calc(100vh - 140px);
                display: flex;
                align-items: center;
            }

            .auth-container {
                background: white;
                border-radius: 20px;
                box-shadow: 0 20px 60px rgba(0,0,0,0.1);
                overflow: hidden;
                max-width: 1000px;
                margin: 0 auto;
            }

            /* Left Side - Branding */
            .auth-branding {
                background: linear-gradient(135deg, var(--bh-red) 0%, var(--bh-orange) 100%);
                color: white;
                padding: 60px 40px;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                position: relative;
                overflow: hidden;
            }

            .auth-branding::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -50%;
                width: 200%;
                height: 200%;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
                opacity: 0.3;
                z-index: 1;
            }

            .brand-content {
                position: relative;
                z-index: 2;
            }

            .brand-logo {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 30px;
            }

            .brand-logo i {
                font-size: 3rem;
                background: rgba(255,255,255,0.2);
                padding: 20px;
                border-radius: 50%;
                backdrop-filter: blur(10px);
            }

            .brand-logo h2 {
                font-size: 2.5rem;
                font-weight: bold;
                margin: 0;
            }

            .auth-branding h3 {
                font-size: 1.8rem;
                font-weight: 600;
                margin-bottom: 20px;
                opacity: 0.95;
            }

            .auth-branding > p {
                font-size: 1.1rem;
                line-height: 1.6;
                margin-bottom: 40px;
                opacity: 0.9;
            }

            .features-list {
                margin-bottom: 40px;
            }

            .feature-item {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 15px;
                font-size: 1rem;
            }

            .feature-item i {
                width: 20px;
                height: 20px;
                background: rgba(255,255,255,0.2);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }

            .testimonial {
                background: rgba(255,255,255,0.15);
                padding: 25px;
                border-radius: 15px;
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255,255,255,0.2);
            }

            .testimonial-content {
                position: relative;
            }

            .testimonial-content .fa-quote-left {
                font-size: 1.5rem;
                opacity: 0.7;
                margin-bottom: 15px;
            }

            .testimonial-content p {
                font-style: italic;
                line-height: 1.6;
                margin-bottom: 15px;
            }

            .testimonial-author {
                font-weight: 600;
                opacity: 0.9;
            }

            /* Right Side - Forms */
            .auth-forms {
                padding: 60px 40px;
            }

            .form-toggle {
                display: flex;
                background: #f8f9fa;
                border-radius: 25px;
                padding: 5px;
                margin-bottom: 40px;
                position: relative;
            }

            .toggle-btn {
                flex: 1;
                padding: 12px 20px;
                border: none;
                background: transparent;
                color: #666;
                font-weight: 600;
                border-radius: 20px;
                transition: all 0.3s ease;
                position: relative;
                z-index: 2;
            }

            .toggle-btn.active {
                background: white;
                color: var(--bh-red);
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            }

            .form-header {
                text-align: center;
                margin-bottom: 35px;
            }

            .form-header h4 {
                font-size: 1.8rem;
                font-weight: bold;
                color: #333;
                margin-bottom: 8px;
            }

            .form-header p {
                color: #666;
                margin: 0;
            }

            /* Form Styles */
            .auth-form {
                margin-bottom: 30px;
            }

            .form-group {
                margin-bottom: 25px;
            }

            .form-group label {
                display: block;
                font-weight: 600;
                color: #333;
                margin-bottom: 8px;
                font-size: 14px;
            }

            .form-group label i {
                color: var(--bh-red);
                margin-right: 8px;
                width: 16px;
            }

            .form-control {
                height: 50px;
                border: 2px solid #e9ecef;
                border-radius: 10px;
                padding: 12px 16px;
                font-size: 16px;
                transition: all 0.3s ease;
                background: #fafafa;
            }

            .form-control:focus {
                border-color: var(--bh-red);
                background: white;
                box-shadow: 0 0 0 0.2rem rgba(231, 30, 36, 0.1);
            }

            .form-control.is-invalid {
                border-color: #dc3545;
                background: #fff5f5;
            }

            .form-control.is-valid {
                border-color: var(--bh-green);
                background: #f0fff4;
            }

            .invalid-feedback {
                display: block;
                width: 100%;
                margin-top: 5px;
                font-size: 14px;
                color: #dc3545;
            }

            .password-input {
                position: relative;
            }

            .password-toggle {
                position: absolute;
                right: 15px;
                top: 50%;
                transform: translateY(-50%);
                background: none;
                border: none;
                color: #666;
                cursor: pointer;
                padding: 5px;
                transition: color 0.3s ease;
            }

            .password-toggle:hover {
                color: var(--bh-red);
            }

            .password-requirements {
                margin-top: 5px;
            }

            .password-requirements small {
                color: #666;
                font-size: 12px;
            }

            .form-options {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 25px;
                flex-wrap: wrap;
                gap: 10px;
            }

            .form-check {
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .form-check-input {
                width: 18px;
                height: 18px;
                border: 2px solid #ddd;
                border-radius: 4px;
                background: #fafafa;
            }

            .form-check-input:checked {
                background-color: var(--bh-red);
                border-color: var(--bh-red);
            }

            .form-check-label {
                font-size: 14px;
                color: #333;
                margin-bottom: 0;
                cursor: pointer;
            }

            .form-check-group {
                margin-bottom: 25px;
            }

            .form-check-group .form-check {
                margin-bottom: 12px;
            }

            .form-check-group .form-check:last-child {
                margin-bottom: 0;
            }

            .forgot-password {
                color: var(--bh-red);
                text-decoration: none;
                font-size: 14px;
                font-weight: 600;
                transition: color 0.3s ease;
            }

            .forgot-password:hover {
                color: var(--bh-orange);
                text-decoration: underline;
            }

            .btn-auth {
                width: 100%;
                height: 55px;
                background: linear-gradient(135deg, var(--bh-red) 0%, var(--bh-orange) 100%);
                color: white;
                border: none;
                border-radius: 12px;
                font-size: 16px;
                font-weight: 600;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                overflow: hidden;
            }

            .btn-auth:hover {
                background: linear-gradient(135deg, var(--bh-orange) 0%, var(--bh-red) 100%);
                transform: translateY(-2px);
                box-shadow: 0 10px 25px rgba(231, 30, 36, 0.3);
            }

            .btn-auth:active {
                transform: translateY(0);
            }

            .btn-auth .btn-text,
            .btn-auth .btn-loading {
                transition: opacity 0.3s ease;
            }

            .btn-auth.loading .btn-text {
                opacity: 0;
            }

            .btn-auth.loading .btn-loading {
                opacity: 1;
            }

            .divider {
                text-align: center;
                margin: 30px 0;
                position: relative;
            }

            .divider::before {
                content: '';
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                height: 1px;
                background: #e9ecef;
            }

            .divider span {
                background: white;
                color: #666;
                padding: 0 20px;
                font-size: 14px;
                position: relative;
                z-index: 1;
            }

            /* Social Authentication */
            .social-auth {
                display: flex;
                gap: 15px;
            }

            .btn-social {
                flex: 1;
                height: 50px;
                border: 2px solid #e9ecef;
                border-radius: 10px;
                background: white;
                color: #333;
                font-weight: 600;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                transition: all 0.3s ease;
                text-decoration: none;
            }

            .btn-social:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                color: #333;
                text-decoration: none;
            }

            .btn-google:hover {
                border-color: #db4437;
                color: #db4437;
            }

            .btn-facebook:hover {
                border-color: #3b5998;
                color: #3b5998;
            }

            .btn-social i {
                font-size: 18px;
            }

            .back-to-login {
                color: var(--bh-red);
                text-decoration: none;
                font-weight: 600;
                transition: color 0.3s ease;
            }

            .back-to-login:hover {
                color: var(--bh-orange);
                text-decoration: underline;
            }

            /* Animation for form switching */
            .auth-form-container {
                animation: fadeInUp 0.4s ease-out;
            }

            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* Mobile Responsiveness */
            @media (max-width: 992px) {
                .auth-container {
                    margin: 20px;
                }
                
                .auth-branding {
                    text-align: center;
                    padding: 40px 30px;
                }
                
                .brand-logo {
                    justify-content: center;
                }
                
                .auth-forms {
                    padding: 40px 30px;
                }
            }

            @media (max-width: 768px) {
                .auth-section {
                    padding: 20px 0;
                    min-height: calc(100vh - 120px);
                }
                
                .auth-container {
                    margin: 10px;
                    border-radius: 15px;
                }
                
                .auth-branding {
                    padding: 30px 20px;
                }
                
                .brand-logo {
                    flex-direction: column;
                    gap: 10px;
                }
                
                .brand-logo h2 {
                    font-size: 2rem;
                }
                
                .auth-branding h3 {
                    font-size: 1.5rem;
                }
                
                .auth-forms {
                    padding: 30px 20px;
                }
                
                .form-header h4 {
                    font-size: 1.5rem;
                }
                
                .form-options {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 15px;
                }
                
                .social-auth {
                    flex-direction: column;
                }
                
                .testimonial {
                    padding: 20px;
                }
                
                .features-list {
                    margin-bottom: 30px;
                }
            }

            @media (max-width: 576px) {
                .auth-branding {
                    padding: 25px 15px;
                }
                
                .auth-forms {
                    padding: 25px 15px;
                }
                
                .brand-logo i {
                    font-size: 2.5rem;
                    padding: 15px;
                }
                
                .form-control {
                    font-size: 16px; /* Prevent zoom on iOS */
                }
                
                .btn-auth {
                    height: 50px;
                    font-size: 15px;
                }
                
                .btn-social {
                    height: 45px;
                    font-size: 14px;
                }
            }

            /* Form Validation States */
            .form-control.validating {
                border-color: #ffc107;
                background: #fffbf0;
            }

            .success-message {
                background: #d4edda;
                color: #155724;
                padding: 12px 16px;
                border-radius: 8px;
                margin-bottom: 20px;
                border: 1px solid #c3e6cb;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .error-message {
                background: #f8d7da;
                color: #721c24;
                padding: 12px 16px;
                border-radius: 8px;
                margin-bottom: 20px;
                border: 1px solid #f5c6cb;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            /* Loading States */
            .btn-auth:disabled {
                opacity: 0.7;
                cursor: not-allowed;
                transform: none !important;
            }

            .form-control:disabled {
                background: #e9ecef;
                opacity: 0.7;
            }

            /* Footer Styles */
            .footer-section {
                background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
                color: white;
                position: relative;
                overflow: hidden;
            }

            .footer-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
                opacity: 0.3;
            }

            .footer-main {
                position: relative;
                z-index: 2;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .footer-logo h4 {
                color: var(--bh-orange);
                font-weight: bold;
                font-size: 1.8rem;
                margin: 0;
            }

            .footer-desc {
                color: rgba(255,255,255,0.8);
                line-height: 1.6;
                margin-bottom: 1.5rem;
            }

            .footer-title {
                color: white;
                font-weight: 600;
                margin-bottom: 1.5rem;
                font-size: 1.1rem;
                position: relative;
                padding-bottom: 0.5rem;
            }

            .footer-title::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 30px;
                height: 2px;
                background: var(--bh-orange);
            }

            .footer-links {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .footer-links li {
                margin-bottom: 0.75rem;
            }

            .footer-links a {
                color: rgba(255,255,255,0.7);
                text-decoration: none;
                transition: all 0.3s ease;
                font-size: 0.9rem;
                position: relative;
                padding-left: 15px;
            }

            .footer-links a::before {
                content: '▸';
                position: absolute;
                left: 0;
                color: var(--bh-orange);
                transform: translateX(-5px);
                opacity: 0;
                transition: all 0.3s ease;
            }

            .footer-links a:hover {
                color: var(--bh-orange);
                transform: translateX(5px);
            }

            .footer-links a:hover::before {
                opacity: 1;
                transform: translateX(0);
            }

            .footer-contact .contact-item {
                display: flex;
                align-items: center;
                margin-bottom: 1rem;
                color: rgba(255,255,255,0.8);
            }

            .footer-contact .contact-item i {
                color: var(--bh-orange);
                width: 20px;
                margin-right: 10px;
                font-size: 1rem;
            }

            /* Newsletter */
            .newsletter-desc {
                color: rgba(255,255,255,0.8);
                margin-bottom: 1rem;
                font-size: 0.9rem;
            }

            .newsletter-form .input-group {
                border-radius: 25px;
                overflow: hidden;
                box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            }

            .newsletter-input {
                border: none;
                padding: 12px 20px;
                background: rgba(255,255,255,0.95);
                border-radius: 0;
            }

            .newsletter-input:focus {
                outline: none;
                box-shadow: none;
                background: white;
            }

            .newsletter-btn {
                background: linear-gradient(135deg, var(--bh-red), var(--bh-orange));
                border: none;
                color: white;
                padding: 12px 20px;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .newsletter-btn:hover {
                background: linear-gradient(135deg, var(--bh-orange), var(--bh-red));
                transform: scale(1.05);
            }

            /* Social Media */
            .social-title {
                color: white;
                font-size: 1rem;
                margin-bottom: 1rem;
                font-weight: 600;
            }

            .social-icons {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
            }

            .social-link {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                text-decoration: none;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .social-link::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, var(--bh-red), var(--bh-orange));
                opacity: 0;
                transition: all 0.3s ease;
            }

            .social-link:hover::before {
                opacity: 1;
            }

            .social-link i {
                position: relative;
                z-index: 2;
            }

            .social-link.facebook { background: #3b5998; }
            .social-link.twitter { background: #1da1f2; }
            .social-link.instagram { background: #e4405f; }
            .social-link.tiktok { background: #2e2e2e; }
            .social-link.whatsapp { background: #25d366; }
            .social-link.youtube { background: #ff0000; }

            .social-link:hover {
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            }

            /* Trust Badges */
            .trust-title {
                color: white;
                font-size: 1rem;
                margin-bottom: 1rem;
                font-weight: 600;
            }

            .payment-methods {
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
            }

            .payment-icon, .cert-badge {
                background: white;
                border-radius: 4px;
                padding: 2px;
                opacity: 0.8;
                transition: opacity 0.3s ease;
            }

            .payment-icon:hover, .cert-badge:hover {
                opacity: 1;
            }

            /* Footer Features */
            .footer-features {
                background: rgba(255,255,255,0.05);
                border-bottom: 1px solid rgba(255,255,255,0.1);
                position: relative;
                z-index: 2;
                width: 100vw;
                margin-left: calc(-50vw + 50%);
            }

            .footer-features .container-fluid {
                max-width: 100%;
                padding: 0;
                margin: 0;
            }

            .footer-features .row {
                margin: 0;
                width: 100%;
            }

            .footer-features .col-lg-3 {
                padding: 0;
                flex: 1;
                max-width: 25%;
            }

            .feature-item {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 15px;
                padding: 20px 15px;
                border-radius: 0;
                transition: all 0.3s ease;
                height: 100%;
                text-align: center;
                border-right: 1px solid rgba(255,255,255,0.1);
            }

            .feature-item:last-child {
                border-right: none;
            }

            .feature-item:hover {
                background: rgba(255,255,255,0.1);
                transform: translateY(-2px);
            }

            @media (max-width: 768px) {
                .footer-features .col-lg-3 {
                    max-width: 100%;
                    flex: none;
                }
                
                .feature-item {
                    border-right: none;
                    border-bottom: 1px solid rgba(255,255,255,0.1);
                }
                
                .feature-item:last-child {
                    border-bottom: none;
                }
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                background: linear-gradient(135deg, var(--bh-red), var(--bh-orange));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1.2rem;
                flex-shrink: 0;
            }

            .feature-content h6 {
                color: white;
                margin: 0 0 5px 0;
                font-weight: 600;
                font-size: 1rem;
            }

            .feature-content p {
                color: rgba(255,255,255,0.7);
                margin: 0;
                font-size: 0.85rem;
            }

            /* Footer Bottom */
            .footer-bottom {
                position: relative;
                z-index: 2;
                background: rgba(0,0,0,0.2);
                width: 100vw;
                margin-left: calc(-50vw + 50%);
            }

            .copyright-text {
                color: rgba(255,255,255,0.7);
                font-size: 0.9rem;
            }

            .footer-link {
                color: rgba(255,255,255,0.7);
                text-decoration: none;
                transition: color 0.3s ease;
            }

            .footer-link:hover {
                color: var(--bh-orange);
            }

            .footer-certifications {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .cert-text {
                color: rgba(255,255,255,0.7);
                font-size: 0.85rem;
                margin-right: 5px;
            }

            /* Back to Top Button */
            .back-to-top {
                position: fixed;
                bottom: 30px;
                right: 30px;
                width: 50px;
                height: 50px;
                background: linear-gradient(135deg, var(--bh-red), var(--bh-orange));
                color: white;
                border: none;
                border-radius: 50%;
                cursor: pointer;
                display: none;
                align-items: center;
                justify-content: center;
                font-size: 1.2rem;
                box-shadow: 0 4px 15px rgba(0,0,0,0.2);
                transition: all 0.3s ease;
                z-index: 1000;
            }

            .back-to-top:hover {
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(231, 30, 36, 0.4);
            }

            .back-to-top.show {
                display: flex;
            }            /* Responsive for product cards */
            @media (max-width: 768px) {
                .deal-item .product-image {
                    height: 200px;
                }
                
                .deal-item .product-title {
                    font-size: 1rem;
                }
                
                .deal-item .current-price {
                    font-size: 1.1rem;
                }
                
                .section-title {
                    font-size: 2rem;
                }

                /* Banner responsive */
                .banner-section {
                    padding: 40px 0;
                }

                .banner-item {
                    height: 250px;
                    margin-bottom: 20px;
                }

                .banner-content h3 {
                    font-size: 1.5rem;
                }

                .banner-content p {
                    font-size: 1rem;
                }

                .banner-content .btn {
                    padding: 10px 20px;
                    font-size: 0.9rem;
                }
            }

            @media (max-width: 480px) {
                .deal-item {
                    padding: 15px;
                }
                
                .deal-item .product-image {
                    height: 180px;
                }
                
                .deal-item .product-actions {
                    flex-direction: column;
                    gap: 8px;
                }
                
                .deal-item .btn-wishlist {
                    width: 100%;
                    border-radius: 20px;
                }

                /* Banner mobile */
                .banner-item {
                    height: 200px;
                }

                .banner-content {
                    padding: 20px;
                }

                .banner-content h3 {
                    font-size: 1.3rem;
                    margin-bottom: 10px;
                }

                .banner-content p {
                    font-size: 0.9rem;
                    margin-bottom: 15px;
                }

                .banner-content .btn {
                    padding: 8px 16px;
                    font-size: 0.8rem;
                }

                .banner-content .btn i {
                    display: none;
                }
            }

        /* Responsive */
        @media (max-width: 768px) {
            .mega-menu {
                position: static;
                width: 100%;
                margin-left: 0;
                padding: 20px;
            }
            
            .mega-menu-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .mega-menu .container-fluid {
                padding: 0 20px;
            }
            
            .search-section {
                margin: 10px 0;
                order: 3;
                width: 100%;
            }
            
            .header-right {
                flex-direction: column;
                align-items: flex-end;
            }

            /* Hero responsive */
            .hero-slider {
                height: 400px;
            }
            
            .hero-slide {
                height: 400px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            /* Categories responsive */
            .categories-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .category-item {
                padding: 15px;
            }
            
            .category-icon img {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .mega-menu-content {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            /* Hero mobile */
            .hero-slider {
                height: 350px;
            }
            
            .hero-slide {
                height: 350px;
            }
            
            .hero-title {
                font-size: 1.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 200px;
            }
            
            /* Categories mobile */
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .category-item {
                padding: 10px;
            }
            
            .category-icon img {
                width: 50px;
                height: 50px;
            }
            
            .category-item h6 {
                font-size: 12px;
            }
        }

        /* Enhanced Product Card Styles */
        
        /* Product Card Base */
        .product-card {
            transition: all 0.3s ease;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        /* Enhanced Product Image */
        .product-img {
            transition: all 0.4s ease;
            border-radius: 15px 15px 0 0;
        }

        .product-card:hover .product-img {
            transform: scale(1.08);
        }

        /* Enhanced Product Overlay */
        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
            border-radius: 15px 15px 0 0;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .overlay-actions {
            display: flex;
            gap: 15px;
        }

        .btn-quick-view, .btn-wishlist-overlay {
            background: rgba(255,255,255,0.9);
            border: none;
            color: #333;
            padding: 12px;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .btn-quick-view:hover, .btn-wishlist-overlay:hover {
            background: var(--bh-red);
            color: white;
            transform: scale(1.1);
        }

        /* Enhanced Badges */
        .badge-trending {
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e) !important;
            animation: pulse 2s infinite;
        }

        .badge-sale {
            background: linear-gradient(135deg, var(--bh-red), #ff4757) !important;
        }

        .badge-featured {
            background: linear-gradient(135deg, var(--bh-green), #2ed573) !important;
        }

        .badge-new {
            background: linear-gradient(135deg, #3742fa, #5352ed) !important;
        }

        .badge-limited {
            background: linear-gradient(135deg, #ffa502, #ff6348) !important;
        }

        .badge-out-of-stock {
            background: linear-gradient(135deg, #747d8c, #57606f) !important;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Enhanced Product Brand */
        .product-brand {
            font-size: 0.8rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
            font-weight: 500;
        }

        /* Enhanced Price Section */
        .price-section {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .discount-badge {
            background: var(--bh-green);
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
        }

        /* Enhanced Product Meta */
        .product-meta {
            margin: 10px 0;
        }

        .delivery-info {
            color: var(--bh-green);
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .delivery-info i {
            margin-right: 5px;
        }

        .stock-info {
            font-size: 0.8rem;
            font-weight: 500;
        }

        .stock-info i {
            margin-right: 5px;
        }

        /* Enhanced Action Buttons */
        .product-actions {
            gap: 8px !important;
        }

        .btn-shop i {
            margin-right: 5px;
        }

        /* Mobile Responsive Enhancements */
        @media (max-width: 768px) {
            .product-card {
                margin-bottom: 20px;
            }

            .overlay-actions {
                gap: 10px;
            }

            .btn-quick-view, .btn-wishlist-overlay {
                width: 45px;
                height: 45px;
                font-size: 14px;
            }

            .product-brand {
                font-size: 0.75rem;
            }

            .delivery-info, .stock-info {
                font-size: 0.8rem;
            }
        }

        /* Enhanced Product Card Styles */
        .product-brand {
            font-size: 0.8rem;
            color: #666;
            font-weight: 500;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .price-section {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .discount-badge {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .delivery-info {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #28a745;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .delivery-info i {
            color: #28a745;
        }

        .stock-info {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .stock-info i {
            font-size: 0.7rem;
        }

        .badge-trending {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
            border-radius: 10px;
        }

        .product-image:hover .product-overlay {
            opacity: 1;
        }

        .overlay-actions {
            display: flex;
            gap: 10px;
        }

        .btn-quick-view, .btn-wishlist-overlay {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            transition: all 0.3s ease;
        }

        .btn-quick-view:hover, .btn-wishlist-overlay:hover {
            background: white;
            transform: scale(1.1);
            color: var(--bh-red);
        }

        /* Lazy Loading Styles */
        .lazy {
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .lazy.loaded {
            opacity: 1;
        }

        /* Loading overlay styles */
        .loading-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10;
            backdrop-filter: blur(2px);
        }

        .loading-overlay .spinner-border {
            width: 3rem;
            height: 3rem;
        }

        /* Image loading states */
        #main-product-image {
            transition: opacity 0.3s ease-in-out;
        }

        .thumbnail-item img {
            transition: opacity 0.3s ease-in-out;
        }

        /* ===============================
           CART STYLES
           =============================== */

        /* Cart Badge */
        .cart-badge {
            font-size: 0.75rem;
            min-width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Cart Icon Animation */
        .cart-icon {
            transition: transform 0.3s ease;
        }

        .cart-icon.has-items {
            animation: cartBounce 0.6s ease;
        }

        @keyframes cartBounce {
            0%, 20%, 60%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            80% {
                transform: translateY(-5px);
            }
        }

        /* Cart Item Styles */
        .cart-item {
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .cart-item:hover {
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }

        .cart-item img {
            border-radius: 8px;
            object-fit: cover;
        }

        /* Quantity Controls */
        .quantity-controls .input-group {
            max-width: 120px;
        }

        .quantity-controls .form-control {
            border-left: none;
            border-right: none;
            padding: 0.375rem 0.25rem;
        }

        .quantity-controls .btn {
            border: 1px solid #ced4da;
            padding: 0.375rem 0.5rem;
            line-height: 1;
        }

        .qty-decrease {
            border-top-right-radius: 0 !important;
            border-bottom-right-radius: 0 !important;
        }

        .qty-increase {
            border-top-left-radius: 0 !important;
            border-bottom-left-radius: 0 !important;
        }

        /* Cart Summary Card */
        .cart-summary-card {
            border: 1px solid #e9ecef;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .cart-summary-card .card-header {
            background-color: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
            font-weight: 600;
        }

        .summary-item {
            font-size: 0.95rem;
        }

        .summary-total {
            font-size: 1.1rem;
            padding: 0.5rem 0;
            border-top: 2px solid #dee2e6;
        }

        /* Empty Cart Styles */
        .empty-cart {
            padding: 3rem 1rem;
            background: #f8f9fa;
            border-radius: 10px;
            border: 2px dashed #dee2e6;
        }

        .empty-cart i {
            opacity: 0.6;
        }

        /* Cart Notifications */
        .cart-notification {
            max-width: 350px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: none;
            border-radius: 8px;
        }

        .cart-notification .btn-close {
            padding: 0.25rem;
            margin: 0;
            font-size: 0.75rem;
        }

        /* Remove Button */
        .btn-remove-item {
            font-size: 0.875rem;
            padding: 0.375rem 0.75rem;
            transition: all 0.3s ease;
        }

        .btn-remove-item:hover {
            background-color: #dc3545;
            border-color: #dc3545;
            color: white;
            transform: scale(1.05);
        }

        /* Checkout Button */
        .checkout-btn {
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .checkout-btn:not(:disabled):hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,123,255,0.3);
        }

        .checkout-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Cart Item Price Display */
        .cart-item .price {
            font-size: 1rem;
        }

        .cart-item .item-total {
            font-size: 1.1rem;
            color: var(--bh-red);
        }

        /* Responsive Cart Styles */
        @media (max-width: 768px) {
            .cart-item .row > div {
                margin-bottom: 1rem;
            }
            
            .cart-item .col-md-2:last-child {
                text-align: center !important;
            }
            
            .quantity-controls {
                justify-content: center;
                display: flex;
            }
            
            .cart-summary-card {
                margin-top: 2rem;
            }
            
            .empty-cart {
                padding: 2rem 1rem;
            }
        }

        @media (max-width: 576px) {
            .cart-item img {
                max-height: 80px;
            }
            
            .cart-item h6 {
                font-size: 0.9rem;
            }
            
            .quantity-controls .input-group {
                max-width: 100px;
            }
            
            .cart-notification {
                right: 10px !important;
                left: 10px !important;
                max-width: none;
            }
        }

        /* Cart Header */
        .cart-header {
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }

        .cart-header h2 {
            color: var(--bh-dark);
            font-weight: 600;
        }

        /* Clear Cart Button */
        .clear-cart {
            transition: all 0.3s ease;
        }

        .clear-cart:hover {
            background-color: #dc3545;
            border-color: #dc3545;
            color: white;
            transform: scale(1.05);
        }

        /* Shipping Info Card */
        .card h6 i {
            width: 20px;
            text-align: center;
        }

        .card ul li {
            padding: 0.25rem 0;
        }

        .card ul li i {
            width: 16px;
            text-align: center;
        }

        /* Recommended Products Section */
        .recommended-products {
            margin-top: 3rem;
        }

        .recommended-products h3 {
            color: var(--bh-dark);
            font-weight: 600;
            margin-bottom: 2rem;
        }

/* Checkout Page Styles */
.checkout-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.checkout-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--bh-dark);
    margin-bottom: 2rem;
}

.checkout-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 2rem;
    position: relative;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 100%;
    width: 4rem;
    height: 2px;
    background-color: #dee2e6;
    z-index: 0;
}

.progress-step.active:not(:last-child)::after {
    background-color: var(--bh-green);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.progress-step.active .step-number {
    background-color: var(--bh-green);
    color: white;
}

.progress-step span {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.progress-step.active span {
    color: var(--bh-green);
    font-weight: 600;
}

.checkout-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.section-header {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h3 {
    margin: 0;
    color: var(--bh-dark);
    font-size: 1.25rem;
    font-weight: 600;
}

.login-prompt {
    margin-left: auto;
}

.login-prompt a {
    color: var(--bh-red);
    text-decoration: none;
    font-weight: 500;
}

.login-prompt a:hover {
    text-decoration: underline;
}

.section-content {
    padding: 2rem;
}

.customer-details {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.customer-avatar {
    margin-right: 1rem;
}

.customer-avatar i {
    font-size: 3rem;
    color: var(--bh-green);
}

.customer-data h5 {
    margin: 0;
    font-weight: 600;
}

.customer-data p {
    margin: 0;
    color: #6c757d;
}

.delivery-methods {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.delivery-method {
    border-bottom: 1px solid #dee2e6;
    margin: 0;
}

.delivery-method:last-child {
    border-bottom: none;
}

.delivery-method .form-check-label {
    width: 100%;
    padding: 1rem;
    margin: 0;
    cursor: pointer;
    border: none;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delivery-method .form-check-input:checked + .form-check-label {
    background-color: #e8f5e8;
    border-left: 4px solid var(--bh-green);
}

.method-info {
    flex-grow: 1;
}

.method-name {
    font-weight: 600;
    color: var(--bh-dark);
    margin-bottom: 0.25rem;
}

.method-details {
    font-size: 0.875rem;
    color: #6c757d;
}

.method-price {
    font-weight: 600;
    color: var(--bh-green);
    margin-left: auto;
}

.payment-methods {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.payment-method {
    border-bottom: 1px solid #dee2e6;
}

.payment-method:last-child {
    border-bottom: none;
}

.payment-method .form-check-label {
    width: 100%;
    padding: 1rem;
    margin: 0;
    cursor: pointer;
    display: block;
}

.payment-method .form-check-input:checked + .form-check-label {
    background-color: #e8f5e8;
    border-left: 4px solid var(--bh-green);
}

.payment-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-info {
    flex-grow: 1;
}

.payment-name {
    font-weight: 600;
    color: var(--bh-dark);
    margin-bottom: 0.25rem;
}

.payment-desc {
    font-size: 0.875rem;
    color: #6c757d;
}

.payment-logos {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.payment-logos img {
    border-radius: 4px;
}

.payment-details {
    padding: 0 1rem 1rem;
    background-color: #f8f9fa;
}

.order-summary {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0;
    top: 2rem;
}

.summary-header {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    border-radius: 10px 10px 0 0;
}

.summary-header h3 {
    margin: 0;
    color: var(--bh-dark);
    font-size: 1.25rem;
    font-weight: 600;
}

.order-items {
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    max-height: 400px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f1f1;
}

.order-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.item-image {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.item-details {
    flex-grow: 1;
}

.item-name {
    font-weight: 500;
    color: var(--bh-dark);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.3;
}

.item-variant {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.item-quantity-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.item-quantity {
    color: #6c757d;
}

.item-price {
    font-weight: 600;
    color: var(--bh-dark);
}

.promo-section {
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.promo-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--bh-red);
    font-weight: 500;
}

.promo-toggle:hover {
    color: var(--bh-orange);
}

.order-totals {
    padding: 1.5rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.total-line:last-child {
    margin-bottom: 0;
}

.final-total {
    border-top: 2px solid #dee2e6;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bh-dark);
}

.discount-line {
    color: var(--bh-green);
}

.discount-code {
    font-size: 0.8rem;
    background-color: var(--bh-green);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
}

.place-order-section {
    padding: 1.5rem;
}

.security-info {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #6c757d;
}

.loading-state {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

/* Shop Page Styles */
.shop-sidebar {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.sidebar-widget {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.sidebar-widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.widget-title {
    color: var(--bh-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.filter-item {
    margin-bottom: 0.5rem;
}

.filter-checkbox {
    margin-right: 0.5rem;
}

.shop-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.view-mode {
    display: flex;
    gap: 0.25rem;
}

.view-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: var(--bh-red);
    color: white;
    border-color: var(--bh-red);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-item:hover .product-overlay {
    opacity: 1;
}

.overlay-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-quick-view,
.btn-wishlist-overlay {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bh-red);
    transition: all 0.3s ease;
}

.btn-quick-view:hover,
.btn-wishlist-overlay:hover {
    background: white;
    transform: scale(1.1);
}

.btn-wishlist.active,
.btn-wishlist-overlay.active {
    color: var(--bh-red);
}

.products-grid.list-view .deal-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
}

.products-grid.list-view .product-image {
    width: 200px;
    margin-right: 1rem;
}

.products-grid.list-view .product-details {
    flex: 1;
}

/* Product badges */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 5;
}

.badge-sale {
    background: var(--bh-red);
    color: white;
}

.badge-new {
    background: var(--bh-green);
    color: white;
}

.badge-featured {
    background: var(--bh-orange);
    color: white;
}

.badge-trending {
    background: linear-gradient(45deg, #ff6900, #e31e24);
    color: white;
}

.badge-limited {
    background: #ffc107;
    color: #333;
}

.badge-out-of-stock {
    background: #6c757d;
    color: white;
}

/* Shop page responsive */
@media (max-width: 991px) {
    .shop-sidebar {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .shop-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .products-grid.list-view .deal-item {
        flex-direction: column;
        text-align: center;
    }
    
    .products-grid.list-view .product-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* ===============================
   SKELETON LOADER STYLES
   =============================== */

/* Base skeleton animation */
@keyframes skeleton-loading {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 25%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 75%
    );
    animation: skeleton-shimmer 2s infinite;
}

@keyframes skeleton-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Product Detail Page Skeleton Loaders */

/* Main Image Skeleton */
.skeleton-main-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Thumbnail Skeleton */
.skeleton-thumbnail {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    margin-right: 12px;
    flex-shrink: 0;
}

.skeleton-thumbnail-container {
    display: flex;
    gap: 12px;
    padding: 10px 5px;
    overflow: hidden;
}

/* Product Info Skeleton */
.skeleton-rating {
    width: 120px;
    height: 16px;
    margin-bottom: 15px;
}

.skeleton-title {
    width: 100%;
    height: 32px;
    margin-bottom: 10px;
}

.skeleton-title-short {
    width: 80%;
    height: 32px;
    margin-bottom: 20px;
}

.skeleton-sku {
    width: 150px;
    height: 14px;
    margin-bottom: 20px;
}

.skeleton-price {
    width: 200px;
    height: 36px;
    margin-bottom: 20px;
}

.skeleton-description {
    width: 100%;
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-description:last-child {
    width: 70%;
    margin-bottom: 25px;
}

.skeleton-features {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 25px;
}

.skeleton-feature-title {
    width: 120px;
    height: 18px;
    margin-bottom: 15px;
}

.skeleton-feature-item {
    width: 100%;
    height: 14px;
    margin-bottom: 12px;
}

.skeleton-feature-item:last-child {
    width: 85%;
    margin-bottom: 0;
}

.skeleton-options {
    margin-bottom: 25px;
}

.skeleton-option-label {
    width: 80px;
    height: 16px;
    margin-bottom: 10px;
}

.skeleton-option-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.skeleton-option-btn {
    width: 60px;
    height: 36px;
    border-radius: 25px;
}

.skeleton-quantity {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.skeleton-quantity-label {
    width: 60px;
    height: 16px;
}

.skeleton-quantity-controls {
    width: 120px;
    height: 40px;
    border-radius: 25px;
}

.skeleton-stock {
    width: 80px;
    height: 14px;
}

.skeleton-buttons {
    margin-bottom: 30px;
}

.skeleton-main-btn {
    width: 100%;
    height: 55px;
    border-radius: 25px;
    margin-bottom: 15px;
}

.skeleton-secondary-buttons {
    display: flex;
    gap: 10px;
}

.skeleton-secondary-btn {
    flex: 1;
    height: 40px;
    border-radius: 20px;
}

.skeleton-guarantees {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 25px;
}

.skeleton-guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.skeleton-guarantee-item:last-child {
    border-bottom: none;
}

.skeleton-guarantee-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.skeleton-guarantee-text {
    flex: 1;
}

.skeleton-guarantee-title {
    width: 120px;
    height: 16px;
    margin-bottom: 4px;
}

.skeleton-guarantee-desc {
    width: 180px;
    height: 14px;
}

.skeleton-social {
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.skeleton-social-label {
    width: 60px;
    height: 16px;
    margin-bottom: 15px;
}

.skeleton-social-buttons {
    display: flex;
    gap: 10px;
}

.skeleton-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Tab Navigation Skeleton */
.skeleton-tabs {
    background: #f8f9fa;
    padding: 0 20px;
    border-radius: 10px 10px 0 0;
}

.skeleton-tab-nav {
    display: flex;
    gap: 25px;
    padding: 20px 0;
}

.skeleton-tab {
    width: 100px;
    height: 20px;
}

.skeleton-tab-content {
    padding: 30px;
}

.skeleton-tab-title {
    width: 200px;
    height: 24px;
    margin-bottom: 20px;
}

.skeleton-tab-text {
    width: 100%;
    height: 16px;
    margin-bottom: 15px;
}

.skeleton-tab-text:last-child {
    width: 75%;
}

/* Related Products Skeleton */
.skeleton-related {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.skeleton-related-title {
    width: 200px;
    height: 24px;
    margin-bottom: 30px;
}

.skeleton-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.skeleton-related-item {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.skeleton-related-image {
    width: 100%;
    height: 150px;
}

.skeleton-related-info {
    padding: 15px;
}

.skeleton-related-name {
    width: 100%;
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-related-price {
    width: 60px;
    height: 18px;
    margin-bottom: 10px;
}

.skeleton-related-btn {
    width: 100%;
    height: 32px;
    border-radius: 15px;
}

/* Responsive Skeleton Styles */
@media (max-width: 768px) {
    .skeleton-main-image {
        height: 300px;
    }
    
    .skeleton-thumbnail {
        width: 70px;
        height: 70px;
    }
    
    .skeleton-title {
        height: 24px;
    }
    
    .skeleton-price {
        height: 28px;
    }
    
    .skeleton-option-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .skeleton-option-btn {
        width: 100%;
        height: 32px;
    }
    
    .skeleton-quantity {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .skeleton-secondary-buttons {
        flex-direction: column;
    }
    
    .skeleton-related-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .skeleton-related-image {
        height: 120px;
    }
}

/* Skeleton States for Product Detail Manager */
.product-skeleton-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 100;
    border-radius: inherit;
}

.skeleton-fade-in {
    animation: skeletonFadeIn 0.3s ease-out;
}

.skeleton-fade-out {
    animation: skeletonFadeOut 0.3s ease-out forwards;
}

@keyframes skeletonFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes skeletonFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* ===============================
   WISHLIST & QUICK VIEW STYLES
   =============================== */

/* Wishlist button animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.btn-wishlist, .btn-wishlist-overlay {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-wishlist:hover, .btn-wishlist-overlay:hover {
    transform: scale(1.1);
}

.btn-wishlist-overlay {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-wishlist-overlay:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Wishlist notification styles */
.wishlist-notification {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Quick View Modal Styles */
#quickViewModal .modal-dialog {
    max-width: 900px;
}

#quickViewModal .modal-body {
    padding: 2rem;
}

/* Ensure modal backdrop is properly removed */
.modal-backdrop {
    transition: opacity 0.15s linear;
}

.modal-backdrop.fade.show {
    opacity: 0.5;
}

/* Force remove any stuck backdrops */
.modal-backdrop.removing {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Ensure body scroll is restored */
body.modal-cleanup {
    overflow: auto !important;
    padding-right: 0 !important;
}

.quick-view-images .main-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.quick-view-images .thumbnail-img {
    transition: all 0.2s ease;
}

.quick-view-images .thumbnail-img:hover {
    border-color: #007bff !important;
    transform: scale(1.05);
}

.quick-view-details .brand {
    color: #6c757d;
    font-size: 0.9rem;
}

.quick-view-details .sku {
    color: #6c757d;
    font-size: 0.85rem;
}

.quick-view-details .rating .stars {
    color: #ffc107;
}

.quick-view-details .current-price {
    font-weight: 600;
}

.quick-view-details .original-price {
    font-size: 0.9rem;
}

.quick-view-details .description {
    color: #6c757d;
    line-height: 1.6;
}

.quantity-selector .input-group {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.quantity-selector .btn {
    border: none;
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
}

.quantity-selector .btn:hover {
    background: #e9ecef;
}

.quantity-selector .form-control {
    border: none;
    font-weight: 600;
}

.action-buttons .btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1rem;
}

.btn-wishlist-qv {
    border-color: #dc3545;
    color: #dc3545;
    transition: all 0.3s ease;
}

.btn-wishlist-qv:hover {
    background: #dc3545;
    color: white;
    transform: scale(1.05);
}

/* Product overlay improvements */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: inherit;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-actions {
    display: flex;
    gap: 10px;
}

.btn-quick-view {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-quick-view:hover {
    background: white;
    color: #007bff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #quickViewModal .modal-body {
        padding: 1rem;
    }
    
    .quick-view-images .main-image {
        height: 250px;
    }
    
    .overlay-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-quick-view, .btn-wishlist-overlay {
        width: 40px;
        height: 40px;
    }
    
    .quantity-selector .input-group {
        width: 100% !important;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

/* Loading states for buttons */
.btn-loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading .fas.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===============================
   ACCORDION CATEGORY FILTER STYLES
   =============================== */

/* Accordion Filter Group */
.accordion-filter-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Filter Accordion Items */
.filter-accordion-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.filter-accordion-item:hover {
    border-color: #dee2e6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-accordion-item.active {
    border-color: #2196f3;
    background: #e3f2fd;
}

/* Accordion Header */
.filter-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.filter-accordion-header:hover {
    background: rgba(0, 0, 0, 0.02);
}

.filter-accordion-header.expanded {
    background: rgba(33, 150, 243, 0.05);
}

.filter-accordion-item.active .filter-accordion-header {
    background: transparent;
}

/* Main Content (Name + Count) */
.filter-main-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.filter-name {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.filter-accordion-item.active .filter-name {
    color: #1976d2;
    font-weight: 600;
}

.filter-count {
    background: #e9ecef;
    color: #6c757d;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.filter-accordion-item.active .filter-count {
    background: #2196f3;
    color: white;
}

/* Toggle Icon */
.toggle-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: all 0.2s ease;
    cursor: pointer;
    border-radius: 50%;
    margin-left: 8px;
}

.toggle-icon:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #495057;
}

.toggle-icon i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.filter-accordion-header.expanded .toggle-icon i {
    transform: rotate(180deg);
}

/* Accordion Content */
.filter-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafbfc;
    border-top: 1px solid #e9ecef;
}

.filter-accordion-content.expanded {
    max-height: 200px; /* Will be set dynamically by JS */
}

/* Sub Items */
.filter-sub-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px 10px 32px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.filter-sub-item:last-child {
    border-bottom: none;
}

.filter-sub-item:hover {
    background: #f0f4f8;
}

.filter-sub-item.active {
    background: #e8f5e8;
    color: #2e7d32;
}

.filter-sub-item .filter-name {
    font-weight: 400;
    font-size: 0.85rem;
    color: #495057;
}

.filter-sub-item.active .filter-name {
    color: #2e7d32;
    font-weight: 500;
}

.filter-sub-item .filter-count {
    font-size: 0.7rem;
    padding: 3px 6px;
}

.filter-sub-item.active .filter-count {
    background: #4caf50;
    color: white;
}

/* Loading State */
.spinner-border-sm {
    color: #2196f3;
}

/* Legacy Filter Support */
.filter-item {
    position: relative;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    transition: all 0.2s ease;
    overflow: hidden;
    margin-bottom: 2px;
}

.filter-item:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
}

.filter-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-item label {
    display: block;
    padding: 12px 16px;
    cursor: pointer;
    margin: 0;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.2s ease;
    position: relative;
    font-size: 0.95rem;
}

.filter-item label:hover {
    background: rgba(52, 152, 219, 0.05);
}

.filter-item input[type="checkbox"]:checked + label {
    background: #e3f2fd;
    color: #1976d2;
    font-weight: 600;
}

.filter-item input[type="checkbox"]:checked + label::before {
    content: "✓";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #2196f3;
    font-weight: bold;
}

.filter-item .count {
    float: right;
    background: #e9ecef;
    color: #6c757d;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

.filter-item input[type="checkbox"]:checked + label .count {
    background: #2196f3;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-accordion-header {
        padding: 10px 14px;
    }
    
    .filter-sub-item {
        padding: 8px 14px 8px 28px;
    }
    
    .filter-name {
        font-size: 0.9rem;
    }
    
    .filter-sub-item .filter-name {
        font-size: 0.8rem;
    }
    
    .filter-count {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .toggle-icon {
        width: 20px;
        height: 20px;
        margin-left: 4px;
    }
    
    .filter-item label {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .accordion-filter-group {
        gap: 1px;
    }
    
    .filter-accordion-item {
        border-radius: 4px;
    }
    
    .filter-accordion-header {
        padding: 9px 12px;
    }
    
    .filter-sub-item {
        padding: 7px 12px 7px 24px;
    }
    
    .filter-main-content {
        gap: 8px;
    }
    
    .filter-item {
        border-radius: 4px;
        margin-bottom: 1px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .filter-accordion-item {
        background: #2c3e50;
        border-color: #34495e;
    }
    
    .filter-accordion-item.active {
        background: #1e3a5f;
        border-color: #2196f3;
    }
    
    .filter-name {
        color: #ecf0f1;
    }
    
    .filter-accordion-item.active .filter-name {
        color: #64b5f6;
    }
    
    .filter-accordion-content {
        background: #34495e;
        border-top-color: #4a5568;
    }
    
    .filter-sub-item {
        border-bottom-color: #4a5568;
    }
    
    .filter-sub-item:hover {
        background: #3d4e5e;
    }
    
    .filter-sub-item.active {
        background: #2d5a3d;
        color: #81c784;
    }
    
    .toggle-icon {
        color: #bdc3c7;
    }
    
    .toggle-icon:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #ecf0f1;
    }
    
    .filter-item {
        background: #2c3e50;
        border-color: #34495e;
    }
    
    .filter-item label {
        color: #ecf0f1;
    }
    
    .filter-item:hover {
        background: #34495e;
    }
}

/* ===============================
   EXISTING SAVED ITEMS STYLES
   =============================== */

/* Saved Items Section */
.recommended-products {
    margin-top: 3rem;
}

.recommended-products .section-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 12px;
    margin-bottom: 30px;
    position: relative;
}

.recommended-products .section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

/* Modern Card Design */
.saved-item-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.saved-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(52, 152, 219, 0.2);
}

/* Image Container */
.card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.card-image-wrapper .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.saved-item-card:hover .product-image {
    transform: scale(1.08);
}

/* Action Buttons Overlay */
.card-actions-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.saved-item-card:hover .card-actions-overlay {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.remove-btn:hover {
    background: #e74c3c;
    color: white;
}

.view-btn:hover {
    background: #3498db;
    color: white;
}

/* Badges */
.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    z-index: 2;
}

.discount-badge .discount-text {
    display: block;
}



.stock-status.out-of-stock {
    background: rgba(231, 76, 60, 0.9);
}

.stock-text {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Card Content */
.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 220px);
}

.product-details {
    flex-grow: 1;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
    transition: color 0.3s ease;
}

.product-name:hover {
    color: #3498db;
}

/* Rating Section */
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars-container {
    display: flex;
    gap: 2px;
}

.stars-container .fas,
.stars-container .far {
    color: #f39c12;
    font-size: 0.85rem;
}

.rating-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.85rem;
}

.review-count {
    color: #7f8c8d;
    font-size: 0.75rem;
}

/* Price Container */
.price-container {
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 5px;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #27ae60;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.original-price {
    font-size: 0.9rem;
    color: #95a5a6;
    text-decoration: line-through;
    font-weight: 500;
}

.savings {
    color: #e74c3c;
    font-size: 0.8rem;
    font-weight: 600;
    font-style: italic;
}

/* Card Footer */
.card-footer {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: auto;
}

.btn-add-cart {
    flex: 1;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-cart:hover:not(.disabled) {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.btn-add-cart.disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.btn-view-details {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid #3498db;
    border-radius: 50%;
    color: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-view-details:hover {
    background: #3498db;
    color: white;
    transform: scale(1.05);
    text-decoration: none;
}

/* Empty State */
#empty-saved-items {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

#empty-saved-items .empty-state-icon {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 20px;
}

#empty-saved-items h5 {
    color: #7f8c8d;
    font-weight: 600;
    margin-bottom: 10px;
}

#empty-saved-items p {
    color: #95a5a6;
    margin-bottom: 25px;
}

/* Action Buttons */
#saved-items-actions {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #ecf0f1;
}

#saved-items-actions .btn {
    border-radius: 30px;
    font-weight: 600;
    padding: 12px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-add-all-to-cart {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-color: transparent;
    color: white;
}

.btn-add-all-to-cart:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.btn-clear-saved-items {
    background: white;
    border: 2px solid #e74c3c;
    color: #e74c3c;
}

.btn-clear-saved-items:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

/* Loading States */
.btn-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading .fas.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .saved-item-card .card-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .saved-item-card .card-image-wrapper {
        height: 180px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .product-name {
        font-size: 0.9rem;
    }
    
    .current-price {
        font-size: 1.1rem;
    }
    
    .action-btn {
        width: 35px;
        height: 35px;
    }
    
    .card-actions-overlay {
        top: 10px;
        right: 10px;
    }
    
    #saved-items-actions .btn {
        width: 100%;
        margin-bottom: 10px;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .card-footer {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-view-details {
        width: 100%;
        border-radius: 25px;
    }
    
    .saved-item-card .card-image-wrapper {
        height: 160px;
    }
    
    .recommended-products .section-title {
        font-size: 1.3rem;
    }
}

/* Animation for item removal */
.saved-item-removing {
    animation: slideOutRight 0.4s ease-out forwards;
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(20px) scale(0.9);
        opacity: 0.5;
    }
    100% {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
}

/* Success state animation */
.saved-item-card.adding-to-cart {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Shop page responsive */
@media (max-width: 991px) {
    .shop-sidebar {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .shop-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .products-grid.list-view .deal-item {
        flex-direction: column;
        text-align: center;
    }
    
    .products-grid.list-view .product-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .view-mode {
        justify-content: center;
    }
    
    .deal-item .product-overlay {
        display: none; /* Hide overlay actions on mobile */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-progress {
        margin: 0 1rem 2rem;
    }
    
    .progress-step {
        margin: 0 1rem;
    }
    
    .progress-step:not(:last-child)::after {
        width: 2rem;
    }
    
    .checkout-title {
        font-size: 2rem;
    }
    
    .section-content {
        padding: 1rem;
    }
    
    .order-summary {
        margin-top: 2rem;
    }
}
  
/* About Page Styles */
.about-page {
    padding-top: 0;
}

.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero .hero-content {
    padding-right: 2rem;
}

.about-hero .stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-hero .stat-item {
    text-align: center;
}

.about-hero .stat-item h3 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: bold;
}

.about-hero .stat-item span {
    color: #666;
    font-size: 0.9rem;
}

.about-hero .hero-image {
    position: relative;
}

.about-hero .floating-card {
    position: absolute;
    bottom: -20px;
    right: 20px;
    z-index: 2;
}

.section-title {
    color: var(--bh-dark);
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Story Timeline */
.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bh-red);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--bh-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.timeline-content h5 {
    color: var(--bh-red);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Value Cards */
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--bh-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h4 {
    color: var(--bh-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Feature List */
.feature-list .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-list .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--bh-red);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h5 {
    color: var(--bh-dark);
    margin-bottom: 0.5rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--bh-red);
    line-height: 1;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-info h5 {
    color: var(--bh-dark);
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bh-red) 0%, #c41e3a 100%);
}

.cta-section h2 {
    font-weight: bold;
}

/* Key Points */
.key-points .point-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.key-points .point-item:last-child {
    margin-bottom: 0;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 40px 0;
    }
    
    .about-hero .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .about-hero .stats-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .about-hero .floating-card {
        position: static;
        margin-top: 1rem;
    }
    
    .story-timeline {
        padding-left: 1rem;
    }
    
    .story-timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .timeline-marker {
        left: -1rem;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-list .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-list .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .cta-section .col-lg-4 {
        margin-top: 2rem;
        text-align: center;
    }
    
    .cta-section .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }
}