/* ========== BASE STYLES ========== */
 :root {
            --primary-color: #C19A6B;
            --primary-dark: #A67C52;
            --secondary-color: #8B4513;
            --dark-color: #2F3542;
            --light-color: #F8F5F0;
            --success-color: #2ED573;
            --warning-color: #FFA502;
            --danger-color: #FF4757;
            --text-color: #333333;
            --text-light: #7F8C8D;
            --bg-color: #FFFFFF;
            --section-bg: #FDFBF7;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--section-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}


        /* ========== HEADER STYLES ========== */
        .top-header {
            background-color: #333333;
            color: white;
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }

        .top-header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .top-nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .top-nav li {
            margin-right: 1.5rem;
        }

        .top-nav a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .top-nav a:hover {
            color: var(--primary-color);
        }

        .top-nav a i {
            margin-right: 0.5rem;
        }

        .top-header-actions {
            display: flex;
            align-items: center;
        }

        .cart-link {
            position: relative;
            margin-right: 1.5rem;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .btn-book {
            background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
            color: white;
            border: none;
            padding: 0.5rem 1.2rem;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .btn-book:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3);
        }

        .main-header {
            background-color: var(--bg-color);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0.8rem 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark-color);
        }

        .logo i {
            margin-right: 0.5rem;
            color: var(--primary-color);
            font-size: 1.2em;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            margin: 0 0.25rem;
            font-weight: 500;
            transition: var(--transition);
            border-radius: 4px;
            color: var(--text-color);
            white-space: nowrap;
        }

        .nav-link i {
            margin-right: 0.5rem;
            font-size: 1.1em;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary-color);
            background-color: rgba(193, 154, 107, 0.1);
        }

        /* Dropdown Menu Styles */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--bg-color);
            min-width: 220px;
            box-shadow: var(--shadow-lg);
            border-radius: 8px;
            padding: 0.5rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1001;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            padding: 0.75rem 1.5rem;
            color: var(--text-color);
            transition: var(--transition);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            text-decoration: none;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background-color: rgba(193, 154, 107, 0.1);
            color: var(--primary-color);
        }

        .dropdown-item i {
            margin-right: 0.75rem;
            width: 20px;
            text-align: center;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--dark-color);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            margin-left: 1rem;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--bg-color);
            z-index: 1100;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .mobile-menu.open {
            left: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            border-bottom: 1px solid var(--light-color);
            
            color: white;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #5f5f5f;
            cursor: pointer;
            padding: 0.5rem;
            transition: var(--transition);
        }

        .mobile-menu-close:hover {
            color: var(--primary-color);
        }

        .mobile-nav ul {
            list-style: none;
            padding: 0;
        }

        .mobile-nav li {
            border-bottom: 1px solid var(--light-color);
        }

        .mobile-nav a {
            display: flex;
            align-items: center;
            padding: 1.25rem 1.5rem;
            color: var(--text-color);
            font-weight: 500;
            transition: var(--transition);
            text-decoration: none;
        }

        .mobile-nav a:hover {
            background-color: var(--light-color);
            color: var(--primary-color);
        }

        .mobile-nav a i {
            margin-right: 1rem;
            width: 20px;
            text-align: center;
            font-size: 1.1em;
        }

        .mobile-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: rgba(0,0,0,0.03);
        }

        .mobile-dropdown.open {
            max-height: 500px;
        }

        .mobile-dropdown a {
            padding-left: 3rem;
            font-size: 0.95rem;
        }

        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-dropdown-toggle i:last-child {
            transition: transform 0.3s ease;
        }

        .mobile-dropdown-toggle.active i:last-child {
            transform: rotate(180deg);
        }

        .mobile-cart-link {
            position: relative;
        }

        .mobile-cart-count {
            position: absolute;
            right: 1.5rem;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* Overlay for mobile menu */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-book-btn {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
            color: white;
            border: none;
            padding: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
            z-index: 1101;
        }

        /* ========== RESPONSIVE STYLES ========== */
        @media (max-width: 992px) {
            .top-header {
                display: none;
            }
            
            .main-nav {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .logo {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 0 1rem;
            }
            
            .logo {
                font-size: 1.2rem;
            }
        }



/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../img/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-search input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    outline: none;
}

.hero-search .search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.hero-search .search-btn:hover {
    background-color: var(--primary-dark);
}

/* ========== CATEGORY SCROLLER ========== */
.category-scroller {
    position: relative;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1.5rem;
}

.category-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 1rem 0;
    margin: 0 2rem;
}

.category-container::-webkit-scrollbar {
    display: none;
}

.category-pill {
    display: flex;
    align-items: center;
    background: none;
    border: 1px solid var(--light-color);
    padding: 0.75rem 1.25rem;
    margin-right: 0.75rem;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text-light);
    flex-shrink: 0;
}

.category-pill i {
    margin-right: 0.5rem;
    font-size: 0.9em;
}

.category-pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-pill.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.scroll-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

/* ========== PRODUCTS GRID ========== */
.products-container {
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background-color: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ========== CART STYLES ========== */
.cart-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.cart-header h1 {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-color);
}

.continue-shopping {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.continue-shopping:hover {
    color: var(--primary-dark);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .cart-layout {
        grid-template-columns: 2fr 1fr;
    }
}

/* Empty Cart */
.empty-cart, .order-success {
    text-align: center;
    padding: 3rem 1rem;
    background-color: var(--bg-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin: 2rem 0;
}

.empty-cart i, .order-success i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.empty-cart h3, .order-success h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.empty-cart p, .order-success p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.success-icon {
    color: var(--success-color);
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Cart Items */
.cart-items-section {
    background-color: var(--bg-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

.cart-items-header {
    display: none;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-color);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cart-items-header {
        display: grid;
    }
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-color);
}

@media (min-width: 768px) {
    .cart-item {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        align-items: center;
        gap: 1.5rem;
    }
}

.product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.product-details {
    flex: 1;
}

.product-name {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.remove-item {
    background: none;
    border: none;
    color: var(--danger-color);
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0;
}

.remove-item:hover {
    text-decoration: underline;
}

.product-price {
    font-weight: 600;
    color: var(--dark-color);
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--light-color);
    background: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--light-color);
}

.quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--light-color);
    border-radius: 4px;
}

.product-total {
    font-weight: 700;
    color: var(--dark-color);
}

/* Cart Summary */
.cart-summary-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.summary-card {
    background-color: var(--bg-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

.summary-card h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 1.5rem 0;
}

.summary-divider {
    height: 1px;
    background-color: var(--light-color);
    margin: 1rem 0;
}

.delivery-option select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--light-color);
    border-radius: 4px;
    background-color: white;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-checkout:hover {
    background-color: var(--primary-dark);
}

/* Promo Code */
.promo-code {
    background-color: var(--bg-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

.promo-code h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.promo-input {
    display: flex;
    gap: 0.5rem;
}

.promo-input input {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 1px solid var(--light-color);
    border-radius: 4px;
}

.btn-apply {
    padding: 0 1rem;
    background-color: var(--light-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-apply:hover {
    background-color: #e0e0e0;
}

/* Checkout Form */
.checkout-form {
    display: none;
    background-color: var(--bg-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    margin-top: 2rem;
    grid-column: 1 / -1;
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-header h2 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
}

.checkout-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.checkout-close:hover {
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.payment-method {
    position: relative;
}

.payment-method input {
    position: absolute;
    opacity: 0;
}

.payment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid var(--light-color);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-method input:checked + .payment-content {
    border-color: var(--primary-color);
    background-color: rgba(255, 107, 107, 0.05);
}

.payment-content i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.payment-content span {
    font-size: 0.9rem;
    text-align: center;
}

.form-submit {
    margin-top: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .product-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-details {
        width: 100%;
    }
    
    .product-quantity {
        justify-content: flex-start;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.new {
    background-color: var(--success-color);
}

.product-badge.popular {
    background-color: var(--primary-color);
}

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.quick-view-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: bottom 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.product-card:hover .quick-view-btn {
    bottom: 0;
}

.product-info {
    padding: 1.25rem;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.current-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.old-price {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.add-to-cart-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.empty-state p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* Error Message */
.error-message {
    grid-column: 1 / -1;
    background-color: #FEE2E2;
    color: var(--danger-color);
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    margin: 1rem 0;
}

/* ========== FOOTER ========== */
.main-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 0;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-about-text {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links li {
    margin-bottom: 0.75rem;
}

.footer-section.links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-section.links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-info i {
    margin-right: 0.75rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.app-download p {
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-store-btn, .google-play-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
}

.app-store-btn {
    background-color: #000;
    color: white;
}

.google-play-btn {
    background-color: #fff;
    color: #000;
}

.app-store-btn i, .google-play-btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.app-store-btn:hover, .google-play-btn:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-payments {
    margin-top: 1rem;
}

.footer-payments i {
    font-size: 1.5rem;
    margin: 0 0.5rem;
    color: #ddd;
}

/* ========== MODAL ========== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    z-index: 2;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
}

/* Quick View Modal Content */
.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.quick-view-image {
    border-radius: 8px;
    overflow: hidden;
}

.quick-view-image img {
    width: 100%;
    height: auto;
    display: block;
}

.quick-view-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.quick-view-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.quick-view-desc {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.quick-view-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--light-color);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    background-color: var(--light-color);
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--light-color);
    border-right: 1px solid var(--light-color);
    font-size: 1rem;
}

.add-to-cart-modal {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-to-cart-modal:hover {
    background-color: var(--primary-dark);
}

/* ========== TOAST NOTIFICATION ========== */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toast-notification.show {
    opacity: 1;
    visibility: visible;
}

.toast-notification i {
    font-size: 1.2rem;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .quick-view-content {
        grid-template-columns: 1fr;
    }
    
    .quick-view-image {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .hero-section {
        height: 350px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-search {
        flex-direction: column;
        border-radius: 4px;
    }
    
    .hero-search input {
        border-radius: 4px 4px 0 0;
        width: 100%;
    }
    
    .hero-search .search-btn {
        border-radius: 0 0 4px 4px;
        padding: 0.75rem;
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .quick-view-actions {
        flex-direction: column;
    }
    
    .quantity-selector {
        width: 100%;
        justify-content: space-between;
    }
    
    .add-to-cart-modal {
        justify-content: center;
        padding: 0.75rem;
    }
}