/* ===== FORMULAR ABONARE NEWSLETTER – CODEX.RO ===== */
/* ===== wrapper modul (clasa pusă în AcyMailing: "codex-newsletter") ===== */
.codex-newsletter {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  max-width: 820px;
  height:160px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1.5px solid rgba(5, 80, 78, 0.25);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #e6f5f5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  --footer-text-color: #000;
}

/* ===== layout general pentru câmpuri + buton ===== */
.codex-newsletter .acym_module_form,
.codex-newsletter form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* ===== câmpuri: forțăm peste tema site-ului ===== */
.codex-newsletter div.acym_module_form input[type="text"],
.codex-newsletter div.acym_module_form input[type="email"],
.codex-newsletter .form-control {
  max-width: none !important;
  max-height: none !important;
  width: min(320px, 100%) !important;
  height: 48px !important;
  padding: 10px 14px !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;

  background: #ffffff !important;
  color: #0f2524 !important;
  border: 1.5px solid rgba(5, 80, 78, 0.28) !important;
  border-radius: 10px !important;
  outline: none !important;
  box-shadow: none !important;
}

/* placeholder vizibil */
.codex-newsletter ::placeholder { color: #7aa3a0; opacity: 1; }

/* focus corect */
.codex-newsletter div.acym_module_form input[type="text"]:focus,
.codex-newsletter div.acym_module_form input[type="email"]:focus,
.codex-newsletter .form-control:focus {
  background: #fff !important;
  border-color: #05504e !important;
  box-shadow: 0 0 0 3px rgba(5, 80, 78, 0.15) !important;
  color: #0f2524 !important;
}

/* ===== buton ===== */
.codex-newsletter .acym__submit,
.codex-newsletter button[type="submit"],
.codex-newsletter input[type="submit"] {
  height: 48px !important;
  padding: 0 22px !important;
  background: #05504e !important;
  color: #0f2524  !important;
  font-weight: 800 !important;
  letter-spacing: .3px !important;
  border: 1px solid #05504e !important;
  border-radius: 12px !important;
  cursor: pointer;
  transition: .2s ease;
}
.codex-newsletter .acym__submit:hover,
.codex-newsletter button[type="submit"]:hover,
.codex-newsletter input[type="submit"]:hover {
  background: #0a7974 !important;
  box-shadow: 0 6px 16px rgba(5,80,78,.25) !important;
}

/* ===== checkbox & text termeni ===== */
.codex-newsletter .acym__field__terms,
.codex-newsletter .acym__unsubscribe__container,
.codex-newsletter .acym__form__text {
  width: 100%;
  font-size: .95rem;
  color: #444;
}
.codex-newsletter .acym__field__terms input[type="checkbox"] {
  width: 18px; height: 18px; vertical-align: middle;
  accent-color: #05504e; /* suportat în browsere moderne */
}
.codex-newsletter .acym__field__terms a { color: #0a55ff; }

/* ===== spacing intern pentru câmpuri aliniate cu butonul ===== */
.codex-newsletter .acym__fields {
  display: contents; /* lasă grid-ul flexibil definit mai sus */
}

/* ===== responsive ===== */
@media (max-width: 680px){
  .codex-newsletter div.acym_module_form input[type="text"],
  .codex-newsletter div.acym_module_form input[type="email"]{
    width: 100% !important;
  }
  .codex-newsletter .acym__submit,
  .codex-newsletter input[type="submit"]{
    width: 100% !important;
  }
}
.grup-articole h3 {
  border-left: 5px solid #2a7ae2;
  padding-left: 10px;
  color: #2a7ae2;
}

@media print {
  .no-pdf, .hide-in-pdf {
    display: none !important;
  }
}
.no-display {
  display: none !important;
}

.btn, .blog-list .item-readmore a {
  text-align: left;
}

/* social link de la final articole */
.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #f0f0f0;
  transform: scale(1.1);
  border-color: #999;
}

.social-links img {
  width: 24px;
  height: 24px;
}
/* taguirle din articole si categorii */
ul.tags {
    display: flex;
    justify-content: center; /* centrează tagurile pe pagină */
    flex-wrap: wrap;         /* permite trecerea pe rând nou dacă sunt prea multe */
    gap: 6px;                /* distanța între taguri */
    list-style: none;
    padding: 0;
    margin: 20px auto;
    background: none;
    border: none; /* border: 1px solid #ccc; */
}

ul.tags li {
    background: none;
    border-radius: 0;
    margin: 0;               /* elimină spațiile suplimentare */
    padding: 0;        /* padding: 4px 8px;   opțional: ajustează spațiul intern */
}
/* butoane */
.codex-nav-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.nav-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #005a9e;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  flex: 1 1 45%;
  text-align: center;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: #1e2a44;
  color: #fff;
}

@media (max-width: 768px) {
  .codex-nav-buttons {
    flex-direction: column;
    align-items: center;
  }

  .nav-button {
    width: 100%;
    margin-bottom: 10px;
  }
}




.codex-button {
  background-color: #005a9e; /* bleumarin modern */
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.codex-button:hover {
  background-color: #0073cc;
  transform: translateY(-2px);
}

.codex-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.codex-button-gold {
  background-color: #a67c00; /* bleumarin modern */
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.codex-button-gold:hover {
  background-color: #b88a00;
  transform: translateY(-2px);
}

.codex-button-gold:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.footer-buttons {
  text-align: center;
}

.codex-btn {
  display: inline-block;
  width: 220px; /* egale toate */
  margin: 8px auto;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  line-height: 1.4;
}

.codex-btn:hover {
  transform: translateY(-2px);
}

/* Buton auriu */
.codex-btn-gold {
  background-color: #a67c00;
  color: #fff;
}

.codex-btn-gold:hover {
  background-color: #b88a00;
}

/* Buton bleumarin inversat (alb pe închis) */
.codex-btn-dark {
  background-color: #005a9e;
  color: #fff;
}

.codex-btn-dark:hover {
  background-color: #12203b;
}

/* Buton roșu elegant */
.codex-btn-red {
  background-color: #c62828;
  color: #fff;
}

.codex-btn-red:hover {
  background-color: #e53935;
}



.owl-carousel .owl-item img {
    width: 50%;
}

.t4-megamenu h1, .t4-megamenu h2, .t4-megamenu h3, .t4-megamenu h4, .t4-megamenu h5, .t4-megamenu h6 {

    text-align: left;
}


.form-control.input-xlarge,  input.input-xlarge[type=text] {
    max-width: 600px;
    max-height: 70px;
}

.exemplu {
      background-color: #f0f4ff;
      border-left: 4px solid #2a6ef7;
      padding: 1rem 1.2rem;
      margin: 1.5rem 0;
      font-style: italic;
      color: #1a3b7c;
      border-radius: 6px;
    }

    .exemplu::before {
      content: "Exemplu:";
      display: block;
      font-weight: bold;
      margin-bottom: 0.3rem;
      color: #2a6ef7;
    }
	
.view-article .article-intro::before {
  content: "Rezumat: ";
  font-weight: 600;
  color: #333;
  margin-right: 4px;
}

.article-intro {
  display: inline-block; /* păstrează textul pe linie, dar permite margini și border */
  font-size: 90%;
  font-weight: 300;
  color: #666;
  padding-bottom: 0.2rem; /* linie foarte discretă sub intro */
  border-bottom: 1px solid #ddd; /* linie subțire doar sub textul intro */
  margin-bottom: 1.5rem; /* spațiu generos până la restul textului */
}

/* ATENȚIONĂRI */
/* Stil general pentru container */
.atenționare-igiena,
.atenționare-haccp,
.recomandare-igienă,
.recomandare-haccp {
  padding: 12px 16px;
  margin: 16px 0;
  border-left: 5px solid;
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #f9f9f9;
}

/* Stiluri specifice */
.atenționare-igiena {
  border-color: #cc0000;
  background-color: #ffe5e5;
  color: #660000;
}

.atenționare-haccp {
  border-color: #ff9900;
  background-color: #fff3cd;
  color: #664d00;
}

.recomandare-igienă {
  border-color: #00796b;
  background-color: #e0f7fa;
  color: #004d40;
}

.recomandare-haccp {
  border-color: #2e7d32;
  background-color: #e8f5e9;
  color: #1b5e20;
}

/* Bold doar pe primul cuvânt */
.atenționare-igiena strong:first-child,
.atenționare-haccp strong:first-child,
.recomandare-igienă strong:first-child,
.recomandare-haccp strong:first-child {
  font-weight: bold;
  margin-right: 6px;
}

/*Formularul de introducere date abonare =campuri */
.form-control, div.acym_module_form input[type=email], div.acym_module_form input[type=text] {
    max-width: 240px;
    max-height: 30px;
}
.input-group-text, .input-group-addon>span {
    display: flex;
    align-items: center;
    padding: .0rem .15rem;

}
.form-abonare {
    max-width: 240px;
	max-height: 25px

}
.codex-quote {
  position: relative;
  background: #ffffff;
  border-left: 5px solid #0a1733;
  padding: 40px 50px;
  margin: 60px auto;
  font-style: italic;
  font-size: 1.0rem;
  color: #222;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.codex-quote::before {
  content: "“";
  font-size: 300px;
  line-height: 1;
  position: absolute;
  top: -60px;
  left: -20px;
  color: rgba(0, 0, 0, 0.1); /* Mai vizibil dar tot elegant */
  font-family: Georgia, serif;
  z-index: 0;
}

.codex-quote p {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
}

.codex-quote footer {
  font-style: normal;
  font-size: 0.8rem;
  color: #555;
  position: relative;
  z-index: 1;
}

/*Sectiunile pagina 1 speciale */
.sectiune {
    background-color: #f7f7f9; /* gri deschis, elegant */
    border-radius: 8px; /* colțuri ușor rotunjite */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* umbră subtilă */
	width: 100vw; /* ocupă lățimea integrală a ecranului */
	    margin-left: calc(-50vw + 50%); /* poziționează perfect pe ecran */
	    box-sizing: border-box; /* include padding-ul în lățime */
} 
.sectiune2 {
	/*background: linear-gradient(135deg, #FFD194, #FFB74D);*/
	background: linear-gradient(135deg, #FF8C00, #FF6100);
	width: 100vw; /* ocupă lățimea integrală a ecranului */
	    margin-left: calc(-50vw + 50%); /* poziționează perfect pe ecran */
	    box-sizing: border-box; /* include padding-ul în lățime */
		
} 
.sectiune3 {
  width: 100%;
  padding: 60px 20px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(240, 240, 240, 0.85));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3),
              inset 0 -1px 0 rgba(0, 0, 0, 0.05),
              0 6px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 60px;
}

.sectiune4  {
  background-color: #ffffff;
  padding: 60px 20px;
  box-shadow: inset 0 1px 0 #eee, inset 0 -1px 0 #eee;
}
.sectiune5 {
  background-color: #f9f9f9;
  padding: 60px 20px;
}
.sectiune6 {
  background: linear-gradient(to bottom, #fdfdfd, #f9f9f9);
  padding: 60px 20px;
}

/*Chenar */
.highlight-box {
  background-color: #f8f9fa;
  border-left: 5px solid #007bff;
  padding: 15px 20px;
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.t4-megamenu .dropdown-menu li.custom-planuri > a {
    color: red !important;
    font-weight: bold !important;
}

.custom-form-field {
  border: 1px solid #007bff; /* Linie subțire albastră */
  background-color: #403f3e; /* Fundal gri deschis */
  border-radius: 5px; /* Colțuri rotunjite */
  padding: 10px;
  width: 100%;
  color: #333;
  font-size: 14px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.custom-form-field:focus {
  border-color: #0056b3; /* Linie albastru închis la focus */
  background-color: #ffffff; /* Fundal alb la focus */
  outline: none; /* Elimină conturul implicit */
}


        .cuprins {
            max-width: 800px;
            margin: auto;
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        }

        .cuprins h3 {
            text-align: center;
            margin-bottom: 10px;
        }

        .cuprins-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 10px;
            margin: 2px 0;
            text-decoration: none;
            color: #333;
            border-radius: 4px;
            transition: background 0.3s;
        }

        .cuprins-item:hover, .cuprins-item.active {
            background: #e6f7ff;
        }

        .level-0 {
            font-weight: bold;
            cursor: pointer;
        }

        .toggle-indicator {
            font-weight: bold;
            color: #333;
            transition: transform 0.3s;
        }

        .expanded .toggle-indicator {
            transform: rotate(45deg);
        }

        .level-1 {
            display: none; /* Inițial ascunse */
            margin-left: 20px;
        }
        .level-2  {
            display: none; /* Inițial ascunse */
            margin-left: 40px;
        }
        .level-3 {
            display: none; /* Inițial ascunse */
            margin-left: 60px;
        }
        .level-4 {
            display: none; /* Inițial ascunse */
            margin-left: 80px;
        } 
         .level-5 {
            display: none; /* Inițial ascunse */
            margin-left: 100px;
        } 
        @media (max-width: 768px) {
            .cuprins {
                max-width: 100%;
                padding: 10px;
            }
        } 





/* Meniul cuprins in articol custom - start */
.cuprins-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cuprins-menu li {
  margin-bottom: 5px;
}

.cuprins-menu a {
  display: block;
  padding: 8px;
  border: 1px solid #007bff;
  border-radius: 8px;
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cuprins-menu a:hover {
  background-color: #007bff;
  color: #ffffff;
}

.cuprins-menu li.level-0 { margin-left: 0; }
.cuprins-menu li.level-1 { margin-left: 20px; }
.cuprins-menu li.level-2 { margin-left: 40px; }
.cuprins-menu li.level-3 { margin-left: 60px; }
.cuprins-menu li.level-4 { margin-left: 80px; }


/* Meniul in articol custom - start */
.menu-modul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-modul li {
  margin-bottom: 10px;
}

.menu-modul a {
  display: block;
  padding: 10px;
  background-color: #f9f9f9;
  border: 2px solid #007bff; /* Culoarea marginii albastră */
  border-radius: 10px; /* Colțuri rotunjite */
  text-decoration: none;
  color: #007bff; /* Culoarea textului albastru */
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-modul a:hover {
  background-color: #007bff; /* Fundal albastru la hover */
  color: #ffffff; /* Text alb la hover */
}


/* Newsletter content joomla - start */
.acymailing_content2 {
  display: flex;
  align-items: flex-start;
  gap: 20px; /* distanță între imagine și text */
  margin-bottom: 20px;
}

.acym_image2 {
  max-width: 200px; /* dimensiunea maximă a imaginii */
  height: auto;
}

.acym_text2 {
  flex: 1; /* permite textului să ocupe spațiul rămas */
}

.acym_title2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.acydescription2 {
  margin-top: 10px;
  line-height: 1.6;
}

/* Newsletter content joomla - stop */

.acm-hero.style-1 {
    padding-top: 6rem !important;
    padding-bottom: 3rem !important;
}


.tag-button {
    background: none; /* Removes the background */
    border: 1px solid #333; /* Thin border */
    color: #333; /* Text color */
    padding: 5px 10px; /* Padding for spacing */
    font-size: 14px; /* Adjust font size as needed */
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.3s ease; /* Optional transition effect */
	 border-radius: 5px;
}

.tag-button:hover {
    border-color: #666; /* Change border color on hover */
    color: #666; /* Change text color on hover */
}

/*bullet check */
ul.custom-bullet-fa1{
    list-style: none; /* Elimină punctele bullet implicite */
    padding-left: 30px; /* Poziționează textul listat mai spre dreapta */
}
ul.custom-bullet-fa1 li {
    position: relative;
    padding-left: 15px; /* Ajustează distanța dintre bullet și text */
    margin-bottom: 10px; /* Distanțează elementele din listă între ele */
}
ul.custom-bullet-fa1 li::before {
    content: "\f054"; /* Codul pentru o anumită icoană Font Awesome (cerc în acest caz) */
    font-family: "Font Awesome 5 Free"; /* Familia de fonturi pentru Font Awesome */
    font-weight: 900; /* Greutate pentru icoane solide */
    position: absolute;
    left: 0; /* Poziționează icoana chiar la marginea din stânga */
    top: 0.7em; /* Ajustează poziționarea pentru a alinia cu primul rând de text */
    font-size: 0.6em; /* Mărimea icoanei */
    color: #1e2a44; /* Culoarea icoanei */
    line-height: 1; /* Ajustează înălțimea rândului dacă este necesar */
}
ul.custom-bullet-fa1 li p {
    margin: 0; /* Elimină marginile implicite ale paragrafelor */
    padding-left: 0; /* Elimină distanțarea suplimentară între bullet și text */
    line-height: 1.5; /* Ajustează spațierea între rânduri pentru o lizibilitate mai bună */
}

/* bullet cerc */
ul.custom-bullet-fa2 {
    list-style: none; /* Elimină punctele bullet implicite */
    padding-left: 30px; /* Poziționează textul listat mai spre dreapta */
}

ul.custom-bullet-fa2 li {
    position: relative;
    padding-left: 20px; /* Ajustează distanța dintre bullet și text */
    margin-bottom: 10px; /* Distanțează elementele din listă între ele */
}

ul.custom-bullet-fa2 li::before {
    content: "\f111"; /* Codul pentru un cerc plin (Font Awesome) */
    font-family: "Font Awesome 5 Free"; /* Familia de fonturi pentru Font Awesome */
    font-weight: 900; /* Greutate pentru icoane solide */
    position: absolute;
    left: 0; /* Poziționează icoana chiar la marginea din stânga */
    top: 0.9em; /* Ajustează poziționarea pentru a alinia cu primul rând de text */
    font-size: 0.6em; /* Mărimea icoanei */
    color: #1e2a44; /* Culoarea icoanei */
    line-height: 1; /* Ajustează înălțimea rândului dacă este necesar */
}

ul.custom-bullet-fa2 li p {
    margin: 0; /* Elimină marginile implicite ale paragrafelor */
    padding-left: 0; /* Elimină distanțarea suplimentară între bullet și text */
    line-height: 1.5; /* Ajustează spațierea între rânduri pentru o lizibilitate mai bună */
}

ul.custom-bullet-fa2 ul {
    list-style: none; /* Elimină bullet-urile implicite și folosește Font Awesome */
    margin-left: 20px; /* Distanțează sublista față de lista părinte */
    padding-left: 50px; /* Adaugă padding suplimentar */
}

ul.custom-bullet-fa2 ul li {
    position: relative;
    padding-left: 15px; /* Asigură-te că nu există padding suplimentar */
    margin-bottom: 5px; /* Distanțează elementele din sublistă */
}

ul.custom-bullet-fa2 ul li::before {
    content: "\f22d"; /* Codul pentru cerculeț gol (Font Awesome) */
    font-family: "Font Awesome 5 Free"; /* Familia de fonturi pentru Font Awesome */
    font-weight: 900; /* Greutate pentru icoane solide */
    position: absolute;
    left: 0; /* Poziționează icoana chiar la marginea din stânga */
    top: 0.4em; /* Ajustează poziționarea pentru a alinia cu primul rând de text */
    font-size: 0.9em; /* Mărimea icoanei */
    color: #1e2a44; /* Culoarea icoanei */
    line-height: 1; /* Ajustează înălțimea rândului dacă este necesar */
}
/* bullet cerc cu sageata */
ul.custom-bullet-fa3 {
    list-style: none; /* Elimină punctele bullet implicite */
    padding-left: 30px; /* Poziționează textul listat mai spre dreapta */
}

ul.custom-bullet-fa3 li {
    position: relative;
    padding-left: 15px; /* Ajustează distanța dintre bullet și text */
    margin-bottom: 10px; /* Distanțează elementele din listă între ele */
}

ul.custom-bullet-fa3 li::before {
    content: "\f35a"; /* Codul pentru o anumită icoană Font Awesome (cerc în acest caz) */
    font-family: "Font Awesome 5 Free"; /* Familia de fonturi pentru Font Awesome */
    font-weight: 900; /* Greutate pentru icoane solide */
    position: absolute;
    left: 0; /* Poziționează icoana chiar la marginea din stânga */
    top: 0.7em; /* Ajustează poziționarea pentru a alinia cu primul rând de text */
    font-size: 0.6em; /* Mărimea icoanei */
    color: #1e2a44; /* Culoarea icoanei */
    line-height: 1; /* Ajustează înălțimea rândului dacă este necesar */
}

ul.custom-bullet-fa3 li p {
    margin: 0; /* Elimină marginile implicite ale paragrafelor */
    padding-left: 0; /* Elimină distanțarea suplimentară între bullet și text */
    line-height: 1.5; /* Ajustează spațierea între rânduri pentru o lizibilitate mai bună */
}

/* Buleturi LISTA1 */

@media (max-width: 991.98px) {
  .item-page ul.lista1 {
    margin-bottom: 2rem;
	
  }
}
.item-page ul.lista1 li {
  font-size: 18px;
  display: 0;/* flex: scoate titlu in stanga din bold */
  align-items: right;
  gap: 1rem;
  color: var(--headings-color);
  font-weight: 400;
  padding-left: 40px;

}
.item-page ul.lista1 li + li {
  border-top: 0;/* 1px dashed #D1D5DB */
  padding-top: 0.5rem;
  margin-top: 0.5rem;


}

/* Buleturi */

@media (max-width: 991.98px) {
  .item-page ul.list-special {
    margin-bottom: 2rem;
  }
}
.item-page ul.list-special li {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--headings-color);
  font-weight: 400;

}
.item-page ul.list-special li img {
  border-radius: 0;
}
.item-page ul.list-special li + li {
  border-top: 1px dashed #D1D5DB;
  padding-top: 0.3rem;
  margin-top: 0.3rem;

}

/* Buleturi fara linii */

@media (max-width: 991.98px) {
  .item-page ul.list-special2 {
    margin-bottom: 2rem;
    padding-left: 40px;
  }
}
.item-page ul.list-special2 li {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--headings-color);
  font-weight: 400;
}
.item-page ul.list-special2 li img {
  border-radius: 0;
}
.item-page ul.list-special2 li + li {
  border-top: 0px dashed #D1D5DB;
  padding-top: 1rem;
  margin-top: 1rem;
}

.icon-smsa, .icon-haccp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px; /* Dimensiunea iconiței */
        height: 25px;
        background-color: #007bff; /* Culoare de fundal */
        color: white;
        border-radius: 10%; /* Formă rotundă */
        font-size: 10px;
        font-weight: bold;
        text-align: center;
    }

    .icon-smsa {
        background-color: #28a745; /* Verde pentru SMSA */
    }

    .icon-haccp {
        background-color: #dc3545; /* Roșu pentru HACCP */
    }


.custom2-list {
        list-style-type: none; /* Elimină bulinele default ale <ul> */
        padding-left: 30px;
        margin: 0;
    }

    .custom2-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px; /* Spațiu între elementele listei */
        line-height: 1.6; /* Înălțimea liniei pentru o lizibilitate mai bună */
    }

    .custom2-list li .icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px; /* Dimensiunea iconiței */
        height: 50px;
        background-color: #007bff; /* Culoare de fundal generică */
        color: white;
        border-radius: 50%; /* Formă rotundă */
        font-size: 10px;
        font-weight: bold;
        text-align: center;
        margin-right: 0; /* Spațiu între iconiță și text */
    }

    .custom2-list li .icon-smsa {
        background-color: #28a745; /* Verde pentru SMSA */
    }


.custom-list li .icon-haccp {
        background-color: #dc3545; /* Roșu pentru HACCP */
    }

    .custom-list li p {
        margin: 0; /* Elimină marginile implicite ale paragrafelor */
    }

 
 .custom-list {
        list-style-type: disc;
        padding-left: 20px;
        margin: 0;
    }

    .custom-list li {
        margin-bottom: 10px; /* Spațiu între elemente */
        line-height: 1.6; /* Înălțimea liniei pentru o lizibilitate mai bună */
        font-size: 16px; /* Dimensiunea textului */
        padding-left: 30px; /* Tab la dreapta (indentare) */
    }

.custom-divider {
    width: 100%; /* Bara să ocupe întreaga lățime disponibilă */
    height: 5px; /* Grosimea barei */
    background-color: #e0e0e0; /* Gri deschis */
    border: none; /* Eliminarea oricărei borduri */
    margin: 20px 0; /* Marje pentru spațiere sus și jos */
    border-radius: 5px; /* Colțuri ușor rotunjite pentru un aspect elegant */
}

/* CSS pentru butonul Joomla */
.button-custom {
    background-color: #4CAF50; /* Verde elegant */
    border: none; /* Elimină bordura */
    color: white; /* Text alb */
    padding: 8px 16px; /* Spațiere confortabilă */
    text-align: center; /* Text centrat */
    text-decoration: none; /* Fără subliniere */
    display: inline-block; /* Afișare în linie */
    font-size: 16px; /* Dimensiunea textului */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Font modern */
    margin: 8px 2px; /* Marje pentru distanțare */
    cursor: pointer; /* Cursor pointer la hover */
    border-radius: 8px; /* Colțuri rotunjite */
    transition: background-color 0.3s ease-in-out; /* Tranziție netedă la hover */
}

.button-custom:hover {
    background-color: #45a049; /* Schimbare de culoare la hover */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);  /* Umbră subtilă la hover */
}

.button-abastru {
    background-color: blue; /* Verde elegant */
    border: none; /* Elimină bordura */
    color: white; /* Text alb */
    padding: 8px 16px; /* Spațiere confortabilă */
    text-align: center; /* Text centrat */
    text-decoration: none; /* Fără subliniere */
    display: inline-block; /* Afișare în linie */
    font-size: 16px; /* Dimensiunea textului */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Font modern */
    margin: 8px 2px; /* Marje pentru distanțare */
    cursor: pointer; /* Cursor pointer la hover */
    border-radius: 8px; /* Colțuri rotunjite */
    transition: background-color 0.3s ease-in-out; /* Tranziție netedă la hover */
}

.button-abastru:hover {
    background-color: darkblue; /* Schimbare de culoare la hover */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);  /* Umbră subtilă la hover */
	color: white;
}

.t4-megamenu > .navbar-nav > li > a,
.t4-megamenu > .navbar-nav > li > .nav-link {
  color: var(--mainnav-link-color);
  font-weight: 400;
}
.list-group-item-danger2 {
  --t4-list-group-color: var(--t4-danger-text-emphasis);
  --t4-list-group-bg: var(--t4-danger-bg-subtle);
  --t4-list-group-border-color: var(--t4-danger-border-subtle);
  --t4-list-group-action-hover-color: var(--t4-emphasis-color);
  --t4-list-group-action-hover-bg: var(--t4-danger-border-subtle);
  --t4-list-group-action-active-color: var(--t4-emphasis-color);
  --t4-list-group-action-active-bg: var(--t4-danger-border-subtle);
  --t4-list-group-active-color: var(--t4-danger-bg-subtle);
  --t4-list-group-active-bg: var(--t4-danger-text-emphasis);
  border-radius: 10px;
  border-top: 1px solid #E6E6E6;
  border-left: 1px solid #E6E6E6;
  border-right: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  margin: 20px;
  padding: 1rem 1rem 0;
}

.com-tags-tag.tag-category .list-group .list-group-item {
  border-radius: 10px;
  border-top: 1px solid #E6E6E6;
  border-left: 1px solid #E6E6E6;
  border-right: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  margin: 20px;
  padding: 1rem 1rem 0;
 
}
.com-tags-tag.tag-category .list-group .list-group-item a {
  color: #242627;
  font-size: 1.5rem;
}
.com-tags-tag.tag-category .list-group .list-group-item a:hover, .com-tags-tag.tag-category .list-group .list-group-item a:focus, .com-tags-tag.tag-category .list-group .list-group-item a:active {
  color: #0a58ca;

}

.section-title-wrap .main-title {
    text-transform: initial !important;
}
.glossary-header {
    text-align: center;
    margin: 20px 0;
}

.glossary-header a {
    display: inline-block;
    margin: 5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #fff;  /* Font color set to white */
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    border: 2px solid #333;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    background-color: #333; /* Background color to make the text visible */
}

.glossary-header a:hover {
    background-color: #007bff;
    color: #fff;
}

.custom-buttons-container {
    display: flex; /* Afișează linkurile orizontal */
    gap: 10px; /* Spațiu între butoane */
    justify-content: center; /* Centrează butoanele pe mijloc */
    flex-wrap: wrap; /* nowrap = Previne încadrarea pe mai multe linii */
}

.custom-buttons-container a {
    display: inline-block;
    padding: 10px 20px; /* Dimensiunea butonului */
    background-color: transparent; /* Fără fundal */
    color: #007bff; /* Culoarea textului */
    text-decoration: none; /* Elimină sublinierea textului */
    border: 1px solid #007bff; /* Linie subțire pentru marginea butonului */
    border-radius: 5px; /* Colțuri rotunjite */
    white-space: nowrap; /* Previne împărțirea textului pe mai multe linii */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; /* Tranziție lină pentru hover */
}

.custom-buttons-container a:hover {
    background-color: #007bff; /* Culoare de fundal la hover */
    color: white; /* Culoarea textului la hover */
    border-color: #0056b3; /* Schimbă culoarea border-ului la hover */
}

.custom-buttons-container2 {
    display: flex; /* Afișează linkurile orizontal */
    gap: 10px; /* Spațiu între butoane */
    justify-content: center; /* Centrează butoanele pe mijloc */
    flex-wrap: wrap; /* Previne încadrarea pe mai multe linii */
}

.custom-buttons-container2 a {
    display: inline-block;
    padding: 10px 20px; /* Dimensiunea butonului */
    background-color: transparent; /* Fără fundal */
    color: #007bff; /* Culoarea textului */
    text-decoration: none; /* Elimină sublinierea textului */
    border: 1px solid #007bff; /* Linie subțire pentru marginea butonului */
    border-radius: 5px; /* Colțuri rotunjite */
    white-space: nowrap; /* Previne împărțirea textului pe mai multe linii */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; /* Tranziție lină pentru hover */
}

.custom-buttons-container2 a:hover {
    background-color: #007bff; /* Culoare de fundal la hover */
    color: white; /* Culoarea textului la hover */
    border-color: #0056b3; /* Schimbă culoarea border-ului la hover */
}

.custom-buttons-pret {
    display: flex; /* Afișează linkurile orizontal */
    gap: 3px; /* Spațiu între butoane */
    justify-content: center; /* Centrează butoanele pe mijloc */
    flex-wrap: nowrap; /* Previne încadrarea pe mai multe linii */
}

.custom-buttons-pret a {
    display: inline-block;
    padding: 3px 3px; /* Dimensiunea butonului */
    background-color: transparent; /* Fără fundal */
    color: #007bff; /* Culoarea textului */
    text-decoration: none; /* Elimină sublinierea textului */
    border: 1px solid #007bff; /* Linie subțire pentru marginea butonului */
    border-radius: 5px; /* Colțuri rotunjite */
    white-space: nowrap; /* Previne împărțirea textului pe mai multe linii */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; /* Tranziție lină pentru hover */
}

.custom-buttons-pret a:hover {
    background-color: #007bff; /* Culoare de fundal la hover */
    color: white; /* Culoarea textului la hover */
    border-color: #0056b3; /* Schimbă culoarea border-ului la hover */
}

<style>
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 50px 0;
    font-size: 18px;
    text-align: center;
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    border: 1px solid #ddd;
}

.pricing-table th {
    background-color: #f4f4f4;
    color: #333;
    font-weight: bold;
    font-size: 24px;
}

.pricing-table td {
    background-color: #ffffff;
    color: #333;
    vertical-align: middle;
}

.pricing-table .price {
    font-size: 36px;
    color: #007bff;
    font-weight: bold;
}

.pricing-table .order-btn {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

.pricing-table .order-btn:hover {
    background-color: #218838;
}

.pricing-table tr:last-child td {
    border-bottom: 0;
}

.pricing-table tr td:last-child {
    border-right: 0;
}

.xtypo-pricing-item-pachet{font-size:1.3rem;padding: 20px 0px 0px 0px !important;color: #000;text-align:center}
.xtypo-pricing-item-explic{font-size:1rem;text-align:center}
.xtypo-pricing-item-pret{font-size:1.5rem;padding: 20px 0px 0px 0px !important;color: #000;text-align:center}
.xtypo-pricing-item-subpret{font-size:0.8rem;padding: 0px 0px 20px 0px !important;color: #000;text-align:center}
.xtypo-pricing-item-subpret:after{content:"";display:block;width:50px;height:4px;margin:0.5em auto 0 auto !important;background:rgba(0,0,0,0.3);border-radius:20px}

.custom-buttons-container-prg {
    display: flex; /* Afișează linkurile orizontal */
    gap: 10px; /* Spațiu între butoane */
    justify-content: center; /* Centrează butoanele pe mijloc */
    flex-wrap: wrap; /* Previne încadrarea pe mai multe linii */
}

.custom-buttons-container-prg a {
    display: inline-block;
    padding: 3px 3px; /* Dimensiunea butonului */
    background-color: transparent; /* Fără fundal */
    color: transparent; /* Culoarea textului */
    text-decoration: none; /* Elimină sublinierea textului */
    border: 1px solid #007bff; /* Linie subțire pentru marginea butonului */
    border-radius: 10px; /* Colțuri rotunjite */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; /* Tranziție lină pentru hover */
}

.custom-buttons-container-prg a:hover {
    background-color: #007bff; /* Culoare de fundal la hover */
    color: transparent; /* Culoarea textului la hover */
    border-color: #0056b3; /* Schimbă culoarea border-ului la hover */
}
.custom-buttons-container-prg img {
  width: 50px; /* Dimensiunea imaginii */
  height: 50px;
}

/* Autor */

.author-container-wrapper {
    margin-left: 30px;
    text-align: left;
    padding: 1rem 0 0 0;
}

.author-container-wrapper h3 {

    margin-bottom: 10px;
}

.author-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aliniază blocul de autor spre stânga */
}

.author-container img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-details {
    display: flex;
    flex-direction: column;
    text-align: left; /* Asigură că textul detaliilor este aliniat la stânga */
}

.author-name {
    font-size: 20px;
    font-weight: bold;
}

.author-position {
    font-size: 14px;
    color: #666;
}

.author-link a {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

.author-link a:hover {
    text-decoration: underline;
}




/* Recenzii*/


/* Containerul principal */
.review-container {
    border: 1px solid #dddddd; /* Margine gri închis */
    background-color: #fff; /* Fundal alb / f0f0f0 gri deschis */
    padding: 0px;
    width: 100%; /* Folosește 70% din lățimea paginii */
    margin: 0 auto; /* Centrează containerul pe pagină */
    border-radius: 10px; /* Colțuri rotunjite */
}

/* Headerul */
.review-header {
    border: 1px solid #fff; /* Chenar subtire gri închis */
    background-color: #f0f0f0; /* Fundal gri deschis */
    padding: 15px;
    border-radius: 10px;
    width: 100%; /* Aliniere completă în containerul principal */
    box-sizing: border-box; /* Asigură că marginile și padding-ul nu depășesc containerul */
    display: flex;
    align-items: center;
}

.reviewer-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 20px;
}

.review-title h4 {
    margin: 0;
}

.review-position {
    font-size: 12px;
    color: #666;
}

.review-link a {
    font-size: 10px;
    color: #007bff;
    text-decoration: none;
}

.review-link a:hover {
    text-decoration: underline;
}

/* Containerul A și B */
.review-content {
    display: flex; /* Afișează containerele A și B pe orizontală */
    justify-content: space-between; /* Plasează containerul B în dreapta */
    margin-top: 20px;
}

/* Containerul A (Stelele și textele) */
.review-rating {
    width: 30%; /* Containerul A ocupă 45% din lățime */
    background-color: #fff;
    padding: 10px;
    border-radius: 10px; /* Colțuri rotunjite */
}

.rating-item p {
    margin-bottom: 5px;
}

.stars {
    color: #ffcc00; /* Culoarea stelelor */
    font-size: 20px;
}

.dotted-line {
    border-top: 1px dotted #999;
    margin: 10px 0;
}

/* Containerul B (Opinia recenzorului) */
.reviewer-opinion {
    width: 70%; /* Containerul B ocupă 45% din lățime */
    border: 1px solid #fff; /* Chenar gri închis */
    padding: 0px;
    background-color: #fff;
    border-radius: 10px; /* Colțuri rotunjite */
}

.reviewer-opinion h5 {
    margin-top: 0;
}