body {
  font-family: Arial, sans-serif;
  background-color: #fff0f5;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  overflow-x: hidden;
}
header {
  width: 100%; /* Forțăm lățimea completă */
  height: 400px;
  overflow: hidden;
  position: relative;
  margin: 0; /* Eliminăm orice margini accidentale */
}

.imagine-header {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.language-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
}

.btn-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #ff69b4;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.flag-icon,
.flag-img,
.flag {
  width: 24px; /* Lățime fixă */
  height: 24px; /* Înălțime fixă pentru a fi pătrat */
  object-fit: cover; /* Taie imaginea fără să o deformeze */
  border-radius: 50%; /* Transformă steagul într-un cerc */
  vertical-align: middle; /* Aliniază steagul la mijlocul rândului de text */
  margin-right: 8px; /* Spațiu între steag și text */
  border: 1px solid #ddd; /* O bordură fină (opțional) */
  display: inline-block; /* Se asigură că se comportă ca un element de text */
}
.meniu {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #ffb6c1;
  padding: 10px 20px;
  gap: 15px;
  flex-wrap: wrap;
}

.meniu a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
  background-color: white;
  transition: background-color 0.3s;
}

.meniu a:hover {
  background-color: #ffe4e1;
}

.font-pacifico {
  font-family: "Pacifico", cursive;
}

.descriere-titlu,
.descriere-detaliata {
  text-align: center;
  padding: 40px;
  font-size: 1.2em;
}

.descriere-titlu h2 {
  color: #835b5b;
  font-size: 2.5em;
}

.imagine-principala img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 30px auto;
  border: 3px solid #ff69b4;
  border-radius: 10px;
  cursor: pointer;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 105, 180, 0.8);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
}

.lightbox-prev {
  left: 30px;
}
.lightbox-next {
  right: 30px;
}

.lista-seturi {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

.mt-30 {
  margin-top: 30px;
}
.italic {
  font-style: italic;
}

footer {
  width: 100%; /* Se întinde pe tot ecranul */
  background-color: #333; /* O culoare închisă ca să vezi că se întinde */
  color: white;
  text-align: center;
  padding: 20px 0; /* Spațiu sus-jos în interiorul footer-ului */
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}
.footer-copy {
  font-size: 12px;
  opacity: 0.8;
}
#priceButton {
  height: 40px;
  width: 200px;
  background-color: #ffb6c1;
  font-family: "Pacifico", cursive;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
}
#priceButton:hover {
  background-color: #f1b6c1;
  transform: scale(1.2);
}
#price {
  font-size: 20px;
  font-family: "Pacifico", cursive;
}
#products {
  width: 100%;
  padding: 12px 20px;
  font-size: 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fff;
  border: 2px solid #000; /* Border negru ca la buton */
  border-radius: 15px; /* Rotunjit ca butonul tau */
  cursor: pointer;
  appearance: none; /* Scoatem sageata default a browserului */
  transition: all 0.3s ease;
  outline: none;
}
