        @import url("./components/header.css");
        @import url("./components/footer.css");

        .cart-section {
            padding: 3rem 0;
            background: #efefef;
        }
        .product-link{
            color: #000000;
        }

        .page-header {
            background: white;
            padding: 2rem 0;
            margin-bottom: 2rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 0;
        }

        .breadcrumb {
            margin: 0;
            background: transparent;
            padding: 0;
        }

        /* Cart Container */
        .cart-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem 3rem;
        }

        /* Cart Table */
        .cart-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }

        .cart-table {
            width: 100%;
        }

        .cart-table thead {
            border-bottom: 2px solid #e0e0e0;
        }

        .cart-table th {
            font-weight: 600;
            padding: 1rem;
            color: var(--primary-color);
            font-weight: bold;
            background: #ededed;
        }

        .cart-item-row {
            border-bottom: 1px solid #e0e0e0;
        }

        .cart-item-row:last-child {
            border-bottom: none;
        }

        .cart-item-row td {
            padding: 1.5rem 1rem;
            vertical-align: middle;
        }

        .product-info {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .product-image {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            object-fit: cover;
        }

        .product-details h5 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .product-details p {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        .product-price {
            font-size: 1.2rem;
            font-weight: 600;
        }

        /* Quantity Control */
        .quantity-control {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: center;
        }

        .quantity-btn {
            width: 35px;
            height: 35px;
            border: 2px solid #e0e0e0;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            transition: all 0.3s;
        }

        .quantity-btn:hover {
            border-color: #667eea;
            background: #f8f9ff;
        }

        .quantity-value {
            min-width: 40px;
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
        }

        .remove-btn {
            color: #dc3545;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s;
        }

        .remove-btn:hover {
            color: #c82333;
            transform: scale(1.1);
        }

        /* Cart Summary */
        .cart-summary {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 2rem;
        }

        .summary-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
           
        }

        .summary-row.total {
            font-size: 1.4rem;
            font-weight: bold;
            border-top: 2px solid var(--primary-color);
            border-bottom: none;
            padding-top: 1rem;
            margin-top: 0.5rem;
        }

        .promo-section {
            margin: 1.5rem 0;
        }

        .promo-input-group {
            display: flex;
            gap: 0.5rem;
        }

        .promo-input-group input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .promo-input-group input:focus {
            outline: none;
            border-color: #667eea;
        }

        .btn-apply {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-apply:hover {
            background: #000;
        }

        .btn-checkout {
    background-color: var(--btn-color);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flow;
    margin-bottom: 0;
    margin-top: 1rem;
    text-wrap-mode: nowrap;
    width: 100%;
    text-align: center;
        }

        .btn-checkout:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .btn-continue {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 10px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }

        .btn-continue:hover {
            background: var(--primary-color);
            color: white;
        }

        .secure-badge {
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        .secure-badge i {
            color: #4CAF50;
            margin-right: 0.5rem;
        }

        /* Empty Cart */
        .empty-cart {
            text-align: center;
            padding: 4rem 2rem;
        }

        .empty-cart i {
            font-size: 5rem;
            color: #ccc;
            margin-bottom: 1rem;
        }

        .empty-cart h3 {
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .empty-cart p {
            color: #666;
            margin-bottom: 2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cart-table {
                display: block;
                overflow-x: auto;
            }

            .product-info {
                flex-direction: column;
                text-align: center;
            }

            .quantity-control {
                justify-content: center;
            }

            .cart-summary {
                position: relative;
                top: 0;
            }
            .btn-continue{
            text-wrap-mode: nowrap;
            padding: 10px;
            }

            .cart-table td {
    vertical-align: middle;
}

.qty-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
}

.qty-btn:hover {
    background: #f3f3f3;
}

.qty {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}

        }