:root {
        --primary-color: #0A4C36;
        --secondary-color: #f8f9fa;
        --text-dark: #111827;
        --text-muted: #6b7280;
        --border-color: #e5e7eb;
        --radius-md: 12px;
        --radius-lg: 16px;
    }

    .cart-area { background-color: #f3f4f6; min-height: 80vh; }
    
    /* Left Side - Cart Items */
    .cart-card {
        background: #fff;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-color);
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        margin-bottom: 1.5rem;
        overflow: hidden;
    }
    
    .cart-item-row {
        display: flex;
        flex-wrap: wrap;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        align-items: flex-start;
    }
    .cart-item-row:last-child { border-bottom: none; }

    .item-details { flex: 1; min-width: 250px; padding-right: 15px; }
    .item-title { font-weight: 700; color: var(--text-dark); font-size: 1.1rem; margin-bottom: 0.25rem; }
    .item-meta { font-size: 0.875rem; color: var(--text-muted); }
    .item-price-mobile { display: none; font-weight: 700; color: var(--text-dark); }

    .item-controls { 
        display: flex; 
        align-items: center; 
        gap: 15px; 
        min-width: 200px;
        justify-content: flex-end;
    }

    .qty-select {
        border-radius: 8px;
        border: 1px solid #d1d5db;
        padding: 6px 10px;
        font-weight: 600;
        background-color: #fff;
        cursor: pointer;
        min-width: 70px;
    }

    .item-total-price {
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--text-dark);
        min-width: 80px;
        text-align: right;
    }

    .btn-remove-item {
        color: #ef4444;
        background: #fef2f2;
        border-radius: 50%;
        width: 32px; height: 32px;
        display: flex; align-items: center; justify-content: center;
        text-decoration: none;
        transition: 0.2s;
    }
    .btn-remove-item:hover { background: #fee2e2; color: #dc2626; }

    /* Right Side - Summary */
    .summary-card {
        background: #fff;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 20px;
    }
    
    .summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.95rem; color: var(--text-muted); }
    .summary-row.total { 
        border-top: 2px dashed var(--border-color); 
        margin-top: 15px; 
        padding-top: 15px; 
        font-weight: 800; 
        font-size: 1.25rem; 
        color: var(--text-dark); 
    }

    .coupon-box {
        background: var(--secondary-color);
        border-radius: var(--radius-md);
        padding: 15px;
        margin-bottom: 20px;
    }
    .applied-coupon {
        background: #dcfce7; color: #166534; 
        padding: 8px 12px; border-radius: 6px; 
        display: flex; justify-content: space-between; align-items: center;
        font-weight: 600; font-size: 0.9rem;
    }

    .btn-chckut {
        background-color: var(--primary-color);
        color: white;
        width: 100%;
        padding: 14px;
        border-radius: var(--radius-md);
        font-weight: 700;
        font-size: 1rem;
        border: none;
        transition: 0.2s;
        display: flex; justify-content: center; align-items: center; gap: 10px;
		z-index: 9999
    }
    .btn-chckut:hover { background-color: #063f2d; color: white; transform: translateY(-2px); }

    /* Addons Grid */
    .addons-section-title { font-weight: 800; margin: 30px 0 20px; font-size: 1.25rem; }
    .addons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 15px; }
    
    .addon-card {
        background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-md);
        padding: 15px; display: flex; gap: 15px; align-items: center;
        transition: all 0.2s;
    }
    .addon-card:hover { border-color: var(--primary-color); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
    
    .addon-img { width: 70px; height: 70px; border-radius: 8px; object-fit: cover; background: #f3f4f6; }
    .addon-info { flex: 1; }
    .addon-name { font-weight: 700; font-size: 0.95rem; line-height: 1.2; margin-bottom: 4px; }
    .addon-price { color: var(--primary-color); font-weight: 700; font-size: 1rem; }
    
    .btn-addon-add {
        padding: 6px 12px; font-size: 0.8rem; border-radius: 20px;
        background: rgba(10, 76, 54, 0.1); color: var(--primary-color); border: 1px solid transparent; font-weight: 600;
    }
    .btn-addon-add:hover { background: var(--primary-color); color: #fff; }