.product-list-container {
    padding: 0 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.product-list-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-list-table th,
.product-list-table td {
    padding: 12px 15px;
    text-align: left;
    border: none;
    border-bottom: 1px solid #eee;
}

.product-list-table th {
    background-color: #1a1a1a;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.product-list-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.product-list-table tr:hover {
    background-color: #f5f5f5;
}

.popup-quantity {
    width: 80px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
}

.popup-quantity:focus {
    border-color: #cc0000;
    outline: none;
}

.button-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    margin: 0;
    padding: 0;
    transform: translateZ(0);
}

.add-selected-to-cart {
    padding: 15px 30px;
    background-color: #cc0000;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-width: 180px;
}

.add-selected-to-cart:hover {
    background-color: #e60000;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(204,0,0,0.3);
}

/* Notification Styles */
.notification-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

#notification-message {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #1a1a1a;
    color: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    min-width: 350px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.1);
}

#notification-text {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    font-weight: 500;
    padding-right: 20px;
}

#added-products-list {
    margin: 25px 0;
}

#added-products-list ul {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
}

#added-products-list li {
    margin-bottom: 15px;
    padding: 15px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    border-left: 4px solid #cc0000;
    color: #fff;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

#added-products-list li:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.close-notification {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(204,0,0,0.8);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-notification:hover {
    background-color: #cc0000;
    transform: rotate(90deg);
}

.view-cart-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #cc0000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    border: none;
    width: 100%;
    text-align: center;
}

.view-cart-btn:hover {
    background-color: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204,0,0,0.3);
}

/* Animation for popup */
@keyframes slideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

#notification-message.animate {
    animation: slideIn 0.3s ease forwards;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .product-list-container {
        padding: 0 15px 30px;
        max-width: 95%;
    }
}

@media (max-width: 992px) {
    .product-list-table th {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .product-list-table td {
        font-size: 18px;
        padding: 10px 12px;
    }
    
    .button-container {
        right: 15px;
        bottom: 15px;
    }
    
    .add-selected-to-cart {
        padding: 12px 25px;
        font-size: 14px;
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .product-list-container {
        padding: 0 10px 20px;
        padding-bottom: 80px;
    }
    
    .product-list-table table {
        border: 0;
        box-shadow: none;
    }
    
    .product-list-table thead {
        display: none;
    }
    
    .product-list-table tr {
        margin-bottom: 15px;
        display: block;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        background-color: white;
    }
    
    .product-list-table td {
        display: block;
        text-align: left;
        padding: 12px 15px;
        position: relative;
        border-bottom: 1px solid #eee;
        padding-top: 45px;
        min-height: 32px;
        word-break: break-word;
    }
    
    .product-list-table td:last-child {
        border-bottom: none;
    }
    
    .product-list-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 12px;
/*        font-weight: 600;*/
        font-size: 17px;
        color: #666;
        width: 100%;
        padding-right: 15px;
    }

    .product-list-table ins span {
        font-weight: 900;
    }
    
    .popup-quantity {
        width: 100%;
        max-width: 120px;
        margin: 5px 0;
    }
    
    .button-container {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 10px;
        background: rgba(255,255,255,0.95);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    
    .add-selected-to-cart {
        width: 100%;
        border-radius: 8px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .product-list-container {
        padding: 0 5px 15px;
    }
    
    .product-list-table td {
        padding: 42px 12px 12px;
        font-size: 19px;
        line-height: 1.4;
    }
    
    .product-list-table td::before {
        left: 12px;
        font-size: 19px;
    }
    
    .product-list-table td[data-label="Price"] {
        color: #cc0000;
    }
    
    .product-list-table td[data-label="Quantity"] {
        text-align: left;
    }
    
    .popup-quantity {
        max-width: 100%;
        height: 40px;
        font-size: 16px;
    }
    
    .product-list-table tr {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    #notification-message {
        width: 90%;
        padding: 20px;
        min-width: auto;
        margin: 0 auto;
    }
    
    #notification-text {
        font-size: 15px;
        line-height: 1.4;
    }
    
    #added-products-list li {
        font-size: 14px;
        padding: 12px;
        margin-bottom: 8px;
    }
}

@media (max-width: 360px) {
    .product-list-table td {
        padding: 40px 10px 10px;
    }
    .product-list-table td::before{
        font-size: 19px;
        left: 10px;
    }
    .popup-quantity {
        height: 36px;
        font-size: 14px;
    }

}

/* Print styles */
@media print {
    .product-list-container {
        padding: 0;
    }
    
    .product-list-table table {
        box-shadow: none;
    }
    
    .button-container,
    .popup-quantity,
    #notification-message,
    .notification-overlay {
        display: none !important;
    }
}



.popup-quantity::-webkit-outer-spin-button,
.popup-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide spin buttons in Firefox */
.popup-quantity[type="number"] {
    -moz-appearance: textfield;
}

#notification-text,
#added-products-list
{
    margin: 0!important;
}
#added-products-list ul
{
    padding-top: 15px;
}
#notification-text{
    padding-right: 30px!important;
}

@media screen and (min-width:768px) and (max-width:991px)
{
    #notification-message{min-width: 550px}
}
@media (max-width: 767px)
{
    #notification-message{min-width: 550px!important}
}
@media screen and (max-width:575px)
{
    #notification-message{min-width: 90%!important}
}
@media screen and (max-width:480px)
{
    .close-notification{top: 10px;right: 10px;widows: 26px;height: 26px;line-height: 26px;}
}