.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

    .whatsapp-float img {
        width: 35px;
        height: 35px;
        margin-top: 6.5px;
    }

.app-load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    z-index: 9999;
}

.loading-image {
    width: 100px;
    animation: wave 2s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.cart-icon a {
    color: #000;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .cart-icon a:hover {
        color: #007bff;
    }

.cart-icon i {
    transition: color 0.3s ease;
}

.cart-icon a:hover i {
    color: #007bff;
}

.cart-count {
    top: 5px;
    right: -10px;
    background: #c95f5f;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-weight: bold;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease-in-out;
}

.close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .close:hover {
        color: red;
    }

@media (max-width: 768px) {
    .video-fullscreen {
        padding-top: 110px;
        height: 400px;
    }
}
