h1 { margin-bottom: 15px; }
.simpleCart_items .headerRow div, .simpleCart_items .itemRow div {
    float: left;
    width: 20%;
}
.simpleCart_items .itemRow { clear: both; }
.cart-actions { margin-top: 20px; clear: both; }
.btn {
    display: inline-block;
    padding: 10px 20px;
    background:#e3000f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
}
.item-quantity {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qty-minus, .qty-plus {
    width: 28px;
    height: 28px;
    border: 1px solid #ccc;
    background: #f4f4f4;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}

.qty-minus:hover, .qty-plus:hover {
    background: #ddd;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2px;
}
/* Style for product thumbnails inside the cart */
.cart-thumb {
    width: 100px;             /* adjust as needed */
    height: 80px;            /* ensures consistent shape */
    object-fit: cover;       /* crop image nicely */
    border: 2px solid #ddd;  /* subtle border */
    margin-right: 10px;      /* spacing before product name */
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Optional hover effect */
.cart-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* New */

@media (max-width: 600px) {
    .itemRow {
        display: flex;
        align-items: center;
        flex-wrap: wrap;  
        gap: 10px;           
        padding: 10px 0;
    }

    .itemRow > div {
        flex-shrink: 0;     
    }

    .item-thumb img {
        max-width: 80px;
        height: auto;
        display: block;
    }

    .item-name {
        flex: 1;              
        min-width: 200px;   
        text-align: center;
    }

    .item-price,
    .item-quantity,
    .item-total,
    .item-remove {
        min-width: 100px; 
        text-align: center;
    }

    .headerRow{
        display: none;
    }
}
