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;
}


.toggle-btn {
    cursor: pointer;
}

.call-button {
    position: absolute;
    top: 25px;
    right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: linear-gradient(to right, #00A2E8, #EF88BE);
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: textEnter 0.8s ease-out;
}


.call-button__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.swish-button {
    position: absolute;
    top: 75px;
    right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: linear-gradient(to right, #0cff8e, #ff97e0);
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: textEnter 0.8s ease-out;
}


.swish-button__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.text1 {
    margin-left: 10px;
    font-size: 32px;    
    animation: textEnter 0.8s ease-out;
}

.starttitletext {
    margin-top: 0;
    font-size: 30px;
    background: linear-gradient(to right, #00A2E8, #EF88BE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ptext {
    margin-left: 15px;
    font-size: 18px;
    animation: textEnter 0.9s ease-out;
}

.btn {
    background-color: rgba(0, 195, 255, 0.0767);
    color: #EF88BE;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    width: 60px;
    height: 25px;
    cursor: pointer;
}

.extra-content {
    display: none;
    background: linear-gradient(to right, #001b27, #EF88BE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@keyframes textEnter {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-container {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.product-card {
    background-color: rgb(245, 255, 255);
    border-radius: 12px;
    padding: 15px;
    width: 280px;
    min-height: 333px;
    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: cardSlide 0.6s ease forwards;
}


.product-card img {
    width: 100%;
    border-radius: 8px;
}

.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;
}

.under-price {
    margin-top: 5px;
    font-size: 12px;
}

.allergy-info {
    margin-top: 10px;
    font-size: 12px;
}

.product-card:nth-child(1) {
    animation-delay: 0.25s;
}

.product-card:nth-child(2) {
    animation-delay: 0.5s;
}

.product-card:nth-child(3) {
    animation-delay: 0.75s;
}

.product-card:nth-child(4) {
    animation-delay: 1s;
}

@keyframes cardSlide {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 743px) { /*mobil telefon*/

    .scroll-container {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        overflow-y: auto;
        overflow-x: hidden;
    }

}

@media (min-width: 744px) { /*dator, ipad*/

    .hover-btn:hover {
        transform: scale(1.2);
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }
}

