    
        :root {
            --primary: #ce1212;
            --primary-light: #e61414;
            --primary-dark: #a50e0e;
            --secondary: #212529;
            --accent: #ffc107;
            --light: #f8f9fa;
            --dark: #1a1a1a;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --border-radius: 12px;
            --box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #444;
            line-height: 1.6;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--secondary);
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        /* ======================
           HEADER & NAVIGATION
           ====================== */
        #header {
            background: rgba(255, 255, 255, 0.98);
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        #header.scrolled {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
        }
        
        .logo {
            font-family: 'Dancing Script', cursive;
            font-size: 32px;
            font-weight: 700;
            color: #F9CD64;
            margin: 0;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .navbar {
            padding: 0;
        }
        
        .navbar-nav {
            align-items: center;
        }
        
        .nav-item {
            margin: 0 5px;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--secondary);
            padding: 8px 15px !important;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: #F9CD64;
        }
        
        .nav-link:hover:after,
        .nav-link.active:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 15px;
            right: 15px;
            height: 2px;
            background: #F9CD64;
        }
        
        /* Fix for profile dropdown */
        .nav-user-dropdown {
            position: relative;
        }
        
        .nav-user-dropdown .dropdown-menu {
            border: none;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 0;
    margin-top: 15px;
    min-width: 220px;
    display: none;
    position: absolute;
    right: 0;
    background: white;
    z-index: 1000;
        }
        .nav-user-dropdown .dropdown-menu.show {
    display: block;
}
        
.dropdown-item {
    padding: 12px 20px;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}
        
        .dropdown-item:last-child {
            border-bottom: none;
        }
        
        .dropdown-item:hover {
    background-color: rgba(206, 18, 18, 0.1);
    color: #F9CD64;
    padding-left: 25px;
}
        
.nav-user-info {
    background: linear-gradient(135deg, #F9CD64 0%, #A82155 100%);
    padding: 20px;
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.nav-user-name {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.nav-user-info .status {
    font-size: 0.85rem;
    opacity: 0.9;
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #F9CD64;
    color: white;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-profile {
    display: flex;
    align-items: center;
    padding: 5px 15px;
    border-radius: 50px;
    background: rgba(206, 18, 18, 0.1);
    margin-left: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.user-profile:hover {
    background: rgba(206, 18, 18, 0.15);
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid #F9CD64;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
}
        /* ======================
           BREADCRUMBS SECTION
           ====================== */
        .breadcrumbs {
            padding: 140px 0 60px;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                        url('../images/beriyth.png');
            background-size: cover;
            background-position: center center;
            color: white;
            text-align: center;
        }
        
        .breadcrumbs h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 15px;
        }
        
        .breadcrumbs p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .breadcrumb-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
        
        .breadcrumb-nav a {
            color: var(--accent);
            opacity: 0.8;
        }
        
        .breadcrumb-nav a:hover {
            opacity: 1;
            color: white;
        }
        
        .breadcrumb-nav .separator {
            opacity: 0.5;
        }
        
        /* ======================
           CART SECTION
           ====================== */
        .cart-section {
            padding: 60px 0;
            min-height: 60vh;
        }
        
        .cart-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .cart-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .cart-header h2 {
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        
        .cart-header h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #F9CD64, var(--accent));
            border-radius: 2px;
        }
        
        .cart-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Cart Table Styling */
        .cart-card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .cart-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }
        
        .cart-table thead {
            background: linear-gradient(135deg, #F9CD64 0%, #A82155 100%);
            color: white;
        }
        
        .cart-table th {
            padding: 20px 15px;
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
            border: none;
        }
        
        .cart-table th:first-child {
            border-radius: var(--border-radius) 0 0 0;
        }
        
        .cart-table th:last-child {
            border-radius: 0 var(--border-radius) 0 0;
        }
        
        .cart-table tbody tr {
            transition: var(--transition);
        }
        
        .cart-table tbody tr:hover {
            background-color: rgba(206, 18, 18, 0.03);
        }
        
        .cart-table td {
            padding: 20px 15px;
            text-align: center;
            vertical-align: middle;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .cart-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        .product-name {
            font-weight: 600;
            color: var(--secondary);
            font-size: 1rem;
        }
        
        .product-price {
            color: #F9CD64;
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .quantity-control {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .qty-input {
            width: 70px;
            padding: 10px;
            text-align: center;
            border: 2px solid var(--light-gray);
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .qty-input:focus {
            border-color: #F9CD64;
            box-shadow: 0 0 0 3px rgba(206, 18, 18, 0.1);
            outline: none;
        }
        
        .qty-btn {
            width: 35px;
            height: 35px;
            background: var(--light-gray);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-weight: bold;
            font-size: 1rem;
        }
        
        .qty-btn:hover {
            background: #F9CD64;
            color: white;
            transform: scale(1.05);
        }
        
        .product-total {
            color: #F9CD64;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .remove-btn {
            color: #dc3545;
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .remove-btn:hover {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            transform: rotate(90deg);
        }
        
        /* Empty Cart State */
        .empty-cart {
            text-align: center;
            padding: 60px 0;
        }
        
        .empty-cart-icon {
            font-size: 4rem;
            color: var(--light-gray);
            margin-bottom: 20px;
        }
        
        .empty-cart h3 {
            color: var(--gray);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .empty-cart p {
            color: var(--gray);
            margin-bottom: 25px;
            font-size: 1rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-shop {
            background: #F9CD64;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-shop:hover {
            background: #A82155;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(206, 18, 18, 0.2);
        }
        
        /* Cart Summary */
        .cart-summary {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 30px;
            margin-top: 30px;
        }
        
        .summary-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 12px;
        }
        
        .summary-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #F9CD64;
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .summary-row:last-child {
            border-bottom: none;
            font-weight: 700;
            font-size: 1.2rem;
            color: #F9CD64;
            margin-top: 15px;
            padding-top: 20px;
            border-top: 2px solid var(--light-gray);
        }
        
        .summary-label {
            color: var(--gray);
        }
        
        .summary-value {
            font-weight: 600;
            color: var(--secondary);
        }
        
        .checkout-form {
            margin-top: 25px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--secondary);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--light-gray);
            border-radius: var(--border-radius);
            font-size: 0.95rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: #F9CD64;
            box-shadow: 0 0 0 3px rgba(206, 18, 18, 0.1);
            outline: none;
        }
        
        /* Action Buttons - Lighter Design */
        .cart-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid var(--light-gray);
        }
        
        .btn-clear {
            background: transparent;
            color: var(--gray);
            border: 2px solid var(--light-gray);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-clear:hover {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            border-color: rgba(220, 53, 69, 0.3);
            transform: translateY(-2px);
        }
        
        .btn-checkout {
            background: #F9CD64;
            color: white;
            border: 2px solid #F9CD64;
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-checkout:hover {
            background: #A82155;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(206, 18, 18, 0.2);
        }
        
        
        /* ======================
           FOOTER
           ====================== */
        .footer {
            background: var(--secondary);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-logo {
            font-family: 'Dancing Script', cursive;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 20px;
            display: block;
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 25px;
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .footer-heading {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }
        
        .footer-heading:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #F9CD64;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
        }
        
        .footer-links a:hover {
            color: #F9CD64;
            padding-left: 5px;
        }
        
        .footer-links a i {
            width: 20px;
            font-size: 1rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: #F9CD64;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
        }
        
        /* ======================
           RESPONSIVE DESIGN
           ====================== */
        @media (max-width: 1200px) {
            .cart-container {
                padding: 0 20px;
            }
        }
        
        @media (max-width: 992px) {
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: var(--border-radius);
                box-shadow: var(--box-shadow);
                margin-top: 15px;
            }
            
            .user-profile {
                margin-left: 0;
                margin-top: 10px;
                justify-content: center;
            }
            
            .breadcrumbs h2 {
                font-size: 2.5rem;
            }
            
            .cart-table {
                display: block;
                overflow-x: auto;
            }
            
            .cart-actions {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-clear, .btn-checkout {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .breadcrumbs {
                padding: 120px 0 50px;
            }
            
            .breadcrumbs h2 {
                font-size: 2.2rem;
            }
            
            .cart-section {
                padding: 50px 0;
            }
            
            .cart-header h2 {
                font-size: 2rem;
            }
            
            .cart-table th,
            .cart-table td {
                padding: 15px 10px;
                font-size: 0.9rem;
            }
            
            .product-name {
                font-size: 0.95rem;
            }
            
            .product-price, .product-total {
                font-size: 1rem;
            }
            
            .qty-input {
                width: 60px;
                padding: 8px;
            }
            
            .cart-summary {
                padding: 25px;
            }
            
            .summary-title {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 576px) {
            .logo {
                font-size: 28px;
            }
            
            .breadcrumbs {
                padding: 100px 0 40px;
            }
            
            .breadcrumbs h2 {
                font-size: 2rem;
            }
            
            .cart-table th,
            .cart-table td {
                padding: 12px 8px;
                font-size: 0.85rem;
            }
            
            .quantity-control {
                flex-direction: column;
                gap: 5px;
            }
            
            .qty-btn {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }
            
            .cart-summary {
                padding: 20px;
            }
            
            .btn-clear, .btn-checkout {
                padding: 10px 25px;
                font-size: 0.95rem;
            }
        }
        
        /* Animation for empty cart */
        .empty-cart-icon {
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }