/* --- RASOI RATNA SHOPPING CART SYSTEM STYLES --- */
.cart-icon-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #d9534f;
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 9999;
    font-weight: bold;
    font-family: Arial, sans-serif;
    box-shadow: 0 5px 15px rgba(217, 83, 79, 0.4);
    transition: all 0.3s ease;
}
.cart-icon-btn:hover {
    transform: scale(1.05);
    background-color: #c9302c;
}
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 340px;
    height: 100%;
    background: #ffffff;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99);
    z-index: 10000;
    padding: 25px;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}
.cart-sidebar.active { 
    right: 0; 
}
.close-cart { 
    cursor: pointer; 
    font-size: 32px; 
    text-align: right; 
    color: #999;
    line-height: 20px;
}
.close-cart:hover {
    color: #333;
}
.cart-items { 
    flex-grow: 1; 
    overflow-y: auto; 
    margin-top: 20px; 
    padding-right: 5px;
}
.checkout-btn { 
    background-color: #d9534f; 
    color: white; 
    border: none; 
    padding: 14px; 
    width: 100%; 
    cursor: pointer; 
    font-size: 16px; 
    font-weight: bold; 
    margin-top: 15px; 
    border-radius: 6px;
    transition: background 0.2s;
}
.checkout-btn:hover {
    background-color: #c9302c;
}
.payment-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(3px);
    z-index: 10001;
    justify-content: center; 
    align-items: center;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}
.modal-content {
    background: #ffffff; 
    padding: 30px; 
    border-radius: 12px; 
    max-width: 380px; 
    width: 90%; 
    text-align: center; 
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.qr-box {
    width: 200px; 
    height: 140px; 
    background: #fdfaf6; 
    margin: 15px auto; 
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    border: 2px dashed #e2bdba;
    border-radius: 8px;
}