
.btn{
    text-decoration: none;
}
/*Menü Gombok tárolása */
.menu-buttons {
   display: flex;
   position: sticky;
top:65px;
z-index: 999;
    overflow-x: auto; /* Csúsztatható mobilon */
    white-space: nowrap;
    padding: 10px;
    background-color: #fff;
    gap: 10px;
}

/* Gombok stílusa */
/* Gombok stílusa szövegként */
.menu-button {
    cursor: pointer; /* Kattinthatóság megmarad */
    display: inline-block;
    padding: 5px 10px; /* Egy minimális távolság a szövegek között */
    color: #888; /* Alap szöveg szín */
    font-size: 16px; /* Szöveg méret */
    text-align: center;
    flex-shrink: 0; /* Mobilon csúsztatható maradjon */
    transition: color 0.3s ease; /* Szín változás animáció */
    text-decoration: none; /* Aláhúzás eltávolítása */
}

/* Aktív gomb szövegként */
.menu-button.active {
    color: rgb(255, 85, 0); /* Aktív szöveg színe */
}

/* Hover effekt */
.menu-button:hover {
    color: rgb(255, 68, 0); /* Hover alatt más szín */
    text-decoration: underline;
}
/* Menü tartalom */
.menu-content {
    padding: 20px;
    background-color: #fff;
    min-height: 200px;
}

.menu-section {
    display: none;
}

.menu-section.active {
    display: block;
}


/* Konténer beállítása */
.menu-container {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Pizza kártya stílusa */
.pizza-card {
    position: relative;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
}
/*kereső 2*/
.search-container {
    position: relative;
    display: inline-block;
}

.search-container .icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: orangered;
    font-size: 1.2rem;
    pointer-events: none;
}

.search {
 
    padding: 8px 8px 8px 35px; /* Extra hely a nagyító ikon miatt */
    border: 2px solid orangered;
    border-radius: 8px;
    background-color: rgba(251, 250, 250, 0.5); /* Átlátszó szürke */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Árnyék */
    color: orangered; /* Szöveg színe */
    font-size: 1rem;
    width: 100%;
    outline: none;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.search:focus {
    border-color: #ff4500;
    box-shadow: 0 6px 8px rgba(255, 69, 0, 0.4); /* Fókusz árnyék */
}

.search::placeholder {
    color: #000;
    font-style: italic;
}
/*kereső 2*/
.talalat{
    max-width:250px;
    border:2px solid orangered;
}

.pizza-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Méret címke */
.pizza-size {
    position: absolute;
    z-index: 99;
    top: 10px;
    left: 10px;
    background-color: rgb(255, 85, 0);
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;}
.pizza-like {
    position: absolute;
    z-index: 99;
    top: 10px;
    right: 10px;
    font-size: 14px;
    font-weight: bold;
    }

/* Kép stílusa */
.pizza-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pizza-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Részletek beállítása */
.pizza-details {
    /*padding: 10px;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height:60%;
    /*flex-grow: 1;*/
    background-color: white;
    position: relative;
    top: -80px; /* 100px-szel fedi a képet */
    z-index: 1;
}

/* Pizza név */
.pizza-name {
    width:100%;
    font-size: 14px;
    font-weight: bold;
    border-bottom:1px solid silver;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Összetevők */
.pizza-ingredients {
    font-size: 12px;
    margin:10px;
    text-align: justify;
    color: #555;
    flex-grow: 1;
}
/*infósáv*/
.pizza-infosav {
    display: flex;
    position:absolute;
    width:100%;
    font-size:12px;
    color:grey;
    bottom: 50px;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    /*border-top: 1px solid #ddd;*/
}

/* Kártya lábléc */
.pizza-footer {
    display: flex;
    position:absolute;
    width:100%;
    bottom: 3px;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.pizza-price {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.add-to-cart {
    background-color: orangered;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.add-to-cart:hover {
    background-color: #681f03;
    color:white;
    text-decoration: none;
}
/*wazebtn*/
.wazebtn {
    background:orange; 
    color:#000; 
    padding:3px; 
    border-radius:5px; 
    text-decoration: none;
}
/*details fejléc*/
.fejlec_szoveg{
 width:100%;
 display: flex;
 justify-content: space-between;
    align-items: center;
    padding: 10px;

}
/*fejléc vissza gomb*/
.head_btn{
    color:#e03e00;
    text-decoration: none;
    margin: 5px 22px 5px 5px;

}
.head_btn:hover{
    color:white;text-shadow:0px 0px 3px red, 0px 0px 10px rgb(255, 69, 0), 0px 0px 20px #ffa012, 0px 0px 40px #ffa012, 0px 0px 80px #ffa012;
    text-decoration: none;
}
.doboz {
    background-color: rgba(102, 101, 101, 0.08);
    border-radius: 12px;
    padding:8px;
}
.doboz2 {
    background-color: rgba(102, 101, 101, 0.3);
    color:rgb(9, 0, 0);
    border-radius: 12px;
    padding:8px;
}
.doboz3 {
    background-color: rgba(223, 221, 221, 0.3);
    color:rgb(9, 0, 0);
    border-radius: 12px;
    padding:8px;
}

.bordered10{
    border-radius: 10px;
}
.tablebox{
    position: fixed; left:0; bottom: 0; width: 20%; height:100px; background-color: #333; color: white; text-align: center; padding: 10px; font-size: 16px;
display:flex; flex-wrap: wrap;}