.table img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 10px;
    padding: .25rem;
    background-color: var(--bs-body-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}
.table td, .table th {
    white-space: normal;
}

/* Quantity Controls */
.quantity-control {
    display: flex;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    width: fit-content;
}

.quantity-control button {
    background: #f8f9fa;
    border: none;
    color: #495057;
    width: 32px;
    height: 32px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.quantity-control button:hover {
    background: #e9ecef;
}

.quantity-control input {
    width: 40px;
    border: none;
    text-align: center;
    font-weight: 500;
}

.mobile-price{
    display: none;
}

.next-options{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.breadcrumb-bar{
    margin-top: 5rem;
}

@media screen and (max-width: 992px) {
    .breadcrumb-bar{
        margin-top: 0;
    }
    
}

@media screen and (max-width: 576px) {

    .mobile-price {
        display: block;
        margin-top: 5px;
        font-weight: 500;
    }
    
    .product-price, .subtotal, .product-quantity-column {
        display: none;
    }
    
    .cart-item td {
        padding: 15px 10px;
    }
    
    .cart-thumbnail img {
        width: 60px;
        height: 60px;
    }
}

/* Notification Styling */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* Voucher Styling */
.voucher-section {
    margin-top: 1.5rem;
}

.voucher-code {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.voucher-code p {
    display: inline-block;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border: 1.5px dashed #dc3545;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: #343a40;
    transition: all 0.2s ease;
    margin: 0;
}

.voucher-code p:hover {
    background-color: #fff8f8;
    border-color: #dc3545;
    transform: translateY(-2px);
}


/* Cart Summary Card */
.cart-summary-card {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.cart-summary-card:hover {
    transform: translateY(-5px);
}


.cart-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.cart-table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cart-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.cart-thumbnail img:hover {
    transform: scale(1.05);
}



