.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

th {
    border-style: none;
}

.cart-header-big {
    flex: 2;
}

.cart-header-small {
    flex: 1;
}

.cart-row {
    display: flex;
    align-items: cart;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    gap: 10px;
}

.row-image {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.cart-header-big {
    flex: 2;
}

.cart-header-small {
    flex: 1;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cart-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 12px;
        background: #fff;
    }

    .cart-header-big,
    .cart-header-small {
        width: 100%;
        flex: unset;
    }

    .cart-header-big img {
        margin-bottom: 8px;
    }

    .cart-header-big {
        font-weight: 600;
        margin-bottom: 5px;
    }

    .cart-header-small {
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-size: 0.95rem;
    }

    .cart-header-small::before {
        font-weight: 600;
        color: #555;
    }

    .cart-header-small:nth-child(3)::before {
        content: "Price";
    }

    .cart-header-small:nth-child(4)::before {
        content: "Quantity";
    }

    .cart-header-small:nth-child(5)::before {
        content: "Total";
    }

    .quantity {
        display: flex;
        align-items: center;
        gap: 6px;
    }
}
