body {
    background-color: rgb(219, 255, 255);
    font-family: "Roboto", sans-serif;
}

.hover-btn {
    display: inline-block;
    margin-left: 10px;
    width: 100px;
    transition: transform 0.3s ease;
}

.hover-btn img {
    width: 100%;
    display: block;
}

.hover-btn:hover {
    transform: scale(1.2);
}

.text1 {
    margin-left: 10px;
    font-size: 32px;
    animation: slideIn 0.8s ease-out;
}

.ptext {
    margin-left: 15px;
    font-size: 18px;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-container {
    margin-top: 30px;
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    animation: fadeProducts 1.2s ease;
}

.product-card {
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    width: 220px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.25s ease;
}


.product-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    font-size: 14px;
}

.product-list li {
    margin: 3px 0;
}

.price-tag {
    font-size: 16px;
    margin-top: 8px;
}

.allergy-info {
    margin-top: 10px;
    font-size: 12px;
    color: #d9534f;
}

@keyframes fadeProducts {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.product-card {
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    width: 220px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;

    opacity: 0;
    animation: cardPop 0.6s ease forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.2s;
}

.product-card:nth-child(2) {
    animation-delay: 0.4s;
}

.product-card:nth-child(3) {
    animation-delay: 0.6s;
}

.product-card:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes cardPop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
