        :root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --accent-color: #3498db;
            --light-color: #f8f9fa;
            --dark-color: #2c3e50;
            --gray-color: #7f8c8d;
            --border-color: #ecf0f1;
            --shadow-light: 0 2px 15px rgba(0,0,0,0.08);
            --shadow-medium: 0 5px 20px rgba(0,0,0,0.12);
        }
        
        * {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f9f9f9;

        }
        
        /* ========== Navbar ========== */
        .main-navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1a2530 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            padding: 12px 0;
            z-index: 1030;
        }
        
        .navbar-fixed {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            animation: slideDown 0.3s ease;
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--secondary-color);
            margin-left: 10px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            padding: 8px 15px !important;
            margin: 0 3px;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: white !important;
            background-color: rgba(255,255,255,0.1);
        }
        
        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: 15px;
            left: 15px;
            height: 3px;
            background-color: var(--secondary-color);
            border-radius: 3px;
        }
        
        .navbar-search {
            position: relative;
            max-width: 500px;
        }
        
        .navbar-search input {
            border-radius: 25px;
            padding-right: 50px;
            border: 2px solid rgba(255,255,255,0.2);
            background-color: rgba(255,255,255,0.1);
            color: white;
            transition: all 0.3s;
        }
        
        .navbar-search input:focus {
            background-color: rgba(255,255,255,0.15);
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
            color: white;
        }
        
        .navbar-search input::placeholder {
            color: rgba(255,255,255,0.7);
        }
        
        .navbar-search button {
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--secondary-color);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .navbar-icons {
            display: flex;
            gap: 15px;
            margin-right: 15px;
        }
        
        .navbar-icons a {
            color: rgba(255,255,255,0.9);
            font-size: 1.3rem;
            position: relative;
            transition: all 0.3s;
        }
        
        .navbar-icons a:hover {
            color: white;
            transform: translateY(-3px);
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            left: -5px;
            background-color: var(--secondary-color);
            color: white;
            font-size: 0.7rem;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        /* ========== Categories Bar ========== */
        .categories-bar {
            background-color: white;
            padding: 25px 0;
			padding-top: 100px;
            margin-top: 0;
            box-shadow: var(--shadow-light);
            border-bottom: 1px solid var(--border-color);
        }
        
        .categories-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--border-color);
            font-size: 1.5rem;
        }
        
        .category-card {
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            text-align: center;
            padding: 15px 5px;
            border-radius: 12px;
            height: 100%;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            background-color: white;
            box-shadow: var(--shadow-medium);
        }
        
        .category-img-container {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 15px;
            border: 3px solid var(--border-color);
            transition: all 0.3s;
            position: relative;
        }
        
        .category-card:hover .category-img-container {
            border-color: var(--accent-color);
            transform: scale(1.05);
        }
        
        .category-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .category-name {
            color: var(--dark-color);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .category-count {
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        
        /* ========== Featured Offers ========== */
        .featured-offers {
            padding: 0px 0;
            background: linear-gradient(to left, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .featured-offers::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
        }
        
        .section-header {
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-header h2 {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 2rem;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(to left, var(--secondary-color), var(--accent-color));
            border-radius: 2px;
        }
        
        .offer-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.4s ease;
            height: 100%;
            background-color: white;
        }
        
        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
        }
        
        .offer-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, var(--secondary-color), #ff6b6b);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 2;
        }
        
        .offer-img {
            height: 200px;
            overflow: hidden;
        }
        
        .offer-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .offer-card:hover .offer-img img {
            transform: scale(1.05);
        }
        
        .offer-body {
            padding: 20px;
        }
        
        .offer-title {
            color: var(--dark-color);
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .offer-description {
            color: var(--gray-color);
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .offer-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .current-price {
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1.4rem;
        }
        
        .old-price {
            color: var(--gray-color);
            text-decoration: line-through;
            font-size: 1.1rem;
        }
        
        .discount {
            background-color: var(--accent-color);
            color: white;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .offer-button {
            background: linear-gradient(to left, var(--secondary-color), #ff6b6b);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s;
        }
        
        .offer-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }
        
        /* ========== Products Section ========== */
        .products-section {
            padding: 60px 0;
            background-color: white;
        }
        
        .product-card {
            border: 1px solid var(--border-color);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.4s ease;
            height: 100%;
            background-color: white;
            margin-bottom: 30px;
        }
        
        .product-card:hover {
            box-shadow: var(--shadow-medium);
            border-color: var(--accent-color);
            transform: translateY(-8px);
        }
        
        .product-img-container {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-img {
            transform: scale(1.05);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .product-body {
            padding: 20px;
        }
        
        .product-category {
            color: var(--accent-color);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .product-title {
            color: var(--dark-color);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .product-description {
            color: var(--gray-color);
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.5;
            height: 40px;
            overflow: hidden;
        }
        
        .product-rating {
            color: #f39c12;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .product-price-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .product-price {
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .product-actions {
            display: flex;
            gap: 10px;
        }
        
        .action-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--light-color);
            color: var(--dark-color);
            transition: all 0.3s;
        }
        
        .action-btn:hover {
            background-color: var(--accent-color);
            color: white;
            transform: translateY(-3px);
        }
        
        .add-to-cart {
            background: linear-gradient(to left, var(--primary-color), #34495e);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s;
        }
        
        .add-to-cart:hover {
            background: linear-gradient(to left, var(--dark-color), #2c3e50);
            transform: translateY(-3px);
        }
        
        /* ========== Footer ========== */
        .main-footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-description {
            color: rgba(255,255,255,0.8);
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .footer-title {
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,255,255,0.1);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
            padding-right: 8px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        .category-minimal-card {
        display: block;
        text-decoration: none;
        background: white;
        border-radius: 16px;
        padding: 25px 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
        position: relative;
        overflow: hidden;
        height: 100%;
    }
    
    .category-minimal-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(52, 152, 219, 0.15);
        border-color: rgba(52, 152, 219, 0.2);
    }
    
    .category-minimal-content {
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .category-minimal-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        position: relative;
        border-radius: 20px;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .category-minimal-card:hover .category-minimal-icon {
        transform: scale(1.1) rotate(5deg);
        background: linear-gradient(135deg, #667eea 0%, #2c3e50 100%);
    }
    
    .category-minimal-img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    
    .category-minimal-card:hover .category-minimal-img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
    }
    
    .category-minimal-badge {
        position: absolute;
        top: -8px;
        left: -8px;
        background: #e74c3c;
        color: white;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
    }
    
    .category-minimal-name {
        color: #2c3e50;
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 10px;
        transition: color 0.3s ease;
    }
    
    .category-minimal-card:hover .category-minimal-name {
        color: #3498db;
    }
    
    .category-minimal-arrow {
        color: #bdc3c7;
        font-size: 18px;
        transition: all 0.3s ease;
    }
    
    .category-minimal-card:hover .category-minimal-arrow {
        color: #3498db;
        transform: translateX(-5px);
    }
    
    .category-minimal-hover {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .category-minimal-card:hover .category-minimal-hover {
        opacity: 1;
    }
        /* ========== Responsive Design ========== */
        @media (max-width: 992px) {
            .navbar-search {
                margin-top: 15px;
                max-width: 100%;
            }
            
            .navbar-icons {
                margin-right: 0;
                margin-top: 15px;
                justify-content: center;
            }
            
            .category-img-container {
                width: 80px;
                height: 80px;
            }
        }
        
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 1.7rem;
            }
            
            .offer-img, .product-img-container {
                height: 180px;
            }
            
            body {
                padding-top: 70px;
            }
        }
        
        @media (max-width: 576px) {
            .categories-title {
                text-align: center;
            }
            
            .category-card {
                margin-bottom: 15px;
            }
            
            .offer-price {
                flex-wrap: wrap;
            }
        }
		 .elegant-discount-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        position: relative;
        border: 1px solid rgba(231, 76, 60, 0.1);
        height: 100%;
    }
    
    .elegant-discount-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(231, 76, 60, 0.15);
        border-color: rgba(231, 76, 60, 0.3);
    }
    
    /* Ribbon Badge */
    .discount-ribbon {
        position: absolute;
        top: 15px;
        right: -30px;
        background: linear-gradient(45deg, #e74c3c, #ff6b6b);
        color: white;
        padding: 8px 40px;
        transform: rotate(45deg);
        z-index: 2;
        box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
    }
    
    .ribbon-text {
        font-weight: 700;
        font-size: 0.9rem;
        display: block;
        text-align: center;
    }
    
    /* Image Wrapper */
    .card-image-wrapper {
        position: relative;
        height: 200px;
        overflow: hidden;
    }
    
    .card-product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .elegant-discount-card:hover .card-product-image {
        transform: scale(1.08);
    }
    
    .hover-actions {
        position: absolute;
        bottom: 15px;
        right: 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }
    
    .elegant-discount-card:hover .hover-actions {
        opacity: 1;
        transform: translateX(0);
    }
    
    .action-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,0.95);
        border: none;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .action-icon:hover {
        background: #e74c3c;
        color: white;
        transform: translateY(-3px);
    }
    
    /* Card Content */
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        color: #2c3e50;
        font-weight: 600;
        font-size: 1.2rem;
        margin-bottom: 15px;
        line-height: 1.4;
        height: 60px;
        overflow: hidden;
    }
    
    /* Price Section */
    .price-section {
        display: flex;
        align-items: baseline;
        gap: 15px;
        margin-bottom: 10px;
    }
    
    .price-current {
        color: #e74c3c;
        font-size: 1.8rem;
        font-weight: 700;
    }
    
    .price-current small {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .price-original {
        color: #95a5a6;
        font-size: 1.2rem;
        text-decoration: line-through;
    }
    
    .price-original small {
        font-size: 0.9rem;
    }
    
    /* Save Amount */
    .save-amount {
        background: linear-gradient(45deg, #2c3e50, #34495e);
        color: white;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .save-amount span {
        font-weight: 700;
        font-size: 1.1rem;
    }
    
    /* Add to Cart Button */
    .add-to-cart {
        width: 100%;
        background: linear-gradient(45deg, #3498db, #2980b9);
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .add-to-cart:hover {
        background: linear-gradient(45deg, #2980b9, #2573a7);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    }



      /* Simple Dropdown Styles */
    .dropdown-toggle::after {
        margin-right: 0.5em;
        vertical-align: middle;
    }
    
    .dropdown-menu {
        border: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .dropdown-item {
        border-radius: 8px;
        margin: 2px 5px;
        transition: all 0.2s;
    }
    
    .dropdown-item:hover {
        background-color: rgba(52, 152, 219, 0.1);
        transform: translateX(-3px);
    }
    
    .dropdown-item.text-danger:hover {
        background-color: rgba(231, 76, 60, 0.1);
    }

    

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: red;
    color: #fff;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
}

.orders{
    border-radius: 10px;
    width: 100%;
    margin: 18px 0;
    border: 1px solid #0d6efd;
    background: #0d6efd;
    color: white;
    padding: 10px 0;
}