@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;
            z-index: 1300; /* Higher than main nav */
        }

        .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: 220px;
            border: none;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            border-radius: 12px;
            padding: 10px 0;
            margin-top: 8px;
            position: absolute !important;
            top: calc(100% + 5px) !important;
            right: 0 !important;
            left: auto !important;
            z-index: 1050 !important;
            background: white;
            text-align: left !important;
        }

        /* Hide dropdown by default - let Bootstrap handle show/hide */
        .user-dropdown:not(.show) {
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        /* Show dropdown when Bootstrap shows it */
        .user-dropdown.show {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transition: all 0.3s ease;
        }

        /* Override Bootstrap dropdown alignment */
        .user-dropdown.dropdown-menu {
            text-align: left !important;
        }

        /* Dropdown parent positioning */
        .user-account .dropdown {
            position: relative;
        }

        .user-account .dropdown-menu {
            position: absolute !important;
            top: calc(100% + 5px) !important;
            right: 0 !important;
            left: auto !important;
            margin-top: 0 !important;
            z-index: 1050 !important;
        }

        .user-dropdown .dropdown-item {
            padding: 12px 20px !important;
            font-size: 14px;
            display: flex !important;
            align-items: center;
            justify-content: flex-start !important; /* Force left align the content */
            gap: 12px;
            transition: all 0.3s ease;
            color: #333;
            text-decoration: none;
            text-align: left !important; /* Force text left alignment */
            width: 100%;
            margin: 0 !important; /* Remove any default margins */
        }

        /* Additional override for Bootstrap dropdown items */
        .dropdown-menu .dropdown-item {
            text-align: left !important;
            justify-content: flex-start !important;
        }

        /* Specific override for user dropdown items */
        .user-dropdown.dropdown-menu .dropdown-item {
            text-align: left !important;
            justify-content: flex-start !important;
            display: flex !important;
            align-items: center !important;
        }

        /* Target the li elements containing dropdown items */
        .user-dropdown li {
            text-align: left !important;
            width: 100%;
        }

        /* Target the dropdown menu ul element */
        .user-dropdown.dropdown-menu {
            text-align: left !important;
            padding-left: 0 !important;
        }

        /* Force all content in user dropdown to be left-aligned */
        .user-dropdown,
        .user-dropdown * {
            text-align: left !important;
            justify-content: flex-start !important;
        }

        .user-dropdown .dropdown-item:hover {
            background: var(--bh-light-gray);
            padding-left: 25px !important; /* Maintain left-aligned indentation on hover */
            color: var(--bh-red);
            text-align: left !important; /* Force text to stay left-aligned on hover */
            justify-content: flex-start !important;
        }

        .user-dropdown .dropdown-item i {
            width: 16px;
            font-size: 14px;
            color: var(--bh-red);
            transition: all 0.3s ease;
            flex-shrink: 0; /* Prevent icon from shrinking */
            text-align: center; /* Center the icon within its container */
        }

        .user-dropdown .dropdown-item:hover i {
            transform: translateX(3px);
        }

        .user-dropdown .dropdown-item.text-danger i {
            color: #dc3545;
        }

        .user-dropdown .dropdown-item.text-danger:hover {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
        }

        .user-dropdown .dropdown-divider {
            margin: 8px 0;
            border-color: #f0f0f0;
        }

        /* Dropdown interaction improvements */
        .user-account .dropdown-toggle::after {
            display: none; /* Hide Bootstrap arrow */
        }

        .user-account .dropdown-toggle {
            border: none;
            background: none;
            padding: 0;
            outline: none;
            box-shadow: none;
        }

        .user-account .dropdown-toggle:focus {
            box-shadow: none;
        }

        /* Prevent dropdown close on internal clicks */
        .user-dropdown .dropdown-item {
            cursor: pointer;
        }

        /* Add smooth transitions */
        .user-dropdown {
            transition: opacity 0.2s ease, transform 0.2s ease;
            opacity: 0;
            transform: translateY(-10px);
        }

        /* Comprehensive Bootstrap override for dropdown alignment */
        .user-account .dropdown-menu.user-dropdown,
        .user-account .dropdown-menu.user-dropdown li,
        .user-account .dropdown-menu.user-dropdown .dropdown-item {
            text-align: left !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 20px !important;
            justify-content: flex-start !important;
            align-items: center !important;
            display: flex !important;
        }

        /* Remove any center alignment that might be inherited */
        .user-dropdown,
        .user-dropdown li,
        .user-dropdown .dropdown-item,
        .dropdown-menu.user-dropdown,
        .dropdown-menu.user-dropdown li,
        .dropdown-menu.user-dropdown .dropdown-item {
            text-align: left !important;
            justify-content: flex-start !important;
            margin: 0 !important;
        }

        /* Account Page Styles */
        .account-page {
            background-color: #f8f9fa;
            min-height: 80vh;
        }

        .account-header {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .account-avatar img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border: 3px solid var(--bh-red);
        }

        .account-name {
            color: #333;
            font-weight: 600;
        }

        .account-stats {
            text-align: center;
        }

        .stat-item {
            display: inline-block;
            margin: 0 1rem;
        }

        .stat-number {
            display: block;
            font-size: 1.5rem;
            color: var(--bh-red);
            font-weight: bold;
        }

        /* Account Navigation Tabs */
        .account-tabs-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .account-nav-tabs {
            border-bottom: 2px solid #f1f1f1;
            padding: 0 2rem;
            margin-bottom: 0;
        }

        .account-nav-tabs .nav-link {
            border: none;
            border-radius: 0;
            padding: 1.25rem 1.5rem;
            color: #666;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .account-nav-tabs .nav-link:hover {
            border-color: transparent;
            color: var(--bh-red);
            background-color: rgba(227, 30, 36, 0.05);
        }

        .account-nav-tabs .nav-link.active {
            color: var(--bh-red);
            background-color: transparent;
            border-color: transparent;
            font-weight: 600;
        }

        .account-nav-tabs .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--bh-red);
            border-radius: 2px 2px 0 0;
        }

        /* Account Tab Content */
        .account-tab-content {
            padding: 2rem;
        }

        .account-card {
            background: white;
            border: none;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            margin-bottom: 1.5rem;
        }

        .account-card .card-header {
            background: white;
            border-bottom: 2px solid #f1f1f1;
            border-radius: 12px 12px 0 0;
            padding: 1.25rem 1.5rem;
        }

        .account-card .card-header h5 {
            color: #333;
            font-weight: 600;
            margin-bottom: 0;
        }

        .account-card .card-body {
            padding: 1.5rem;
        }

        /* Profile Section */
        .profile-image-container {
            position: relative;
            display: inline-block;
        }

        .profile-image {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 4px solid var(--bh-red);
            transition: all 0.3s ease;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 50%;
            cursor: pointer;
        }

        .profile-image-container:hover .image-overlay {
            opacity: 1;
        }

        .image-overlay i {
            color: white;
            font-size: 1.5rem;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid #f1f1f1;
        }

        .summary-item:last-child {
            border-bottom: none;
        }

        .summary-label {
            color: #666;
            font-weight: 500;
        }

        .summary-value {
            color: #333;
            font-weight: 600;
        }

        /* Orders Section */
        .order-item {
            padding: 1.5rem;
            border-bottom: 1px solid #f1f1f1;
            transition: background-color 0.3s ease;
        }

        .order-item:hover {
            background-color: #f8f9fa;
        }

        .order-item:last-child {
            border-bottom: none;
        }

        .order-image img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
        }

        .order-title {
            color: #333;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .order-details {
            font-size: 0.9rem;
        }

        .order-status {
            font-size: 0.8rem;
            padding: 0.375rem 0.75rem;
        }

        .order-price {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--bh-red);
        }

        .order-actions .btn {
            margin: 0 0.125rem;
        }

        /* Wishlist Section */
        .wishlist-item {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .wishlist-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .wishlist-image {
            position: relative;
            overflow: hidden;
        }

        .wishlist-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .wishlist-item:hover .wishlist-image img {
            transform: scale(1.05);
        }

        .btn-remove-wishlist {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(220, 53, 69, 0.9);
            color: white;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .wishlist-item:hover .btn-remove-wishlist {
            opacity: 1;
        }

        .wishlist-title {
            color: #333;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .wishlist-price {
            margin-bottom: 1rem;
        }

        .current-price {
            color: var(--bh-red);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .original-price {
            color: #999;
            text-decoration: line-through;
            margin-left: 0.5rem;
        }

        .wishlist-actions {
            display: flex;
            gap: 0.5rem;
        }

        /* Settings Section */
        .notification-setting {
            padding: 1rem 0;
            border-bottom: 1px solid #f1f1f1;
        }

        .notification-setting:last-child {
            border-bottom: none;
        }

        .form-check-label {
            font-weight: 500;
            color: #333;
        }

        .account-action {
            padding: 1rem 0;
            border-bottom: 1px solid #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .account-action:last-child {
            border-bottom: none;
        }

        /* Form Styles */
        .form-label {
            color: #333;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--bh-red);
            box-shadow: 0 0 0 0.2rem rgba(227, 30, 36, 0.1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .account-header {
                padding: 1.5rem;
                text-align: center;
            }

            .account-nav-tabs {
                padding: 0 1rem;
            }

            .account-nav-tabs .nav-link {
                padding: 1rem 0.75rem;
                font-size: 0.9rem;
            }

            .account-tab-content {
                padding: 1rem;
            }

            .account-card .card-header,
            .account-card .card-body {
                padding: 1rem;
            }

            .stat-item {
                margin: 0.5rem;
            }

            .order-item {
                padding: 1rem;
            }

            .order-actions {
                margin-top: 1rem;
            }
        }

        @media (max-width: 576px) {
            .account-nav-tabs .nav-link {
                padding: 0.75rem 0.5rem;
                font-size: 0.8rem;
            }

            .account-nav-tabs .nav-link i {
                display: none;
            }

            .profile-image {
                width: 120px;
                height: 120px;
            }

            .account-action {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
        }

        /* 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 - Responsive Container */
        .main-nav {
            background-color: var(--bh-green);
            padding: 0;
            height: auto;
            min-height: 50px;
            z-index: 1200; /* Lower than user dropdown */
            position: relative;
        }

        .main-nav .container {
            max-width: 100%;
            padding-left: 15px;
            padding-right: 15px;
        }

        .main-nav .navbar-nav {
            position: static;
            transition: opacity 0.3s ease;
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
            width: 100%;
            justify-content: space-between;
        }

        /* Ensure nav items don't shrink too much but can wrap */
        .main-nav .nav-item {
            flex-shrink: 1;
            white-space: nowrap;
        }

        .main-nav .nav-link {
            padding: 12px 16px !important; /* Slightly reduced padding to fit more items */
            font-size: 14px;
            white-space: nowrap;
        }

        .main-nav .nav-item.dropdown {
            position: static;
        }

        /* Prevent nav dropdown interference */
        .main-nav .dropdown-menu {
            z-index: 1250 !important; /* Lower than user dropdown but higher than nav */
        }

        .navbar-nav .nav-link {
            color: white !important;
            padding: 15px 20px !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            font-size: 14px;
        }

        /* Responsive navigation adjustments */
        @media (max-width: 1400px) {
            .main-nav .nav-link {
                padding: 12px 14px !important;
                font-size: 13px;
            }
        }

        @media (max-width: 1200px) {
            .main-nav .nav-link {
                padding: 12px 12px !important;
                font-size: 12px;
            }
        }

        @media (max-width: 1024px) {
            .main-nav .nav-link {
                padding: 12px 8px !important;
                font-size: 11px;
            }
        }

        /* Force wrapping when absolutely necessary */
        @media (max-width: 992px) {
            .main-nav .navbar-nav {
                flex-wrap: wrap !important;
            }
            
            .main-nav .nav-item {
                flex: 0 0 auto;
            }
            
            .main-nav .nav-link {
                padding: 10px 8px !important;
                font-size: 11px;
            }
        }

        .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;
                font-size: 14px;
                color: white !important;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: rgba(255,255,255,0.15);
                padding-left: 25px !important;
                color: white !important;
            }
            
            .navbar-nav .nav-item:last-child .nav-link {
                border-bottom: none;
            }
            
            /* Hide mega menu on mobile */
            .dropdown-menu.mega-menu {
                display: none !important;
            }
            
            /* Show mobile dropdown instead - only for mobile navigation items */
            .d-lg-none .dropdown-menu {
                display: none !important;
                background-color: white !important;
                border: 2px solid #e9ecef !important;
                box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
                margin: 5px 15px !important;
                border-radius: 8px !important;
                padding: 10px 0 !important;
                position: static !important;
                width: calc(100% - 30px) !important;
                animation: slideDown 0.3s ease !important;
                overflow: hidden !important;
            }
            
            .d-lg-none.show .dropdown-menu,
            .d-lg-none .dropdown-menu.show {
                display: block !important;
            }
            
            /* Mobile dropdown items */
            .d-lg-none .dropdown-menu .dropdown-item {
                padding: 15px 25px !important;
                color: #333 !important;
                border-bottom: 1px solid rgba(0,0,0,0.08) !important;
                font-size: 15px !important;
                font-weight: 500 !important;
                text-decoration: none !important;
                display: block !important;
                transition: all 0.3s ease !important;
                background: transparent !important;
                margin: 0 !important;
                border-radius: 0 !important;
            }
            
            .d-lg-none .dropdown-menu .dropdown-item:first-child {
                font-weight: 700 !important;
                color: var(--bh-red) !important;
                background-color: rgba(227, 30, 36, 0.05) !important;
            }
            
            .d-lg-none .dropdown-menu .dropdown-item:hover {
                background-color: rgba(227, 30, 36, 0.1) !important;
                color: var(--bh-red) !important;
                padding-left: 30px !important;
                transform: translateX(5px) !important;
            }
            
            .d-lg-none .dropdown-menu .dropdown-item:last-child {
                border-bottom: none !important;
            }
            
            /* Mobile dropdown toggle icon */
            .d-lg-none .nav-link::after {
                content: '\f107' !important;
                font-family: 'Font Awesome 6 Free' !important;
                font-weight: 900 !important;
                float: right !important;
                margin-top: 2px !important;
                transition: transform 0.3s ease !important;
                color: white !important;
                font-size: 12px !important;
            }
            
            .d-lg-none.show .nav-link::after {
                transform: rotate(180deg) !important;
            }
            
            /* Slide down animation for mobile dropdowns */
            @keyframes slideDown {
                from { 
                    opacity: 0; 
                    transform: translateY(-15px); 
                    max-height: 0;
                }
                to { 
                    opacity: 1; 
                    transform: translateY(0); 
                    max-height: 500px;
                }
            }
        }

        @media (max-width: 576px) {
            .navbar-nav .nav-link {
                padding: 10px 15px !important;
                font-size: 12px;
            }
            
            .navbar-nav .nav-link:hover {
                padding-left: 20px !important;
            }

            /* Mobile user dropdown adjustments */
            .user-dropdown {
                min-width: 160px;
            }
            
            /* Smaller mobile dropdowns */
            .nav-item.dropdown .dropdown-menu {
                margin-left: 15px;
                margin-right: 15px;
            }
            
            .nav-item.dropdown .dropdown-menu .dropdown-item {
                padding: 8px 15px;
                font-size: 12px;
            }

            .user-dropdown .dropdown-item {
                padding: 10px 15px;
                font-size: 13px;
                gap: 10px;
                text-align: left; /* Maintain left alignment on mobile */
                justify-content: flex-start; /* Ensure left alignment */
            }

            .account-link {
                gap: 6px;
            }

            .user-avatar {
                width: 28px;
                height: 28px;
            }

            .user-avatar i {
                font-size: 16px;
            }

            .greeting-text {
                font-size: 11px;
            }

            .account-text {
                font-size: 9px;
            }
        }

        /* 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 Dropdown Styles */
        .dropdown-menu.mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100vw - 60px); /* Leave 30px margin on each side */
            max-width: 1300px;
            background-color: white !important;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            z-index: 1000;
            padding: 35px;
            border-radius: 0 0 12px 12px;
            margin-top: 8px; /* Small gap between navbar and menu */
            display: none; /* Hidden by default */
            opacity: 1 !important;
            border: none;
        }

        /* Extra wide screens - ensure mega menu doesn't get too wide */
        @media (min-width: 1600px) {
            .dropdown-menu.mega-menu {
                width: 1300px;
                max-width: 1300px;
            }
        }

        .dropdown-menu.mega-menu.show,
        .nav-item:hover .dropdown-menu.mega-menu {
            display: block !important;
      
        }

        .mega-menu .container-fluid {
            max-width: 1200px;
          
            margin: 0 auto;
            padding: 0 25px;
            width: 100%;
        }

        .mega-menu-content {
           padding: 50px;
            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: 17px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            line-height: 1.3;
            border-bottom: 2px solid var(--bh-red);
            padding-bottom: 8px;
            display: inline-block;
        }

        .menu-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 16px;
            margin-top: 15px;
            justify-content: flex-start;
        }

        .menu-links li {
            margin: 0;
        }

        .menu-links a {
            color: #555;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            line-height: 2.4;
            white-space: nowrap;
            padding: 40px 26px;
            border-radius: 8px;
        
            background-color: #ffffff;
            transition: all 0.3s ease;
          
            display: inline-block;
            min-width: 250px;
            text-align: center;
        }

        .menu-links a:hover {
            color: var(--bh-red);
            background-color: #fff5f5;
            border-color: #ffcdd2;
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        /* Horizontal links for popular items */
        .horizontal-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .horizontal-links li {
            margin: 0;
        }

        .horizontal-links a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            line-height: 1.5;
            white-space: nowrap;
        }

        .horizontal-links a:hover {
            color: var(--bh-red);
        }

        .sidebar-content {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
        }

        /* OLD MEGA MENU STYLES REMOVED - USING NEW HORIZONTAL LAYOUT ONLY */

        .subcategory-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .subcategory-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .subcategory-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #2c3e50;
            padding: 15px 10px;
            transition: all 0.3s ease;
            height: 100%;
            min-height: 120px;
        }

        .subcategory-link:hover {
            color: var(--bh-red);
            background-color: #fff5f5;
            transform: translateY(-2px);
        }

        /* Ensure subcategory names appear below images */
        .subcategory-item .subcategory-name {
            color: #2c3e50 !important;
            font-size: 13px !important;
            font-weight: 500 !important;
            line-height: 1.3 !important;
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            text-align: center !important;
            margin-top: 8px !important;
            margin-bottom: 0 !important;
            white-space: normal !important;
            overflow: visible !important;
            word-wrap: break-word !important;
            hyphens: auto !important;
        }

        .subcategory-link:hover .subcategory-name {
            color: var(--bh-red) !important;
        }

        /* Default (non-mega) subcategory image size - small icon style */
        .subcategory-image {
            width: 50px;
            height: 50px;
            margin-right: 12px;
            flex-shrink: 0;
            border-radius: 6px;
            overflow: hidden;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Horizontal flowing mega menu layout */
        .mega-menu .row {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: wrap !important;
            justify-content: flex-start !important;
            align-items: flex-start !important;
            gap: 12px !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        /* Individual cards that flow horizontally */
        .mega-menu .col-6,
        .mega-menu .col-md-4, 
        .mega-menu .col-lg-3 {
            flex: 0 0 auto !important;
            width: 180px !important;
            min-width: 180px !important;
            max-width: 180px !important;
            padding: 0 !important;
            margin: 0 !important;
        }


        /* Each subcategory item as individual card (image on top layout) */
        .mega-menu .subcategory-item {
            background: white !important;
            border: 1px solid #e9ecef !important;
            border-radius: 8px !important;
            overflow: hidden !important;
            transition: all 0.3s ease !important;
            width: 100% !important;
            margin: 0 !important;
            display: flex !important;
            flex-direction: column !important;
            /* allow height to grow based on content so image can sit on top */
            height: auto !important;
            padding: 0 !important;
        }

        .mega-menu .subcategory-item:hover {
            border-color: var(--bh-red) !important;
            box-shadow: 0 4px 12px rgba(227, 30, 36, 0.15) !important;
            transform: translateY(-3px) !important;
        }

        /* Mega menu container for horizontal flow */
        .dropdown-menu.mega-menu {
            min-width: 900px !important;
            max-width: 1400px !important;
            width: calc(100vw - 60px) !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            padding: 35px !important;
            margin-top: 8px !important;
            border-radius: 0 0 12px 12px !important;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
            background-color: #ffffff !important;
            background: #ffffff !important;
            opacity: 1 !important;
            border: none !important;
        }

        .mega-menu .container-fluid {
            width: 100% !important;
            max-width: none !important;
            padding: 0 !important;
        }

        /* Make subcategory image span the top of the card to increase visibility and act as a rounded banner */
        .mega-menu .subcategory-image {
            width: 100% !important;
            height: 90px !important;
            margin: 0 !important;
            border-radius: 8px 8px 0 0 !important; /* rounded top corners */
            overflow: hidden !important;
            background: #f6f7f9 !important;
            display: block !important;
            position: relative !important; /* for overlay positioning */
        }

        .mega-menu .subcategory-image img {
            width: 100% !important;
            height: 100% !important;
            object-fit: contain !important;
            object-position: center !important;
            display: block !important;
            transition: transform 0.3s ease !important;
            border-radius: 8px 8px 0 0 !important; /* ensure image respects rounded corners */
        }

        /* Overlay banner sitting at the bottom of the image - improved visibility */
        .mega-menu .image-overlay {
            position: absolute !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            padding: 6px 8px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            background: rgba(0,0,0,0.9) !important;
            z-index: 100 !important;
            min-height: 25px !important;
            border-radius: 0 0 8px 8px !important;
        }

        .mega-menu .image-overlay .subcategory-name {
            color: #ffffff !important;
            font-size: 11px !important;
            font-weight: 800 !important;
            text-shadow: 0 1px 3px rgba(0,0,0,1) !important;
            margin: 0 !important;
            padding: 0 !important;
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            max-width: 100% !important;
            text-align: center !important;
            line-height: 1.1 !important;
            display: block !important;
            letter-spacing: 0.5px !important;
        }

        /* Allow subcategory names to show both in overlay and below as fallback */
        .mega-menu .subcategory-item .subcategory-name {
            display: block !important;
            color: #333 !important;
            font-size: 12px !important;
            text-align: center !important;
            padding: 8px 4px 4px 4px !important;
            margin: 0 !important;
        }

        .mega-menu-content {
            width: 100% !important;
        }

        .mega-menu-content .row {
            width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        /* Responsive horizontal flow */
        @media (max-width: 1200px) {
            .dropdown-menu.mega-menu {
                width: calc(100vw - 40px) !important;
                padding: 30px !important;
            }
            
            .mega-menu .col-6,
            .mega-menu .col-md-4, 
            .mega-menu .col-lg-3 {
                width: 160px !important;
                min-width: 160px !important;
                max-width: 160px !important;
            }
            
            .mega-menu .subcategory-item {
                /* keep auto height but slightly reduce image height */
                height: auto !important;
            }

            .mega-menu .subcategory-image {
                height: 80px !important;
            }
        }

        @media (max-width: 992px) {
            .mega-menu .row {
                gap: 10px !important;
            }
            
            .mega-menu .col-6,
            .mega-menu .col-md-4, 
            .mega-menu .col-lg-3 {
                width: 140px !important;
                min-width: 140px !important;
                max-width: 140px !important;
            }
            
            .mega-menu .subcategory-item {
                height: auto !important;
            }

            .mega-menu .subcategory-image {
                height: 70px !important;
            }
        }

        @media (max-width: 768px) {
            .mega-menu .col-6,
            .mega-menu .col-md-4, 
            .mega-menu .col-lg-3 {
                width: 120px !important;
                min-width: 120px !important;
                max-width: 120px !important;
            }
            
            .mega-menu .subcategory-item {
                height: auto !important;
            }

            .mega-menu .subcategory-image {
                height: 60px !important;
            }
        }

        /* (duplicate generic .subcategory-image removed; default defined earlier) */

        .subcategory-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .subcategory-item:hover .subcategory-image img {
            transform: scale(1.1);
        }

        .subcategory-name {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
            flex: 1;
            color: #333 !important;
            display: block !important;
            text-align: center !important;
            margin-top: 8px !important;
            visibility: visible !important;
        }

        /* Grid layout for subcategories */
        .mega-menu-content .row {
            --bs-gutter-x: 2rem;
        }

        .mega-menu-content .col-md-4 {
            padding: 0 1rem;
        }

        /* Category header in mega menu */
        .mega-menu-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e9ecef;
        }

        .mega-menu-title {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .mega-menu-subtitle {
            font-size: 14px;
            color: #6c757d;
            margin: 0;
        }

        /* Responsive adjustments for mega menu */
        @media (max-width: 1200px) {
            .mega-menu {
                max-width: 95vw;
                padding: 30px 20px;
            }

            .mega-menu .container-fluid {
                padding: 0 20px;
            }
        }

        @media (max-width: 992px) {
            .mega-menu-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .subcategory-image {
                width: 50px;
                height: 50px;
                margin-right: 12px;
            }

            .subcategory-name {
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .mega-menu {
                display: none !important;
            }

            .mega-menu-content {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        /* 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);
        }

        /* HORIZONTAL SUBCATEGORY LAYOUT - Complete Override */
        .mega-menu .subcategory-group {
            padding: 0 !important;
            background-color: transparent !important;
            border-radius: 0 !important;
            margin-bottom: 0 !important;
            display: block !important;
            width: 100% !important;
        }

        .subcategory-row {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: wrap !important;
            justify-content: flex-start !important;
            align-items: flex-start !important;
            gap: 15px !important;
            padding: 20px 0 !important;
            width: 100% !important;
            margin: 0 !important;
            box-sizing: border-box !important;
        }

        .subcategory-card {
            display: flex !important;
            flex-direction: column !important;
            width: 180px !important;
            height: 140px !important;
            min-width: 180px !important;
            max-width: 180px !important;
            background: #ffffff !important;
            border: 2px solid #e9ecef !important;
            border-radius: 8px !important;
            overflow: hidden !important;
            transition: all 0.3s ease !important;
            margin: 0 !important;
            padding: 0 !important;
            flex-shrink: 0 !important;
            flex-grow: 0 !important;
            box-sizing: border-box !important;
        }

        .subcategory-card:hover {
            border-color: var(--bh-red) !important;
            transform: translateY(-3px) !important;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
        }

        .subcategory-card .subcategory-link {
            display: flex !important;
            flex-direction: column !important;
            text-decoration: none !important;
            color: inherit !important;
            height: 100% !important;
            width: 100% !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        .subcategory-content {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            padding: 20px 15px !important;
            height: 100% !important;
            text-align: center !important;
            flex: 1 !important;
        }

        .subcategory-card .subcategory-icon {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: 40px !important;
            height: 40px !important;
            background: #f8f9fa !important;
            border-radius: 50% !important;
            margin-bottom: 12px !important;
            transition: all 0.3s ease !important;
            flex-shrink: 0 !important;
        }

        .subcategory-card .subcategory-icon i {
            font-size: 18px !important;
            color: #6c757d !important;
            transition: color 0.3s ease !important;
        }

        .subcategory-card:hover .subcategory-icon {
            background: var(--bh-red) !important;
        }

        .subcategory-card:hover .subcategory-icon i {
            color: white !important;
        }

        .subcategory-card .subcategory-name {
            font-size: 13px !important;
            font-weight: 600 !important;
            color: #333 !important;
            line-height: 1.3 !important;
            text-align: center !important;
            transition: color 0.3s ease !important;
            margin: 0 !important;
            padding: 0 !important;
            display: block !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .subcategory-card:hover .subcategory-name {
            color: var(--bh-red) !important;
        }

        /* Ensure mega menu container doesn't constrain the layout */
        .dropdown-menu.mega-menu {
            min-width: 1500px !important;
            max-width: 1600px !important;
            width: auto !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            padding: 30px !important;
        }

        .mega-menu .container-fluid {
            width: 100% !important;
            max-width: none !important;
            padding: 0 !important;
        }

        .mega-menu-content {
            width: 100% !important;
        }

        /* Reset any interfering Bootstrap column styles */
        .mega-menu .col-md-12 {
            padding-left: 0 !important;
            padding-right: 0 !important;
            width: 100% !important;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .subcategory-card {
                width: 160px !important;
                height: 120px !important;
                min-width: 160px !important;
                max-width: 160px !important;
            }
            
            .dropdown-menu.mega-menu {
                min-width: 800px !important;
                max-width: 1100px !important;
            }
        }

        @media (max-width: 992px) {
            .subcategory-row {
                justify-content: center !important;
                gap: 12px !important;
            }
            
            .subcategory-card {
                width: 140px !important;
                height: 100px !important;
                min-width: 140px !important;
                max-width: 140px !important;
            }
            
            .subcategory-content {
                padding: 15px 10px !important;
            }
            
            .subcategory-card .subcategory-name {
                font-size: 12px !important;
            }

            .subcategory-card .subcategory-icon {
                width: 35px !important;
                height: 35px !important;
            }

            .subcategory-card .subcategory-icon i {
                font-size: 16px !important;
            }
        }

        @media (max-width: 768px) {
            .subcategory-card {
                width: 120px !important;
                height: 90px !important;
                min-width: 120px !important;
                max-width: 120px !important;
            }
            
            .subcategory-card .subcategory-name {
                font-size: 11px !important;
            }
        }

        .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);
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .category-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            text-decoration: none;
            color: inherit;
        }

        .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: 1.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;
                text-decoration: none;
                color: inherit;
            }
            
            .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;
                text-decoration: none;
                color: inherit;
            }
            
            .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;
}

/* ===============================
   SHOP PAGE SKELETON LOADERS
   =============================== */

.skeleton-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: none !important;
}

.skeleton-image-wrapper {
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio */
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.skeleton-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.skeleton-text {
    width: 100%;
    height: 14px;
    border-radius: 4px;
}

.skeleton-button {
    width: 100%;
    height: 38px;
    border-radius: 25px;
}

.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;
    z-index: 2050;
    margin-top: 100px;
}

#quickViewModal .modal-body {
    padding: 2rem;
}

/* Custom Modal Overlay */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 5040;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.custom-modal-overlay.show {
    opacity: 1;
}

/* Prevent background scrolling when modal is open */
body.modal-no-scroll {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

/* 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: #1e7e34 !important;
    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 !important;
    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: #1E3A5F !important;
    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;
    background-color: #fff;
    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%;
    }
}

/* ===== CHECKOUT PAGE AUTHENTICATION STYLES ===== */

/* Modal Auth Forms */
.modal .auth-form {
    display: none;
}

.modal .auth-form.active {
    display: block;
}

.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    padding: 2rem 2rem 0;
}

.modal-body {
    padding: 2rem;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Checkout authentication status */
#checkout-user-status {
    border-left: 4px solid #28a745;
    background-color: #f8f9fa;
}

.guest-checkout-info {
    border-left: 4px solid #17a2b8;
    background-color: #f8f9fa;
}

/* Auto-filled field styling */
input[readonly] {
    background-color: #f8f9fa !important;
    border-color: #e9ecef !important;
}

/* Additional checkout page styles */
.checkout-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.checkout-form {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.checkout-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.checkout-section:last-child {
    border-bottom: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.25rem;
}

.checkout-progress {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6c757d;
}

.progress-step.active {
    color: #007bff;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.progress-step.active .step-number {
    background: #007bff;
    color: white;
}

/* Order Tracking Modal Styles */
.tracking-timeline {
    position: relative;
    padding-left: 2rem;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #6c757d;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline-item.completed .timeline-icon {
    background: #28a745;
    color: white;
}

.timeline-item.active .timeline-icon {
    background: #007bff;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.timeline-content h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #2c3e50;
}

.timeline-item.completed .timeline-content h6 {
    color: #28a745;
}

.timeline-item.active .timeline-content h6 {
    color: #007bff;
}

/* Enhanced Orders Tab Styles */
.order-summary-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #e9ecef;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

/* Simple Mega Menu Styles */
.simple-menu-content {
    padding: 2rem 1rem;
}

.simple-menu-content .menu-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
    font-size: 1rem;
}

.simple-menu-content .menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-menu-content .menu-links li {
    margin-bottom: 0.5rem;
}

.simple-menu-content .menu-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: block;
    padding: 0.25rem 0;
}

.simple-menu-content .menu-links a:hover {
    color: #007bff;
    text-decoration: none;
    padding-left: 0.5rem;
}

@media (max-width: 991.98px) {
    .simple-menu-content {
        padding: 1rem 0.5rem;
    }
    
    .simple-menu-content .col-md-3 {
        margin-bottom: 1.5rem;
    }
}

.order-summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.summary-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.25rem;
}

.order-summary-card h6 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.orders-loading,
.no-orders {
    padding: 3rem 1rem;
}

.orders-loading .spinner-border {
    width: 3rem;
    height: 3rem;
}

.no-orders i {
    font-size: 4rem;
    opacity: 0.5;
}

.order-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid #e9ecef;
}

.order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left-color: #007bff;
}

.order-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.order-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1rem;
}

.order-details {
    margin: 0;
    color: #6c757d;
    font-weight: 500;
}


.order-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
}

.order-actions {
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.order-actions .d-flex {
    gap: 6px;
}

.order-actions .btn {
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.4rem 0.5rem;
    white-space: nowrap;
    border-width: 1.5px;
    transition: all 0.3s ease;
    height: 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 4px;
    line-height: 1;
}

.order-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.order-actions .btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.order-actions .btn i {
    font-size: 0.7rem;
    margin-right: 4px;
}

.order-actions .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-color: #007bff;
    color: white;
}

.order-actions .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    border-color: #0056b3;
    color: white;
}

.order-actions .btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
    background-color: #f8f9ff;
}

.order-actions .btn-outline-primary:hover {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-color: #007bff;
    color: white;
}

.order-actions .btn-outline-success {
    color: #28a745;
    border-color: #28a745;
    background-color: #f0fff4;
}

.order-actions .btn-outline-success:hover {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border-color: #28a745;
    color: white;
}

.order-actions .btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
    background-color: #fff5f5;
}

.order-actions .btn-outline-danger:hover {
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
    border-color: #dc3545;
    color: white;
}

.order-actions .btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
    background-color: #f8f9fa;
}

.order-actions .btn-outline-secondary:hover {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    border-color: #6c757d;
    color: white;
}

/* Order Status Badges */
.order-status.badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input Group Styles for Orders */
.card-header .input-group {
    max-width: 250px;
}

.card-header .input-group .form-control {
    border-right: 0;
}

.card-header .input-group .btn {
    border-left: 0;
}

/* Pagination Styles */
.showing-info {
    font-size: 0.875rem;
}

.pagination-sm .page-link {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

/* Order Item Responsive */
@media (max-width: 768px) {
    .order-summary-card {
        margin-bottom: 1rem;
    }
    
    .summary-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 0.75rem;
    }
    
    .order-summary-card h6 {
        font-size: 1.25rem;
    }
    
    .order-item {
        padding: 1rem;
    }
    
    .order-image img {
        width: 60px;
        height: 60px;
    }
    
    .order-title {
        font-size: 0.9rem;
    }
    
    .order-price {
        font-size: 1rem;
    }
    
    .order-actions {
        margin-top: 1rem;
        min-width: 100%;
    }
}
#orderDetailsModal{
    z-index: 10050;
}

/* Order Details Modal Styles */
#orderDetailsModal .modal-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
}

#orderDetailsModal .modal-title {
    color: #2c3e50;
    font-weight: 700;
}

#orderDetailsModal .text-primary {
    color: #007bff !important;
    font-weight: 600;
}

#orderDetailsModal .table th {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    font-weight: 600;
    color: #495057;
}

#orderDetailsModal .table td {
    vertical-align: middle;
    border-color: #dee2e6;
}

#orderDetailsModal .table-primary th {
    background-color: #007bff;
    color: white;
    font-weight: 700;
}

#orderDetailsModal .alert-light {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
    border-left: 4px solid #007bff;
}

#orderDetailsModal .modal-footer .btn {
    min-width: 120px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    }
    
    .order-actions .action-row {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .order-actions .btn {
        width: 100%;
        min-width: 100%;
    }
    
    .card-header .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .card-header .input-group {
        max-width: 100%;
    }


/* Tracking Timeline Styles */
.tracking-timeline {
    position: relative;
    padding: 20px 0;
}

/* Blog Styles */
.blog-main .section-title {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.blog-main .section-subtitle {
    margin-bottom: 1.5rem;
}

.blog-post-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(18, 38, 63, 0.06);
    overflow: hidden;
    margin-bottom: 1.25rem;
    display: flex;
}

.blog-post-card .post-image {
    width: 180px;
    height: 140px;
    object-fit: cover;
}

.blog-post-card .post-body {
    padding: 16px;
    flex: 1 1 auto;
}

.blog-post-card .post-meta {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 6px;
}

.blog-post-card .post-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.blog-post-card .post-excerpt {
    color: #495057;
    font-size: 0.95rem;
}

.blog-sidebar {
    border-radius: 10px;
    background: #fff;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(18, 38, 63, 0.06);
}

@media (max-width: 767px) {
    .blog-post-card { flex-direction: column; }
    .blog-post-card .post-image { width: 100%; height: 200px; }
}

/* Blog Details Styles */
.blog-details .post-featured-image {
    max-height: 400px;
    overflow: hidden;
}

.blog-details .post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details .post-meta {
    color: #6c757d;
    font-size: 0.9rem;
}

.blog-details .meta-item {
    margin-right: 1rem;
}

.blog-details .meta-separator {
    margin: 0 0.5rem;
}

.blog-details .post-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #2c3e50;
}

.blog-details .post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.blog-details .post-content h1,
.blog-details .post-content h2,
.blog-details .post-content h3,
.blog-details .post-content h4,
.blog-details .post-content h5,
.blog-details .post-content h6 {
    color: #2c3e50;
    margin: 1.5rem 0 1rem 0;
}

.blog-details .post-content p {
    margin-bottom: 1.2rem;
}

.blog-details .post-content ul,
.blog-details .post-content ol {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

.blog-details .post-content li {
    margin-bottom: 0.5rem;
}

.blog-details .post-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
}

.blog-details .post-tags .badge {
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.blog-details .post-share {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.blog-details .share-buttons .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.blog-sidebar .sidebar-widget {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blog-sidebar .widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.blog-sidebar .recent-posts .recent-post-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.blog-sidebar .recent-posts .recent-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.blog-sidebar .recent-post-image {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
    border-radius: 4px;
    overflow: hidden;
}

.blog-sidebar .recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-sidebar .recent-post-content h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.blog-sidebar .recent-post-content h6 a {
    text-decoration: none;
    color: #2c3e50;
}

.blog-sidebar .recent-post-content h6 a:hover {
    color: #007bff;
}

.blog-sidebar .recent-post-date {
    font-size: 0.8rem;
    color: #6c757d;
}

.blog-sidebar .category-list .category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    text-decoration: none;
    color: #495057;
    border-bottom: 1px solid #eee;
}

.blog-sidebar .category-list .category-item:last-child {
    border-bottom: none;
}

.blog-sidebar .category-list .category-item:hover {
    color: #007bff;
}

.blog-sidebar .category-list .post-count {
    background: #e9ecef;
    color: #6c757d;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.blog-details .post-navigation {
    border-top: 1px solid #dee2e6;
    padding-top: 2rem;
}

@media (max-width: 767px) {
    .blog-details .post-title {
        font-size: 1.8rem;
    }
    
    .blog-details .post-content {
        font-size: 1rem;
    }
    
    .blog-sidebar {
        margin-top: 2rem;
    }
}

/* FAQ Section Styles */
.faq-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.faq-section .section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-search-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.faq-search-input {
    border-radius: 25px 0 0 25px;
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    font-size: 1rem;
}

.faq-search-input:focus {
    border-color: #007bff;
    box-shadow: none;
}

.faq-search-wrapper .input-group-text {
    background: #007bff;
    color: white;
    border: 2px solid #007bff;
    border-radius: 0 25px 25px 0;
    padding: 12px 20px;
}

.faq-categories {
    margin-bottom: 2rem;
}

.faq-categories .category-filter {
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.faq-categories .category-filter.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.faq-categories .category-filter:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.faq-item {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item.hidden {
    display: none;
}

.faq-item .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item .accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-item .accordion-header {
    margin-bottom: 0;
}

.faq-item .accordion-button {
    background: #fff;
    color: #2c3e50;
    border: none;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    border-radius: 0;
}

.faq-item .accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #007bff;
    box-shadow: none;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007bff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

.faq-item .faq-icon {
    color: #007bff;
    font-size: 1.1rem;
}

.faq-item .accordion-body {
    padding: 1.5rem;
    background: #fff;
    border-top: 1px solid #e9ecef;
    color: #495057;
    line-height: 1.7;
}

.faq-item .accordion-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item .accordion-body li {
    margin-bottom: 0.5rem;
}

.faq-item .accordion-body strong {
    color: #2c3e50;
}

.faq-item .accordion-body ol {
    padding-left: 1.5rem;
}

.contact-support-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
}

.contact-support-section h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-support-section .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-support-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#noResults {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
}

/* Search highlighting */
.highlight {
    background-color: #fff3cd;
    padding: 1px 3px;
    border-radius: 2px;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .faq-section .section-title {
        font-size: 1.8rem;
    }
    
    .faq-categories .category-filter {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin: 0.2rem;
    }
    
    .faq-item .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-item .accordion-body {
        padding: 1rem;
    }
    
    .contact-support-section .btn {
        margin-bottom: 0.5rem;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .faq-search-input {
        border-radius: 8px 0 0 8px;
        padding: 10px 15px;
    }
    
    .faq-search-wrapper .input-group-text {
        border-radius: 0 8px 8px 0;
        padding: 10px 15px;
    }
}

/* Press & Media Styles */
.press-media {
    background-color: #f8f9fa;
    min-height: 80vh;
}

.press-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.press-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.press-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.section-header {
    border-bottom: 3px solid #007bff;
    padding-bottom: 1rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-description {
    color: #6c757d;
    margin-bottom: 0;
}

/* Press Articles */
.press-article {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.press-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.article-date {
    font-size: 0.9rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-title a {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #007bff;
}

.article-excerpt {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
}

.meta-item {
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
}

/* Media Coverage */
.coverage-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.coverage-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.coverage-source {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.source-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-right: 1rem;
    object-fit: cover;
}

.source-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #2c3e50;
}

.coverage-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.coverage-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.coverage-title a {
    text-decoration: none;
    color: #2c3e50;
}

.coverage-title a:hover {
    color: #007bff;
}

.coverage-excerpt {
    color: #495057;
    line-height: 1.5;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.award-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.award-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon i {
    font-size: 1.5rem;
    color: white;
}

.award-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.award-issuer {
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.award-year {
    background: #e3f2fd;
    color: #1565c0;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Press Sidebar */
.press-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.widget-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Media Resources */
.media-resources {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.resource-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.resource-link:hover {
    background: #e3f2fd;
    color: #1565c0;
    border-color: #bbdefb;
}

.file-info {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Contact Person */
.contact-person {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.contact-person:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.contact-person h6 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #007bff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.contact-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Newsletter Form */
.newsletter-form .input-group {
    margin-bottom: 0.5rem;
}

.newsletter-form .newsletter-input {
    border-radius: 6px 0 0 6px;
}

.newsletter-form .newsletter-btn {
    border-radius: 0 6px 6px 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .press-sidebar {
        margin-top: 2rem;
        position: static;
    }
    
    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 767px) {
    .press-title {
        font-size: 2.2rem;
    }
    
    .press-subtitle {
        font-size: 1.1rem;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
    
    .coverage-source {
        flex-direction: column;
        text-align: center;
    }
    
    .source-logo {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
    z-index: 1;
}

.timeline-item {
    position: relative;
    padding: 0 0 30px 70px;
    margin-bottom: 20px;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 15px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-content h6 {
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

.timeline-content p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Timeline item states */
.timeline-item.completed .timeline-icon {
    background: #28a745;
    color: white;
    border: 3px solid #d4edda;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.timeline-item.completed .timeline-content h6 {
    color: #28a745;
}

.timeline-item.active .timeline-icon {
    background: #007bff;
    color: white;
    border: 3px solid #b3d7ff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    animation: pulse 2s infinite;
}

.timeline-item.active .timeline-content h6 {
    color: #007bff;
    font-weight: 700;
}

.timeline-item.pending .timeline-icon {
    background: #f8f9fa;
    color: #6c757d;
    border: 3px solid #e9ecef;
}

.timeline-item.pending .timeline-content h6 {
    color: #6c757d;
}

.timeline-item.cancelled .timeline-icon {
    background: #dc3545;
    color: white;
    border: 3px solid #f5c6cb;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.timeline-item.cancelled .timeline-content h6 {
    color: #dc3545;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(0, 123, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }
}

/* Tracking Modal Specific Styles */
#trackingModal .modal-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-bottom: none;
}

#trackingModal .modal-title {
    color: white;
    font-weight: 700;
}

#trackingModal .text-primary {
    color: #007bff !important;
    font-weight: 600;
}

#trackingModal .border {
    border-color: #e9ecef !important;
}

#trackingModal .bg-light {
    background-color: #f8f9fa !important;
    border: 1px solid #e9ecef;
}

#trackingModal .bg-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%) !important;
}

/* Support Modal Styles */
#supportModal .modal-header {
    background: linear-gradient(135deg, #6f42c1 0%, #563d7c 100%);
    color: white;
    border-bottom: none;
}

#supportModal .modal-title {
    color: white;
    font-weight: 700;
}

#supportModal .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1rem;
    }
