/* mindig teljes magasság */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* a fő tartalom nőhet */
.content {
  flex: 1;  /* kitölti a maradék helyet */
}

/* footer lent marad */
.footer {
  background: #2e2e2e;
  color: white;
  text-align: center;
  padding: 20px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-size: cover;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.topbar .logo {
  position: relative;
}
/* Desktop nézetben LOGO középre */
@media (min-width: 769px) {
  .topbar {
    justify-content: center; /* LOGO középen */
    position: relative;      /* hogy a kosarat és menüt jobbra-balra tudjuk pozícionálni */
  }

  .topbar .menu-toggle {
    position: absolute;
    left: 20px;        /* fehér ikon */
  }

  .topbar .cart {
    position: absolute;
    top: 25px;
    left: 75%;
  }
  .topbar .logo {
  position: relative;
  left: 35%;
  }
}

.topbar .user-section {
  display: flex;
  align-items: center;
  gap: 12px; /* kis tér a név és gomb között */
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
}

.topbar .user-section span {
  color: #fff;
  font-weight: 500;
}

.topbar .user-section a {
  color: #2ecc71;
  font-weight: bold;
  text-decoration: none;
  margin-left: 5px;
}

.topbar .user-section a:hover {
  text-decoration: underline;
}

.menu a {
  color: #fff;
  text-decoration: none;
  padding: 15px 20px;
  display: block;
}
.menu a:hover {
  background-color: #707070;
}
.menu a.active {
  background-color: #575757;
}

/* ===== Hero ===== */
.hero {
  background: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* függőlegesen közép */
  align-items: center;      /* vízszintesen közép */
  min-height: 200px;        /* minimum magasság */
  color: white;
  text-align: center;
  padding: 60px 20px;       /* kisebb padding elég */
  overflow: hidden;
  z-index: -1;
  padding: 40px 15px;
}
.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 1;
  z-index: -1;
}
/* Blur / sötétítés overlay */
body:before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  z-index: -1;
}
.hero h1,
.hero p {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 1);;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Content ===== */
.content {
  background: hsl(0, 0%, 75%);
  padding: 40px 20px;
  text-align: center;
}
.content h2 {
  color: white;
  margin-bottom: 20px;
}
.content p {
  color: white;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5em;
}

/* ===== Footer ===== */
.footer {
  background: #2e2e2e;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
.footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

/* ===== Webshop terméklista ===== */
#product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.product {
  background: #fff;
  border: 1px solid #ccc;
  padding: 15px;
  max-width: 250px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.product:active {
  transform: scale(0.97);
}
.product img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.product h3 {
  margin: 10px 0;
  font-size: 1.2rem;
}
.product p {
  display: flex;
  justify-content: center;
  font-size: 0.9rem;
  color: #333;
}

/* ===== Buttons ===== */
button {
  background: #27ae60;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}
button:hover {
  background: #2ecc71;
  transform: scale(1.05);
}
.remove-btn {
  background: #c0392b;
}
.remove-btn:hover {
  background: #e74c3c;
}

/* ===== Kosár (cart) ===== */

/* Kosár tartalom középre igazítva */
#cart-items {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
}

/* Kosár sorok dizájn */
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 10px 0;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* kép külön kis fix szélességben */
.cart-item img {
  width: 60px;
  height: auto;
  border-radius: 5px;
}

/* név + íz + ár blokk */
.cart-item .info {
  flex: 1;
  text-align: left;
}

.cart-item .info strong {
  font-size: 1rem;
}

.cart-item .info .flavor-label {
  background: #27ae60;
  color: #fff;
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 0.8em;
  margin-left: 5px;
}

.cart-controls span {
  display: inline-flex;
  align-items: center;   /* függőleges közép */
  justify-content: center; /* vízszintes közép */
  min-width: 32px;       /* legyen fix szélesség */
  height: 32px;          /* magasság egyezzen a gombokkal */
  background: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-weight: bold;
}

.cart-controls button {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.cart-controls button:hover {
  opacity: 0.8;
  scale: 1.2;
}

.cart-controls .remove-btn {
  background: transparent;
  color: #fff;
}

/* Kosár összesítő is középen */
#cart-total {
  max-width: 900px;
  margin: 20px auto;
  text-align: right;
}

/* ===== Checkout ===== */
.checkout-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.checkout-form, 
#order-summary {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 350px;
}
.checkout-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* ===== Egyéb ===== */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
li {
  margin: 6px 0;
}
.old-price {
  text-decoration: line-through;
  color: #000000;
  margin-right: 8px;
  font-size: 0.9rem;
}
.new-price {
  color: #d32f2f;
  font-weight: bold;
  font-size: 1.1rem;
}
.flavor-label {
  background: #8d8d8d;
  color: #fff;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.85em;
  margin-left: 5px;
  top: -2px;
  position: relative;
}

/* Animációhoz */
.fly-image {
  position: absolute;
  z-index: 9999;
  pointer-events: none;
  transition: transform 0.8s ease-in-out, opacity 0.6s ease-in-out;
  will-change: transform, opacity;
}

/* Vissza link */
a.back-link {
  display: inline-block;
  margin-top: 20px;
  background: #34495e;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.2s;
}
a.back-link:hover {
  background: #2c3e50;
}

/* Ajánlott termékek */
.related {
  margin-top: 40px;
  text-align: center;
}
.related .product {
  display: inline-block;
  margin: 10px;
  padding: 15px;
  width: 180px;
  border-radius: 12px;
  transition: 0.3s;
}
.related img {
  max-width: 120px;
  margin-bottom: 10px;
}
.related h4 {
  font-size: 14px;
  margin: 5px 0;
  color: #e74c3c;
}
.related p {
  margin: 5px 0;
  font-weight: bold;
}
.related button {
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 6px;
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    align-items: center;
  }
  .hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 1;
  z-index: -1;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  #product-list {
    flex-direction: column;
    align-items: center;
  }

  .checkout-container {
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-form,
  #order-summary {
    width: 80%;
    max-width: 500px; /* desktopon ne legyen túl széles */
    margin: 0 auto;   /* középre igazítás */
  }

  .product img,
  #product-detail img {
    max-width: 100%;
    height: auto;
  }
}

/* Hamburger menü */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
  padding: 10px 20px;
}

@media (max-width: 768px) {
  .menu {
    display: flex;
    flex-direction: column;
    background: #2e2e2e;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .menu.show {
    max-height: 500px; /* elég nagy érték, hogy kiférjen */
    transition: max-height 0.3s ease-in;
  }
  .menu a {
    padding: 15px;
    text-align: center;
  }
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .cart-item img {
    margin-bottom: 10px;
  }

  .cart-controls {
    margin-top: 8px;
    align-self: flex-end;
  }

  .cart-item div {
    font-size: 14px; /* kisebb szöveg */
    line-height: 1.4em; /* több hely a sorok között */
  }
}

@media (max-width: 600px) {

  .cart-item .flavor-label {
    display: inline-block;
    top: -4px;
    position: relative;
  }

  .cart-item .price-line {
    font-weight: bold;
    color: #333;
    margin-top: 6px;
    display: block;
  }
}

.cart-link {
  color: #000;
  text-decoration: none;
}
.cart-link:hover {
  text-decoration: underline;
}
.featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 50px auto;
  max-width: 1100px;
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; /* egész kártya kattintható */
}
.featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.featured img {
  width: 300px;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.featured img:hover {
  transform: scale(1.05);
}

.featured-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.featured.reverse .featured-text {
  text-align: right;
}

/* árak */
.featured-text .old-price {
  text-decoration: line-through;
  color: #000000;
  margin-right: 10px;
  font-size: 1rem;
}
.featured-text .new-price {
  color: #ff0000;
  font-weight: bold;
  font-size: 2rem;
}

.featured-text h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.featured-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.5em;
}

.featured-text button {
  margin-top: 15px;
  background: #27ae60;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.2s;
}
.featured-text button:hover {
  background: #2ecc71;
  transform: scale(1.05);
}

/* ne kattintson át a gomb */
.featured-text button {
  position: relative;
  z-index: 2;
}

.featured.reverse {
  flex-direction: row-reverse;
}
/* Mobilhoz: ne bontsuk oszlopra, csak kicsinyítsünk */
@media (max-width: 768px) {
  .featured {
    flex-direction: row;        /* maradjon sorban, mint desktopon */
    align-items: center;
    text-align: left;
    padding: 10px;
  }

  .featured.reverse {
    flex-direction: row-reverse; /* jobb-bal felosztás */
  }

  .featured img {
    max-width: 40%;   /* kisebb kép mobilon */
    height: auto;
  }

  .featured-text {
    flex: 1;
    padding: 0 10px;
    text-align: left; /* így jobban hasonlít a desktop verzióra */
  }

  .featured-text h3 {
    font-size: 1rem;
  }

  .featured-text p {
    font-size: 0.85rem;
  }

  .featured-text .new-price {
    font-size: 1rem;
  }
}

/* Színes hero szállításhoz */
.hero-red {
  color: white;
  padding: 80px 20px;
}

.shipping-section {
  text-align: center;
  padding: 50px 20px;
}

.delivery-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.option {
  background: white;
  padding: 25px;
  border-radius: 10px;
  max-width: 350px;
  flex: 1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.option:hover {
  transform: translateY(-5px);
}

.option .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #d32f2f;
}

.option h3 {
  margin-bottom: 15px;
  color: #333;
}

.option p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5em;
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
  .delivery-options {
    flex-direction: column;
    align-items: center;
  }
}

/* Info blokkok */
.info-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.info-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 300px;
  text-align: center;
}
.info-box h3 {
  margin-bottom: 10px;
  color: #e53935;
}
/* Hero kék verzió */
.hero-blue {
  color: white;
  text-align: center;
  padding: 80px 20px;
}

/* Ügyfélszolgálat oldal */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  align-items: flex-start; /* <<< fontos */
}

.contact-info, .contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 1 1 350px;
  max-width: 500px;
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 15px;
  color: #1976d2;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(100%); /* alap: jobbról vár */
  transition: transform .6s ease, opacity .6s ease;
}

.hero-slider .slide.active {
  opacity: 1;
  transform: translateX(0); /* középen */
}

.hero-slider .slide.leaving {
  opacity: 0;
  transform: translateX(-100%); /* balra távozik */
}

.product-detail-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Csak desktopon (pl. 768px fölött) */
@media (min-width: 768px) {
  .product-left {
    margin-right: 100px;
  }
}

.product-left img {
  max-width: 400px;
  border-radius: 15px;
}

.product-right {
  max-width: 500px;
  text-align: left;
}

.product-right h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.product-right .long-desc {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.product-right ul.features {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.price-section {
  font-size: 1.2rem;
  margin-top: 10px;
}

.old-price {
  text-decoration: line-through;
  color: rgb(0, 0, 0);
  margin-right: 10px;
  font-size: 2rem;
}

.new-price {
  color: #e74c3c;
  font-weight: bold;
  font-size: 1.4rem;
}
/* ===== Termék részletei oldal ===== */
#product-detail {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}

#product-detail img {
  width: 380px;
  border-radius: 12px;
  object-fit: contain;
}

#product-detail h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

#product-detail p,
#product-detail ul {
  line-height: 1.6em;
  color: #ffffff;
}

#product-detail ul {
  list-style: disc;
  margin-left: 20px;
}

/* #product-detail button {
  margin-top: 15px;
} */

/* Mobil nézet */
@media (max-width: 768px) {
  #product-detail {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  #product-detail img {
    width: 80%;
  }

  #product-detail ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
}

.order-id-box {
    margin: 40px auto;
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 25px 40px;
    max-width: 500px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  .order-id-box h2 {
    color: #222;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .order-id-box p {
    color: #555;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .order-id {
    background: #27ae60;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
  }

  .order-id span {
    font-weight: normal;
    margin-right: 8px;
  }

.popup-message {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  text-align: center;
  max-width: 80%;
}

.popup-message.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Színek */
.popup-message.error {
  background: #d32f2f;
}
.popup-message.success {
  background: #2e7d32;
}
.popup-message.info {
  background: #1976d2;
}
/* === 18+ overlay === */
.age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  text-align: center;
  padding: 20px;
}

.age-box {
  background: rgba(30, 30, 30, 0.9);
  border-radius: 12px;
  padding: 40px;
  max-width: 400px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.age-box h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.age-box p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #ccc;
}

.age-box button {
  background: #2e7d32;
  border: none;
  color: white;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  margin: 5px;
  transition: background 0.3s ease;
}

.age-box button:hover {
  background: #1b5e20;
}

.age-box button.decline {
  background: #b71c1c;
}

.age-box button.decline:hover {
  background: #7f0000;
}

.topbar .user-area {
  position: absolute;
  top: 25px;
  left: 70%;                /* középre igazítja vízszintesen */
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #fff;
}

.topbar .user-area a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.topbar .user-area a:hover {
  text-decoration: underline;
}

/* Ha túl középre került, egy kicsit jobbra tolhatod így: */
@media (max-width: 768px) {
  .topbar .user-area {
    display: none !important;
  }
}

/* === MOBILBARÁT RENDELÉS LISTA === */
@media (max-width: 768px) {
  table.order-table,
  table.order-table thead,
  table.order-table tbody,
  table.order-table th,
  table.order-table td,
  table.order-table tr {
    display: block;
  }

  /* Fejléc elrejtése */
  table.order-table thead {
    display: none;
  }

  /* Minden rendelés kártyaszerű lesz */
  table.order-table tr {
    margin-bottom: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 12px;
  }

  table.order-table td {
    border: none;
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
  }

  table.order-table td:last-child {
    border-bottom: none;
  }

  /* Bal oldal: mező neve */
  table.order-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #333;
  }

  /* A „Termékek” oszlopban a Megnyitás rész szebb */
  table.order-table details {
    margin-top: 10px;
  }

  table.order-table details summary {
    color: #1976d2;
    cursor: pointer;
  }

  table.order-table details[open] summary {
    color: #2e7d32;
  }
}

/* BAL OLDAL (logo) */
.topbar-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar-left img {
  max-height: 45px;
  filter: brightness(0) invert(1);
  border-radius: 6px;
}

/* KÖZÉP (bejelentkezés / fiók) */
.topbar-center {
  flex: 1;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0;
}
.topbar-center a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin: 0 5px;
}
.topbar-center a:hover {
  text-decoration: underline;
}

/* JOBB OLDAL (kosár) */
.topbar-right {
  flex: 1;
  display: flex;
  align-items: center;
}
.topbar-right a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.topbar-right a:hover {
  text-decoration: underline;
}

/* Mobilon elrejthető középső rész */
@media (max-width: 768px) {
  .topbar-center {
    display: none;
  }
}

/* Bal oldal: logo */
.topbar-left img {
  max-height: 45px;
  filter: brightness(0) invert(1);
  border-radius: 6px;
}

/* Középső rész: keresősáv hely */
.topbar-center {
  flex: 1;
  display: flex;
  justify-content: center;
}
.search-placeholder {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  width: 100%;
  max-width: 500px;
  opacity: 0.6;
}
.search-placeholder input {
  border: none;
  flex: 1;
  padding: 8px;
  font-size: 0.95rem;
}
.search-placeholder button {
  background: #ff4fa5;
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
}

/* Jobb oldal: user + kosár */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  top: 5px;
}
.topbar-right a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}
.topbar-right a:hover {
  opacity: 0.8;
}
.topbar-right i {
  font-size: 18px;
}

/* Mobilon */
@media (max-width: 768px) {
  .topbar-center {
    display: none; /* kereső elrejtése */
  }
  .topbar-left{
    position: relative;
    top: -5px;
    left: 15%;
  }
  .topbar-right{
    top: 0;
    justify-content: flex-end;
  }
  /* Csak a felhasználó szöveg tűnjön el mobilon */
  #user-text {
    display: none;
  }

  /* Kosár darabszám maradjon látható */
  #cart-count {
    display: inline;
  }
  .topbar {
    padding: 10px 20px;
  }
}

#user-text {
  visibility: hidden;
  transition: visibility 0s, opacity 0.5s ease;
  opacity: 0;
}

#user-text.loaded {
  visibility: visible;
  opacity: 1;
}

/* === HAMBURGER GOMB STÍLUS FELÜLÍRÁS === */
.menu-toggle {
  background: transparent !important; /* átlátszó háttér */
  color: #fff !important;             /* fehér ikon */
  border: none !important;
  padding: 8px 12px !important;
  border-radius: 0 !important;
  cursor: pointer;
  font-size: 26px !important;
  transition: none !important;
}

.menu-toggle:hover {
  background: transparent !important;
  color: #fff !important;
  transform: none !important;
  opacity: 0.8;
}

/* === Vélemények és értékelés === */
.review-section {
  background: #fff;
  margin-top: 30px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.review-section h3 {
  color: #e74c3c;
  margin-bottom: 15px;
}

.review {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.review:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-stars i {
  color: #f1c40f;
  margin-left: 2px;
}

.review-date {
  color: #000000;
  font-size: 0.85rem;
}

.review-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
}

.star-rating {
  display: flex;
  gap: 5px;
  cursor: pointer;
}

.star-rating i {
  font-size: 22px;
  color: #f1c40f;
}

.star-rating i.fa-regular {
  color: #ccc;
}

.review-form button {
  background: #27ae60;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 5px;
}

.review-form button:hover {
  background: #2ecc71;
}


.review-section {
  margin-top: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  max-width: 520px;
}

.review .review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.review-stars i { color: #f4c150; margin-left: 4px; }
.delete-review {
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 8px;
  cursor: pointer;
}


/* Görgethető véleménylista */
#review-list {
  scroll-behavior: smooth;
  max-height: 300px;   /* tetszőleges magasság, pl. 300-400px */
  overflow-y: auto;    /* függőleges görgetés bekapcsolása */
  padding-right: 8px;  /* hogy ne takarja el a scrollbar a szöveget */
}

/* opcionális: scrollbar szebb kinézete (modern böngészőkben) */
#review-list::-webkit-scrollbar {
  width: 8px;
}
#review-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
#review-list::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* Alap: görgethető lista */
#review-list {
  max-height: 350px;
  overflow-y: auto;
  padding-right: 8px;
  scroll-behavior: smooth;
}

/* Görgetősáv szebb kinézete (asztali) */
#review-list::-webkit-scrollbar {
  width: 8px;
}
#review-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
#review-list::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* --- MOBILBARÁT --- */
@media (max-width: 768px) {
  #review-list {
    max-height: none;          /* mobilon ne legyen fix magasság */
    overflow-y: visible;       /* ne vágja le a tartalmat */
  }

  .review {
    padding: 8px 0;
  }

  .review-header {
    flex-wrap: wrap;
    gap: 4px;
  }

  .review-header button.delete-review {
    font-size: 13px;
    padding: 4px 8px;
  }
}
@media (max-width: 768px) {
  #review-list {
    max-height: 300px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; /* sima görgetés iOS-en */
  }
}

.hero, .content, .review-section, .product-detail-container {
  background: transparent;
  border-radius: 12px;
}


.featured, 
.product-detail-container,
.review-section {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}


.featured:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


/* === ÜVEGES HATÁS GLOBÁLIS STÍLUSOK === */

/* Teljes oldal áttetsző, füstös háttér fölött */
body {
  position: relative;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  overflow-x: hidden;
  z-index: 0;
}

/* === Fix háttér + blur overlay === */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('ProductImg/wallpaper.webp') no-repeat center center / cover;
  z-index: -5; /* a blur mögé kerül */
}

/* Blur + sötétítés overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.15); /* sötétítés */
  backdrop-filter: blur(3px);      /* itt a tényleges blur */
  -webkit-backdrop-filter: blur(3px);
  z-index: -4; /* a tartalom alá, de a háttér fölé */
}

/* Hero: szöveg kiemelve, áttetsző háttér nélkül */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  backdrop-filter: none;
  background: transparent;
}

.hero h1 {
  text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

/* === GLASSMORPHISM BLOKKOK === */
.featured,
.product-detail-container,
.product,
.review-section,
.info-box,
.option,
.checkout-form,
#order-summary,
.contact-info,
.contact-form,
.order-id-box {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  color: #fff;
}

/* Hover állapot — kicsit világosabb üveg */
.order-id-box:hover,
.product:hover,
.featured:hover,
.review-section:hover,
.info-box:hover,
.option:hover,
.checkout-form:hover,
#order-summary:hover,
.contact-info:hover,
.contact-form:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Üveg kártyák tartalma */
.featured-text h3,
.product-right h2,
.review-section h3,
.review strong,
.info-box h3,
.option h3, 
.order-id-box h3 {
  color: #fff;
}

/* Szövegek kicsit világosabbak a sötét háttéren */
.featured-text p,
.order-id-box p,
.product-right p,
.review p,
.info-box p,
.option p {
  color: #eaeaea;
}

.order-id-box {
  justify-items: center;
}

/* Árak kontrasztosak */
.old-price {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: line-through;
  font-size: 1rem;
}

.new-price {
  color: #ff0026;
  font-weight: bold;
  font-size: 2rem;
}

.new-price-related {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.4rem;
}

/* Gombok neon hatásúak az üveg felületen */
button {
  background: rgba(39, 174, 96, 0.9);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

button:hover {
  background: rgba(46, 204, 113, 1);
  transform: scale(1.05);
}

/* Review form mezők átlátszóak */
.review-form input,
.review-form textarea {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

/* Görgetősáv halványabb, illeszkedik a stílushoz */
#review-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
}

/* Content blokk áttetsző */
.content {
  border-radius: 16px;
  padding: 40px 20px;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* Egyes kosár elemek — glassmorphism */
.cart-item {
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transform: translateZ(0);
}

/* Hover állapot — világosabb üveg és kis lebegés */
.cart-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* A szövegek legyenek jól olvashatók */
.cart-item .info strong,
.cart-item .flavor-label,
.cart-item .price-line,
.cart-item .stock-info {
  color: #fff;
}

/* Íz címke kicsit áttetsző */
.cart-item .flavor-label {
  background: rgba(39, 174, 96, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Kosár gombok illeszkednek a stílushoz */
.cart-controls button {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: bold;
  transition: 0.2s;
}

.cart-controls button:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.15);
}

/* A darabszám “doboz” is üveges */
.cart-controls span {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

/* Eltávolítás gomb pirosan világít */
.cart-controls .remove-btn {
  background: rgba(231, 76, 60, 0.8);
  border: none;
  color: #fff;
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.4);
}

.cart-controls .remove-btn:hover {
  background: rgba(231, 76, 60, 1);
  transform: scale(1.1);
}

#promo-message {
  color: #00ff7f !important;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  margin: 20px 0;
  animation: glowPulse 2s ease-in-out infinite;
  letter-spacing: 0.5px;
}

.checkout-form button {
  margin-top: 15px;
}


.checkout-container {
  max-width: 900px;
  margin: 60px auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.checkout-form {
  flex: 1;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.checkout-form label {
  display: block;
  margin-top: 12px;
  margin-bottom: 4px;
  font-weight: bold;
  color: #00ffbf;
  text-shadow: 0 0 6px rgba(0, 255, 127, 0.4);
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: all 0.25s ease;
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: #00ffbf;
  box-shadow: 0 0 10px rgba(0, 255, 127, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

/* Gomb */
.checkout-form button {
  margin-top: 20px;
  background: rgba(0, 255, 127, 0.85);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.3);
}

.checkout-form button:hover {
  background: rgba(0, 255, 127, 1);
  box-shadow: 0 0 20px rgba(0, 255, 127, 0.7);
  transform: scale(1.05);
}

/* Összesítő kártya (jobb oldal) */
.order-summary-card {
  flex: 1;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}


/* === Ügyfélszolgálat (Contact) oldal === */

.contact-container {
  max-width: 1100px;
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* Bal oldal – elérhetőség */
.contact-info {
  flex: 1;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  animation: fadeIn 0.8s ease;
}

.contact-info h2 {
  margin-bottom: 15px;
  color: #00ffbf;
  text-shadow: 0 0 10px rgba(0, 255, 191, 0.6);
}

.contact-info p {
  margin: 8px 0;
  font-size: 1rem;
}

/* Jobb oldal – kapcsolatfelvételi űrlap */
.contact-form {
  flex: 1.2;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  animation: fadeIn 0.8s ease 0.1s backwards;
}

.contact-form h2 {
  margin-bottom: 15px;
  color: #00ffbf;
  text-shadow: 0 0 10px rgba(0, 255, 191, 0.6);
}

.contact-form label {
  display: block;
  margin-top: 12px;
  margin-bottom: 4px;
  font-weight: bold;
  color: #00ffbf;
  text-shadow: 0 0 6px rgba(0, 255, 127, 0.4);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: all 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00ffbf;
  box-shadow: 0 0 10px rgba(0, 255, 127, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

/* Gomb */
.contact-form button {
  margin-top: 20px;
  background: rgba(0, 255, 127, 0.85);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.3);
}

.contact-form button:hover {
  background: rgba(0, 255, 127, 1);
  box-shadow: 0 0 20px rgba(0, 255, 127, 0.7);
  transform: scale(1.05);
}

/* Egyszerű megjelenési animáció */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobilbarát */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/* === Átvétel és szállítás oldal === */
.shipping-section h2 {
  text-align: center;
  color: #00ffbf;
  text-shadow: 0 0 12px rgba(0, 255, 191, 0.6);
  margin-bottom: 20px;
}

.shipping-section p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 30px;
}

.delivery-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.delivery-options .option {
  flex: 1;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.delivery-options .option:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 127, 0.4);
  transform: translateY(-4px);
}

.delivery-options .icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 255, 127, 0.4);
}

/* === Garancia oldal === */

.content h2 {
  text-align: center;
  color: #00ffbf;
  text-shadow: 0 0 12px rgba(0, 255, 191, 0.6);
  margin-bottom: 20px;
}

.content p {
  line-height: 1.6;
  font-size: 1rem;
}

.info-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.info-box {
  flex: 1;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.info-box:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 127, 0.4);
  transform: translateY(-4px);
}

.info-box h3 {
  color: #00ffbf;
  text-shadow: 0 0 8px rgba(0, 255, 191, 0.5);
  margin-bottom: 10px;
}

/* === Animációk és mobilnézet === */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product p {
  color: white;
  align-items: anchor-center;
}

/* ===== Üveges navigációs sáv (topbar + menu) ===== */
.topbar,
.menu {
  background: rgba(0, 0, 0, 0.6);              /* félig átlátszó fekete háttér */
  backdrop-filter: blur(6px);                  /* üveg hatás */
  -webkit-backdrop-filter: blur(6px);          /* Safari támogatás */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);   /* enyhe árnyék */
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Menü specifikus módosítások */
/* ===== Menü animált legördülés ===== */


.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}

.menu a:hover {
  color: #00ffbf;
  transform: scale(1.05);
  text-shadow: 0 0 8px rgba(0, 255, 191, 0.6);
}

@media (max-width: 768px) {
  .menu-toggle {
    font-size: 1.8rem;  /* kicsit nagyobb ikon */
    top: -6px;          /* még picit feljebb emeli */
  }

  .topbar {
    padding: 10px 20px;  /* kevesebb tér, hogy ne legyen túl magas */
  }

  .menu {
  display: flex;
  justify-content: center;
  flex-direction: column;               /* ha mobilon egymás alá kerül */
  gap: 20px;
  padding: 12px 0;
  overflow: hidden;                     /* ne látszódjon a tartalom záráskor */
  max-height: 0;                        /* alapból rejtve */
  opacity: 0;
  transform: translateY(-10px);         /* kicsit felülről jön */
  transition: all 0.4s ease;            /* sima legördülés */
}

/* Nyitott állapot */
.menu.show {
  max-height: 300px;                    /* kb. ekkora lesz a menü magassága */
  opacity: 1;
  transform: translateY(0);
}
}

.menu { 
  background: rgba(0, 0, 0, 0.6); /* átlátszó fekete háttér */ 
  backdrop-filter: blur(6px); /* üveg hatás */ 
  -webkit-backdrop-filter: blur(6px); /* Safari támogatás */ 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  gap: 20px; /* távolság a menüpontok között */ 
  padding: 12px 0; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.15); 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* finom árnyék */ 
  z-index: 999; 
}

/* --- Mobil kompatibilitás javítása --- */
@media (max-width: 768px) {
  body {
    background: url('/ProductImg/wallpaper.webp') no-repeat center center scroll !important;
    background-size: cover !important;
  }
}

.highlight-link {
  color: #00ff99; /* ugyanaz a zöld árnyalat, mint a gomboké */
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.highlight-link:hover {
  color: #00ffaa;
  text-shadow: 0 0 8px rgba(0, 255, 170, 0.8);
}
