:root {
            --primary: #e67e22;
            --primary-dark: #d35400;
            --dark: #2c3e50;
            --light: #f8f9fa;
            --light-gray: #e9ecef;
            --text-dark: #212529;
            --text-light: #6c757d;
            --success: #28a745;
            --border: #dee2e6;
        }
        .cart-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            margin-top: 5%;
            z-index: 100;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: black;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
        }

        .cart-steps {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .cart-step {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .cart-step.active {
            color: var(--primary);
        }

        .cart-step-number {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .cart-step.active .cart-step-number {
            background-color: var(--primary);
            color: white;
        }

        .cart-container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .cart-items {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 20px;
        }

        .cart-header-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .cart-item {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
        }

        .cart-item:last-child {
            border-bottom: none;
        }

        .item-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .item-image {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 5px;
        }

        .item-details h3 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .item-details p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .item-actions {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .action-btn {
            background: none;
            border: none;
            color: var(--primary);
            font-size: 0.8rem;
            cursor: pointer;
            padding: 5px;
        }

        .action-btn:hover {
            text-decoration: underline;
        }

        .item-price {
            font-weight: 600;
        }

        .item-quantity {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quantity-btn {
            width: 30px;
            height: 30px;
            border: 1px solid var(--border);
            background: none;
            font-size: 1rem;
            cursor: pointer;
            border-radius: 4px;
        }

        .quantity-input {
            width: 50px;
            height: 30px;
            text-align: center;
            border: 1px solid var(--border);
            border-radius: 4px;
        }

        .item-subtotal {
            font-weight: 600;
            text-align: right;
        }

        .cart-summary {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 20px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .summary-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .summary-total {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 25px 0;
            padding-top: 15px;
            border-top: 1px solid var(--border);
        }

        .checkout-btn {
            width: 100%;
            padding: 12px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .checkout-btn:hover {
            background-color: var(--primary-dark);
        }

        .payment-methods {
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .payment-method {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 5px 10px;
            background-color: var(--light-gray);
            border-radius: 4px;
            font-size: 0.8rem;
        }

        .payment-method i {
            color: #e2136e;
        }

        .payment-method.cod i {
            color: var(--primary);
        }

        .secure-checkout {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .empty-cart {
            text-align: center;
            padding: 50px 0;
            grid-column: 1 / -1;
        }

        .empty-cart i {
            font-size: 5rem;
            color: var(--light-gray);
            margin-bottom: 20px;
        }

        .empty-cart h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .empty-cart p {
            color: var(--text-light);
            margin-bottom: 30px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .shop-btn {
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .shop-btn:hover {
            background-color: var(--primary-dark);
        }


        @media (max-width: 992px) {
            .cart-container {
                grid-template-columns: 1fr;
            }

            .cart-summary {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .cart-header-row {
                display: none;
            }

            .cart-item {
                grid-template-columns: 1fr;
                gap: 15px;
                position: relative;
                padding: 15px 0;
            }

            .item-subtotal {
                text-align: left;
            }

            .item-remove {
                position: absolute;
                top: 15px;
                right: 0;
            }

            .cart-step-text {
                display: none;
            }
        }
        