        @import url("./components/header.css");
        @import url("./components/footer.css");

        .cart-section {
            margin: 3rem 0;
        }
        .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: var(--card-color);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .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: var(--card-color);
            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);
background-color: var(--color-yellow);
color:var(--text-color-black);
    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: #ffc107;
            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;
        }

        .btn_continue-shopping {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 0.85rem 1.4rem;
            border-radius: 12px;
            background: var(--color-yellow);
            color: var(--text-color-black);
            font-weight: 600;
            text-decoration: none;
            line-height: 1;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
        }

        .btn_continue-shopping:hover {
            color: var(--text-color-black);
            background: #d9ef4d;
            transform: translateY(-1px);
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
        }

        .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-section {
                margin: 1.5rem 0;
            }

            .cart-card,
            .cart-summary {
                padding: 1rem;
                border-radius: 12px;
            }

            .cart-card > .d-flex {
                flex-direction: column;
                align-items: stretch !important;
                gap: 0.75rem;
            }

            .btn_continue-shopping,
            .cart-table {
                width: 100%;
            }

            .btn_continue-shopping {
                display: inline-flex;
                justify-content: center;
                text-align: center;
                width: 100%;
                min-height: 50px;
                padding: 0.95rem 1rem;
                border-radius: 14px;
            }

            .cart-table,
            .cart-table tbody {
                display: block;
            }

            .cart-table thead {
                display: none;
            }

            .cart-item-row {
                display: grid;
                grid-template-columns: repeat(4, minmax(0, 1fr));
                grid-template-areas:
                    "product product product price"
                    "quantity quantity total actions";
                gap: 0.85rem;
                border: 1px solid #e0e0e0;
                border-radius: 12px;
                padding: 1rem;
                margin-bottom: 1rem;
                background: #fff;
            }

            .cart-item-row:last-child {
                margin-bottom: 0;
            }

            .cart-item-row td {
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 0;
                border: 0;
                min-width: 0;
            }

            .cart-item-row td[data-label="Product"] {
                grid-area: product;
                padding-right: 0.25rem;
            }

            .cart-item-row td::before {
                content: attr(data-label);
                display: block;
                margin-bottom: 0.35rem;
                font-size: 0.8rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.04em;
                color: #666;
            }

            .product-info {
                align-items: flex-start;
                text-align: left;
                gap: 0.85rem;
            }

            .product-image {
                width: 64px;
                height: 64px;
                flex: 0 0 64px;
            }

            .product-details h5 {
                font-size: 1rem;
                line-height: 1.3;
            }

            .cart-item-row td[data-label="Price"] {
                grid-area: price;
            }

            .cart-item-row td[data-label="Quantity"] {
                grid-area: quantity;
            }

            .cart-item-row td[data-label="Total"] {
                grid-area: total;
            }

            .cart-item-row td[data-label="Actions"] {
                grid-area: actions;
            }

            .cart-item-row td[data-label="Price"],
            .cart-item-row td[data-label="Quantity"],
            .cart-item-row td[data-label="Total"],
            .cart-item-row td[data-label="Actions"] {
                background: #fafafa;
                border: 1px solid #f1f1f1;
                border-radius: 10px;
                padding: 0.75rem;
                text-align: left !important;
            }

            .cart-item-row td[data-label="Actions"] {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding-top: 0.75rem;
            }

            .quantity-control {
                justify-content: space-between;
                align-items: center;
                width: 100%;
                max-width: none;
                gap: 0.25rem;
                padding: 0.2rem;
                border: 1px solid #ececec;
                border-radius: 999px;
                background: #fff;
                box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
            }

            .quantity-btn {
                width: 34px;
                height: 34px;
                border: 0;
                border-radius: 50%;
                background: linear-gradient(180deg, #ffffff 0%, #f2f4f7 100%);
                box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08);
                color: #222;
                font-size: 1rem;
                line-height: 1;
            }

            .quantity-value {
                min-width: 28px;
                font-weight: 700;
                font-size: 0.95rem;
                color: #111;
            }

            .quantity-btn:hover {
                border-color: transparent;
                background: linear-gradient(180deg, #f9fafb 0%, #e9edf3 100%);
            }

            .quantity-btn:disabled {
                opacity: 0.45;
                box-shadow: none;
            }

            .cart-summary {
                position: relative;
                top: 0;
                margin-top: 1rem;
            }

            .btn-continue {
                text-wrap-mode: nowrap;
                padding: 10px;
            }

            .cart-table td {
                vertical-align: middle;
            }

            .remove-btn {
                font-size: 1.1rem;
                width: 40px;
                height: 40px;
                border: 1px solid #f1c7cd;
                border-radius: 10px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: #fff5f5;
            }
        }
