.modern-white-cart {
    position: fixed;
    bottom: 30px; 
    right: 30px;
    background-color: #ffffff; /* Shudha White */
    color: #000000 !important; /* Text and Icon in Black */
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

/* Mouse kondupovumpol ulla mattam (Hover) */
.modern-white-cart:hover {
    background-color: #ffc107; /* Gold color matching your theme */
    color: #000000 !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4);
    border-color: #ffc107;
}

.modern-white-cart i {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.modern-white-cart .cart-text {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile screen-il button cheriya reethiyil matti vekkan */
@media (max-width: 768px) {
    .modern-white-cart {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }
}

