html,
body {
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
    background: url('/pic/2.png') center center;
    background-size: cover;
    overflow-x: hidden;
    overflow-y: auto;
    /* Engedélyezi a függőleges görgetést */
    width: 100svw;
    height: 100svh;
    font-size: 13px;
}

@media (max-width: 768px) {
    body {
        background: url('/pic/m1.png') center center;
        background-size: cover;
    }
}





.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner button {
    margin-left: 10px;
    padding: 5px 10px;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-banner #accept-cookies {
    background: linear-gradient(145deg, #28a745, #218838);
}

.cookie-banner #accept-cookies:hover {
    background: linear-gradient(145deg, #218838, #28a745);
}

.cookie-banner .btn-decline {
    background-color: #ff0000;
}

.cookie-banner .btn-decline:hover {
    background-color: #cc0000;
}

.cookie-banner a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}



.full {
    overflow-y: scroll;
    height: calc(100vh - 120px);
    margin-top: 120px;
    font-size: 12px;
}




.logo img {
    max-width: 60px;
    height: auto;

}

.social-container {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: radial-gradient(ellipse farthest-corner at right bottom, #E5A200 0%, #D68A00 8%, #BF7B00 30%, #A66B00 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFE4C4 0%, #FFDAB9 8%, #FFC085 25%, #FFAA50 62.5%, #CC8500 100%);


    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Árnyék az alapséma szerint */
}

.social-container .social-icons {
    display: flex;
    gap: 10px;
}

.social-container .tel-mail {
    font-size: 12px;
    color: #000;
    /* Sötétebb szöveg az alapszínhez illeszkedve */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    /* Könnyű text-shadow */
}

.social-container .tel-mail a {
    color: #000;
    /* Sötétebb szín az alapszínhez illeszkedve */
    text-decoration: none;
    margin-right: 10px;
    transition: color 0.3s, text-decoration 0.3s;
}

.social-container .tel-mail a:hover {
    text-decoration: underline;
    color: #222;
    /* Sötétebb hover szín a séma szerint */
}

.social-container .social-icons a {
    font-size: 22px;
    color: #000;
    /* Ikon alapszíne */
    transition: transform 0.3s, color 0.3s;
    /* Animáció hover hatásra */
}

.social-container .social-icons a:hover {
    transform: scale(1.2);
    /* Nagyítás hoverkor */
    color: #FFB800;
    /* Melegebb hover szín a séma szerint */
}

.navbar-toggler-icon {
    background-color: #FFB800;
    z-index: 1500;
    border-radius: 5px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 38px;
    width: 100%;
    z-index: 1001;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    background: #000000d1 !important;
    /* Háttér fekete */
    padding: 3px !important;
    font-size: 12px;
    color: #FFF;
    /* Szöveg színe fehér */
}

.navbar a {
    color: #FFF !important;
    /* Linkek színe fehér */
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #FFD700 !important;
    /* Arany szín hoverkor */
    text-decoration: none;
}

.nav-item {
    color: #FFF !important;
    /* Nav-item szöveg színe fehér */
    font-weight: normal;
    /* Félkövér eltávolítása */
    transition: color 0.3s ease;
}

.nav-item a {
    color: #FFF !important;
    /* Linkek színe fehér nav-itemen belül */
    font-weight: normal;
    /* Félkövér eltávolítása */
}

.nav-item:hover a {
    color: #FFD700 !important;

}

.navbar-collapse {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-item.ml-auto {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}





.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.dropdown-menu {
    display: none;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.dropdown-item {
    transition: border-radius 0.3s ease;
    border-radius: 20px;
}

.dropdown-item:hover {
    border-radius: 20px;
}

.navbar .btn {
    font-size: 10px;
}

.navbar .btn i {
    margin-right: 4px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

@media (max-width: 991.98px) {
    .navbar .d-flex {
        flex-direction: row;
        align-items: center;
    }

    .navbar .navbar-toggler {
        margin-left: 0;
    }

    .navbar .btn {
        margin-bottom: 0;
    }

    .ml-auto {
        display: flex;
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo img {
        max-width: 60px;
        height: auto;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0, 0, 0);
        overflow-y: auto;
        z-index: 1050;
    }

    .navbar {
        top: 36px;
    }
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 12px;
    color: #000;
    /* Szöveg színe az új séma alapján */
    background: radial-gradient(ellipse farthest-corner at right bottom, #E5A200 0%, #D68A00 8%, #BF7B00 30%, #A66B00 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFE4C4 0%, #FFDAB9 8%, #FFC085 25%, #FFAA50 62.5%, #CC8500 100%);


    color: rgb(0, 0, 0);
    /* Alapszín */
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Árnyék a séma szerint */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn i {
    margin-right: 4px;
    transition: transform 0.3s ease;
    color: #000;
    /* Ikon színe az alapszínhez illeszkedve */
}

.btn:hover {
    background: linear-gradient(45deg, #FFB800, #FFD23F);
    /* Hover szín az új séma alapján */
    color: #222;
    /* Sötétebb szöveg hover állapotban */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    /* Erősebb árnyék hoverkor */
    transform: translateY(-2px);
    /* Enyhe mozgás hoverkor */
}

.btn:hover i {
    transform: scale(1.1);
    /* Ikon enyhe nagyítása hoverkor */
    color: #222;
    /* Ikon színe hoverkor */
}

.icon-cart:before {
    content: "\f07a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.icon-checkout:before {
    content: "\f07a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.icon-shop:before {
    content: "\f54f";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

@media (max-width: 600px) {
    .btn {
        padding: 6px 12px;
        font-size: 10px;
        border-radius: 16px;
    }

    .btn i {
        margin-right: 2px;
    }
}




section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: rgb(0, 0, 0);
    position: relative;

}

.header-massage-container {
    position: absolute;
    top: 0;
    left: 0;
    /*width: 100%;*/
    display: flex;
    justify-content: center;

}

.header-massage {
    background: url('/pic/eco.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 20px;
    text-align: center;
    width: 100%;
    backdrop-filter: blur(20px);
    font-size: 1.5rem;
    margin-top: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* erősebb fehér színt állítunk be */
}

/* Ha szükséges, a h1 specifikus stílusokat külön lehet kezelni */
.header-massage h1 {
    font-size: 1.5rem;
}


.section-content,
.rendeles-menete {
    font-size: 1.2em;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 800px;
    text-align: justify;
    padding: 20px;
    color: white;
    margin-top: 150px;
    backdrop-filter: blur(20px);
    text-align: left;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    border-radius: 18px;
}


.section-content p::first-letter {
    font-weight: bold;

}



.box-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #ffc400;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.box-button:hover {
    background-color: #b39800;
    text-decoration: none;
    color: black;
}








.section-content-akcio picture img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .section-content-akcio picture img {
        max-width: 100%;
        /* Mobil nézethez */
    }
}

@media (min-width: 768px) {
    .section-content-akcio picture img {
        max-width: 450px;
        /* Asztali nézethez */
    }
}



.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.button {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #B8860B;
    border-radius: 5px;
    background: radial-gradient(ellipse farthest-corner at right bottom, #E5A200 0%, #D68A00 8%, #BF7B00 30%, #A66B00 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFE4C4 0%, #FFDAB9 8%, #FFC085 25%, #FFAA50 62.5%, #CC8500 100%);


    color: rgb(0, 0, 0);
    color: black;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.button:hover {
    background: linear-gradient(45deg, #FFB800, #FFD23F);
    color: #222;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}






#hirlevel {
    background: url('/pic/eco2.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 45vh;
}







.szallitas-container {
    width: 100% !important;
    margin-top: 50px;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.8) !important;
}





.newsletter-container {
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
    color: black;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    color: white;
}

#newsletter-form {
    display: flex;
    flex-direction: column;
}

#newsletter-form label {
    margin-bottom: 10px;
    color: white;
}

#newsletter-form input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobil nézethez */
@media (max-width: 768px) {
    #hirlevel {
        background: url('/pic/eco2.png') no-repeat center center;
        background-size: cover;
        min-height: 50vh;
        /* Magasabb min-height mobilon */
    }

    #hirlevel .header-massage {
        font-size: 1.2em;
        /* Kisebb betűméret mobilon */
        padding: 15px;
        /* Kisebb padding mobilon */
    }

    .newsletter-container {
        padding: 5px;
        /* Kisebb padding mobilon */
        border-radius: 10px;
        /* Kisebb border-radius mobilon */
    }

    #newsletter-form input[type="email"] {
        padding: 8px;
        /* Kisebb padding mobilon */
    }
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-wrapper-39 {
    display: flex;
    align-items: center;
    color: black;
    margin-bottom: 20px;
}

.checkbox-wrapper-39 input {
    margin-right: 10px;
}

.checkbox-wrapper-39 *,
.checkbox-wrapper-39 *::before,
.checkbox-wrapper-39 *::after {
    box-sizing: border-box;
}

.checkbox-wrapper-39 label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-wrapper-39 input {
    visibility: hidden;
    display: none;
}

.checkbox-wrapper-39 input:checked~.checkbox {
    transform: rotate(45deg);
    width: 14px;
    margin-left: 12px;
    border-color: #24c78e;
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 0;
}

.checkbox-wrapper-39 .checkbox {
    display: inline-block;
    width: 35px;
    height: 35px;
    border: 3px solid #434343;
    border-radius: 6px;
    transition: all 0.375s;
}

.checkbox-wrapper-39 .label-text {
    margin-left: 10px;
    font-size: 13px;
}

#newsletter-form button {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background: radial-gradient(ellipse farthest-corner at right bottom, #E5A200 0%, #D68A00 8%, #BF7B00 30%, #A66B00 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFE4C4 0%, #FFDAB9 8%, #FFC085 25%, #FFAA50 62.5%, #CC8500 100%);


    color: rgb(0, 0, 0);
    border: none;
    border-radius: 4px !important;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-out;
    width: 100%;
}

#newsletter-form button:hover {
    background: radial-gradient(ellipse farthest-corner at right bottom, #E5A200 0%, #D68A00 8%, #BF7B00 30%, #A66B00 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFE4C4 0%, #FFDAB9 8%, #FFC085 25%, #FFAA50 62.5%, #CC8500 100%);


    color: rgb(0, 0, 0);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#checkout {
    background-color: black;
}





.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 300px;
    margin: 16px auto;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.product-name {
    font-size: 1.5em;
    margin: 16px 0;
    color: #333;
}

.product-description {
    font-size: 1em;
    color: #777;
    margin: 8px 0 16px;
}

.details-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.details-button:hover {
    background-color: #ffffff;
    text-decoration: none;
}

.container-shape {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;

}

.shape {
    width: 95px;
    height: 28px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;

    border-radius: 50% 50% 50% 0;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.shape:hover {
    width: 105px;
    height: 85px;
    font-size: 16px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.shape-ajanlatkeres {
    background: radial-gradient(ellipse farthest-corner at right bottom, #E5A200 0%, #D68A00 8%, #BF7B00 30%, #A66B00 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFE4C4 0%, #FFDAB9 8%, #FFC085 25%, #FFAA50 62.5%, #CC8500 100%);


    color: rgb(0, 0, 0);
    text-decoration: none;
}

.shape-mintaboxok {
    background: radial-gradient(ellipse farthest-corner at right bottom, #E5A200 0%, #D68A00 8%, #BF7B00 30%, #A66B00 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFE4C4 0%, #FFDAB9 8%, #FFC085 25%, #FFAA50 62.5%, #CC8500 100%);


    color: rgb(0, 0, 0);
    text-decoration: none;
}


.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000000d1 !important;


    color: white;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-container .info,
.footer-container .links,
.footer-container .adatv,
.footer-container .social {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.footer-container a {
    color: white;
    text-decoration: none;
    margin: 5px 0;
}

.footer-container a:hover {
    text-decoration: underline;
}

.footer-container .social {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container .social i {
    font-size: 24px;
    color: white;
}

.footer-container .social i:hover {
    transform: scale(1.2);
    color: #FFB800;
}

.footer-container .social-links {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}



@media (min-width: 600px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px 50px;
    }

    .footer-container .info,
    .footer-container .links,
    .footer-container .adatv,
    .footer-container .social {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .footer-container .social .social-links {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px 50px;
    }

    .footer-container .info,
    .footer-container .links,
    .footer-container .adatv,
    .footer-container .social {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .footer-container .social .social-links {
        flex-direction: row;
    }
}




.akciok-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    padding: 20px;
}

.akciok-card {
    background: radial-gradient(ellipse farthest-corner at right bottom, #E5A200 0%, #D68A00 8%, #BF7B00 30%, #A66B00 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFE4C4 0%, #FFDAB9 8%, #FFC085 25%, #FFAA50 62.5%, #CC8500 100%);


    color: rgb(0, 0, 0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s ease;
    color: #000;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.akciok-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #FFB800, #FFD23F);
    color: #222;
}


.event-image {
    width: 100%;
    height: auto;
}

.akciok-card-content {
    padding: 20px;
    text-align: left;
}

.event-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
}

.event-description {
    font-size: 1em;
    margin-bottom: 10px;
    color: #555;
}

.coupon {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.coupon-code {
    font-weight: bold;
    color: #333;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.event-button,
.subscribe-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    width: 100%;
    margin-bottom: 10px;
}

.event-button {
    background-color: #007BFF;
    color: #fff;
}

.subscribe-button {
    background-color: #28A745;
    color: #fff;
}

@media (min-width: 600px) {
    .akciok-card {
        flex-direction: column;
    }
}




@keyframes fadeInUnique {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


#telepites-felmeres-unique {
    background-color: transparent;
    padding: 20px;
    text-align: center;
}

#section-content-unique {
    animation: fadeInUnique 2s ease-in-out;
}

#heading-unique {
    font-size: 1.5vw;
    margin: 0;
    line-height: 1.2;
    color: #FFD700;
    ;
}

@media (max-width: 768px) {
    #heading-unique {
        font-size: 4vw;
    }
}

@media (max-width: 480px) {
    #heading-unique {
        font-size: 4vw;
    }
}


.section-content-akcio {
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 -3px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
    background: radial-gradient(ellipse farthest-corner at right bottom, #E5A200 0%, #D68A00 8%, #BF7B00 30%, #A66B00 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFE4C4 0%, #FFDAB9 8%, #FFC085 25%, #FFAA50 62.5%, #CC8500 100%);


    color: rgb(0, 0, 0);
    color: #000;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.floating-tiles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    width: 60%;
}

.floating-tile {
    width: calc(33.333% - 20px);
    /* 3 oszlopos elrendezés */
    height: 300px;
    /* Fix magasság */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000d1;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    perspective: 1000px;
    position: relative;
    background-size: contain;
    /* Az egész kép látszik, arányosan méretezve */
    background-repeat: no-repeat;
    /* Megakadályozza a kép ismétlődését */
    background-position: center;
    /* Középre igazítja a képet */
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    box-sizing: border-box;
    padding: 20px;
}


.floating-tile:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.floating-tile1 {
    background-image: url('/pic/dallmayer kategoria kep.png');
}

.floating-tile2 {
    background-image: url('/pic/tchibo kategoria kep.png');
}

.floating-tile3 {
    background-image: url('/pic/mokate kategoria kep.png');
}

.floating-tile4 {
    background-image: url('/pic/cukor mentest kategoria kep.png');
}

.floating-tile5 {
    background-image: url('/pic/Cukros szörp kategoria kep.png');
}

.floating-tile6 {
    background-image: url('/pic/orbit.png');
}

.floating-tile7 {
    background-image: url('/pic/haribo kategoria kep.png');
}

.floating-tile8 {
    background-image: url('/pic/csemege csepp.png');
}

.floating-tile9 {
    background-image: url('/pic/brabos kategoria kép.png');
}

.floating-tile10 {
    background-image: url('/pic/dubai kategoria kep.png');
}

.floating-tile11 {
    background-image: url('/pic/coffeta.png');
}

.floating-tile12 {
    background-image: url('/pic/omnia kategoria kep.png');
}

.floating-tile13 {
    background-image: url('/pic/uttastellato.png');
}

.floating-tile14 {
    background-image: url('/pic/brownie.png');
}

.floating-tile15 {
    background-image: url('/pic/Marhaeros kategoria kep.png');
}

.floating-tile16 {
    background-image: url('/pic/Gala.png');
}

.floating-tile17 {
    background-image: url('/pic/urbán.png');
}

.floating-tile18 {
    background-image: url('/pic/vidal gumi cukor.png');
}

.floating-tile20 {
    background-image: url('/pic/smile palacsinta.png');
}


.floating-tile21 {
    background-image: url('/pic/pellini.png');
}

.floating-tile22 {
    background-image: url('/pic/roshen.png');
}

.floating-tile23 {
    background-image: url('/pic/Csomagajánlat2.png');
}

.floating-tile25 {
    background-image: url('/pic/nincskep.png');
}


.tile-text {
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.4em;
    text-align: center;
    text-decoration: none;

    position: absolute;
    /* Hozzáadott pozicionálás */
    bottom: 10px;
    /* Az alsó részhez igazítás */
    left: 50%;
    /* Középre igazítás vízszintesen */
    transform: translateX(-50%);
    /* Középre húzás a bal oldalról */
    white-space: nowrap;
    /* Egy sorban tartja a szöveget, ha szükséges */
}

/* Mobil nézethez igazítás */
@media (max-width: 768px) {
    .floating-tiles-container {
        flex-direction: row;
        align-items: center;
        margin-top: 100px;
    }

    .floating-tile {
        flex: 1 1 100%;
        max-width: 90%;
        margin-bottom: 20px;
    }
}


@keyframes fadeInUnique {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}