    .cart-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .cart-layout {
                grid-template-columns: 2fr 1fr;
            }
        }

        /* Cart Items Section */
        .container h2 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1a1a1a;
            font-family: 'Lora', 'Georgia', serif;
        }

        .cart-items {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .cart-item {
            background-color: #ffffff;
            border: 1px solid #e5e5e5;
            border-radius: 0.5rem;
            padding: 1rem;
            display: flex;
            gap: 1rem;
            transition: box-shadow 0.2s;
        }

        .cart-item:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .item-image {
            width: 6rem;
            height: 6rem;
            flex-shrink: 0;
            border-radius: 0.375rem;
            overflow: hidden;
            background-color: #f5f5f5;
        }

        @media (min-width: 640px) {
            .item-image {
                width: 8rem;
                height: 8rem;
            }
        }

        .item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .item-details {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .item-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .item-info h3 {
            font-size: 1rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 0.25rem;
            font-family: 'Lora', 'Georgia', serif;
        }

        .item-attributes {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: #6b6b6b;
            font-family: 'Lora', 'Georgia', serif;
        }

        .remove-btn {
            background: none;
            border: none;
            color: #6b6b6b;
            cursor: pointer;
            padding: 0.5rem;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s;
            border-radius: 0.25rem;
        }

        .remove-btn:hover {
            color: #dc2626;
            background-color: #fef2f2;
        }

        .item-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Quantity Controls */
        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .quantity-btn {
            background-color: #f5f5f5;
            border: 1px solid #e5e5e5;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.375rem;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 1rem;
            color: #1a1a1a;
        }

        .quantity-btn:hover {
            background-color: #17a2b8;
            color: #ffffff;
            border-color: #17a2b8;
        }

        .quantity-value {
            width: 2rem;
            text-align: center;
            font-weight: 500;
            color: #1a1a1a;
        }

        .item-price {
            text-align: right;
        }

        .item-price .total {
            font-size: 1.125rem;
            font-weight: 700;
            color: #1a1a1a;
        }

        .item-price .unit {
            font-size: 0.875rem;
            color: #6b6b6b;
        }

        /* Cart Summary */
        .cart-summary {
            background-color: #ffffff;
            border: 1px solid #e5e5e5;
            border-radius: 0.5rem;
            padding: 1.5rem;
            position: sticky;
            top: 1rem;
        }

        .cart-summary h2 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1a1a1a;
            font-family: 'Lora', 'Georgia', serif;
        }

        .summary-items {
            border-bottom: 1px solid #e5e5e5;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            color: #6b6b6b;
            margin-bottom: 0.75rem;
        }

        .summary-row span:last-child {
            font-weight: 500;
        }

        .summary-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.125rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
        }

        .checkout-btn {
            width: 100%;
            background-color: #202226;
            color: #ffffff;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 0.375rem;
            cursor: pointer;
            text-align: center;
            transition: background-color 0.2s;
        }

        .checkout-btn:hover {
            color: #ffffff;
            background-color: #202226;
        }

        .shipping-note {
            text-align: center;
            font-size: 0.875rem;
            color: #6b6b6b;
            margin-top: 1rem;
        }

        /* Empty Cart */
        .empty-cart {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 4rem 1rem;
            text-align: center;
        }

        .empty-icon {
            width: 4rem;
            height: 4rem;
            background-color: #f5f5f5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .empty-cart h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
        }

        .empty-cart p {
            color: #6b6b6b;
            margin-bottom: 1.5rem;
        }

        .shop-btn {
            background-color: #202226;
            color: #ffffff;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 0.375rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: background-color 0.2s;
        }

        .shop-btn:hover {
            color: #FFF;
        }

        /* Icons (Simple SVG) */
        .icon {
            width: 1.25rem;
            height: 1.25rem;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .icon-lg {
            width: 4rem;
            height: 4rem;
        }