/* ── Cart Page ── */
    .cart-page {
        max-width: 1200px;
        margin: 0 auto;
        padding: 4rem 2rem;
        min-height: 60vh;
    }

    .cart-page__header {
        margin-bottom: 3rem;
    }

    .cart-page__title {
        font-size: 2rem;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 0.5rem;
        background: linear-gradient(135deg, #1A1A1A 0%, #3D3D3D 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cart-page__subtitle {
        font-size: 0.9375rem;
        color: #999999;
        font-weight: 500;
    }

    .cart-grid {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 2.5rem;
        align-items: start;
    }

    /* ── Cart Items ── */
    .cart-items {
        background: #FFFFFF;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        border: 1px solid #F0F0F0;
    }

    .cart-item {
        display: grid;
        grid-template-columns: 100px 1fr auto;
        gap: 1.25rem;
        padding: 1.5rem;
        border-bottom: 1px solid #F5F5F5;
        align-items: center;
        transition: background 0.2s ease;
    }

    .cart-item:hover {
        background: #FAFAFA;
    }

    .cart-item:last-child {
        border-bottom: none;
    }

    .cart-item__image {
        width: 100px;
        height: 100px;
        border-radius: 10px;
        overflow: hidden;
        background: #F9F9F9;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: transform 0.3s ease;
    }

    .cart-item__image:hover {
        transform: scale(1.05);
    }

    .cart-item__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cart-item__info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .cart-item__title {
        font-size: 1rem;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 0.125rem;
        line-height: 1.4;
    }

    .cart-item__price {
        font-size: 1.125rem;
        font-weight: 800;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cart-item__quantity {
        display: inline-flex;
        align-items: center;
        gap: 0;
        margin-top: 0.75rem;
        background: #F9F9F9;
        border-radius: 8px;
        padding: 0.25rem;
        border: 1px solid #E8E8E8;
        width: fit-content;
        align-self: flex-start;
    }

    .quantity-btn {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 700;
        color: #666666;
        transition: all 0.2s ease;
    }

    .quantity-btn:hover {
        background: #D08FA8;
        color: #FFFFFF;
    }

    .quantity-input {
        width: 40px;
        height: 28px;
        text-align: center;
        border: none;
        background: transparent;
        font-size: 0.9375rem;
        font-weight: 600;
        color: #1A1A1A;
        margin: 0 0.25rem;
    }

    .cart-item__actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-end;
    }

    .cart-item__subtotal {
        font-size: 1.25rem;
        font-weight: 800;
        color: #1A1A1A;
    }

    .remove-btn {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid #E8E8E8;
        border-radius: 8px;
        color: #BBBBBB;
        cursor: pointer;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .remove-btn:hover {
        background: #FFF5F7;
        border-color: #FFCDD2;
        color: #DC3545;
    }

    /* ── Cart Summary ── */
    .cart-summary {
        background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
        border-radius: 16px;
        padding: 2rem;
        position: sticky;
        top: 100px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        border: 1px solid #F0F0F0;
    }

    .cart-summary__title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid #E8E8E8;
    }

    .cart-summary__row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.875rem;
        font-size: 0.9375rem;
        color: #666666;
    }

    .cart-summary__row--total {
        padding-top: 1.25rem;
        margin-top: 1.25rem;
        border-top: 2px solid #E8E8E8;
        font-size: 1.125rem;
        font-weight: 700;
        color: #1A1A1A;
    }

    .cart-summary__row--total .cart-summary__value {
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.75rem;
        font-weight: 800;
    }

    .cart-summary__checkout {
        width: 100%;
        padding: 1rem;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        border: none;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        margin-top: 1.5rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(208, 143, 168, 0.3);
    }

    .cart-summary__checkout:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(208, 143, 168, 0.4);
    }

    .cart-summary__continue {
        width: 100%;
        padding: 0.875rem;
        background: transparent;
        color: #666666;
        border: 1px solid #E8E8E8;
        border-radius: 10px;
        font-size: 0.9375rem;
        font-weight: 600;
        cursor: pointer;
        margin-top: 0.75rem;
        transition: all 0.2s ease;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }

    .cart-summary__continue:hover {
        background: #FFF9FB;
        border-color: #D08FA8;
        color: #D08FA8;
    }

    /* ── Empty Cart ── */
    .empty-cart {
        text-align: center;
        padding: 6rem 2rem;
        background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        border: 1px solid #F0F0F0;
    }

    .empty-cart__icon {
        width: 100px;
        height: 100px;
        margin: 0 auto 2rem;
        background: linear-gradient(135deg, #FFF9FB 0%, #F9F9F9 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #D08FA8;
        box-shadow: 0 4px 12px rgba(208, 143, 168, 0.15);
    }

    .empty-cart__title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 0.75rem;
    }

    .empty-cart__text {
        font-size: 1rem;
        color: #666666;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .empty-cart__button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.875rem 2rem;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        border-radius: 10px;
        font-size: 0.9375rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(208, 143, 168, 0.3);
    }

    .empty-cart__button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(208, 143, 168, 0.4);
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
        .cart-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .cart-summary {
            position: static;
        }
    }

    @media (max-width: 768px) {
        .cart-page {
            padding: 2rem 1.5rem;
        }

        .cart-page__title {
            font-size: 1.75rem;
        }

        .cart-page__subtitle {
            font-size: 0.875rem;
        }

        .cart-item {
            grid-template-columns: 80px 1fr;
            gap: 1rem;
            padding: 1.25rem;
        }

        .cart-item__image {
            width: 80px;
            height: 80px;
        }

        .cart-item__title {
            font-size: 0.9375rem;
        }

        .cart-item__actions {
            grid-column: 1 / -1;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            margin-top: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid #F5F5F5;
        }

        .cart-item__subtotal {
            font-size: 1.125rem;
        }

        .cart-summary {
            padding: 1.5rem;
        }

        .empty-cart {
            padding: 4rem 1.5rem;
        }

        .empty-cart__icon {
            width: 80px;
            height: 80px;
        }

        .empty-cart__title {
            font-size: 1.5rem;
        }
    }