.marginTop {
    margin-top: 150px;
}

.cart-container {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 15px;
    font-family: 'Segoe UI', sans-serif;
    color: #111;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead {
    border-bottom: 1px solid #ddd;
}

.cart-table th {
    text-align: left;
    padding: 12px 10px;
    font-weight: 600;
    color: #444;
    font-size: 15px;
}

.cart-row td {
    padding: 20px 10px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.product-details {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-image img {
    width: 80px;
    height: auto;
    border-radius: 6px;
}

.product-meta {
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    margin-bottom: 5px;
}

.remove-item {
    font-size: 14px;
    color: #d00;
    text-decoration: none;
    margin-top: 4px;
}

.remove-item:hover {
    text-decoration: underline;
}

.product-price,
.product-subtotal {
    font-weight: 500;
    font-size: 16px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    max-width: 110px;
}

.qty-btn {
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 34px;
    font-size: 18px;
    cursor: pointer;
}

.qty-input {
    width: 40px;
    height: 34px;
    text-align: center;
    border: none;
    font-size: 15px;
    outline: none;
}


.view-cart-countdown-message {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    text-align: center;
}

.view-cart-countdown-message h3 {
    font-size: 22px;
    font-weight: 400;
}

.view-cart-countdown-message h3 span {
    color: var(--timer-txt-color);
    font-weight: 500;
}


@media (max-width: 480px) {

    .cart-table thead {
        display: none;
        /* Hide table headers on mobile */
    }

    .cart-row {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #eee;
        padding: 15px;
        margin-bottom: 10px;
        background: #fff;
    }

    .product-info {
        display: flex;
        gap: 15px;
        align-items: flex-start;
    }

    .product-image img {
        width: 70px;
        height: auto;
        object-fit: cover;
        border-radius: 5px;
    }

    .product-meta {
        flex: 1;
    }

    .product-name {
        font-size: 15px;
        margin: 0 0 5px;
        font-weight: 600;
    }

    .remove-item {
        font-size: 13px;
        color: #c00;
        text-decoration: underline;
        display: inline-block;
        margin-bottom: 10px;
    }

    .product-quantity {
        margin: 10px 0;
    }

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

    .qty-btn {
        width: 30px;
        height: 30px;
        border: 1px solid #ccc;
        background: #f5f5f5;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        cursor: pointer;
    }

    .qty-input {
        width: 40px;
        text-align: center;
        font-size: 14px;
        padding: 4px;
    }

    .product-subtotal {
        font-size: 16px;
        font-weight: 600;
    }

    .product-subtotal::before {
        content: 'Subtotal : ';
        font-weight: normal;
        color: #666;
    }
}