

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.products-section {
    padding: 2rem 1rem;
    text-align: center;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0rem;
}

.product-item {
    flex: 1 1 18%;
    min-width: 150px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: scale(1.05);
}

.product-image {
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 0ch;
    box-shadow: 0 4px 0cap rgba(231, 8, 8, 0.1);
}

.product-title {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.view-all-container {
    margin-top: 0rem;
}

.view-all-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.view-all-link:hover {
    background-color: #000;
    color: #fff;
}

 
@media (max-width: 768px) {
    .product-item {
        flex: 1 1 45%;
    }
}

@media (max-width: 480px) {
    .product-item {
        flex: 1 1 90%;
    }
}
.animate-fade-in-down {
    animation: fade-in-down 1s ease-out forwards;
}

.animate-fade-in-up {
    animation: fade-in-up 1s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-float.delay-100 {
    animation-delay: 0.1s;
}


.h-screen-75 {
    height: 75vh;
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1DA851;
    transform: scale(1.05);
}

.whatsapp-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 220px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-menu.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-menu.hidden {
    display: none; 
}

.whatsapp-menu-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.whatsapp-menu-item:hover {
    background-color: #f0f0f0;
    color: #25D366;
}

.whatsapp-menu-item i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #25D366;
}