form#contact_form_7, form#contact_form_5 {
    max-width: 1000px;
    margin: auto;
}

footer.d-print-none {
    margin-top: 10px;
    padding-top: 20px;
}

.form-element-textarea.form-label-side textarea, .form-element-textarea.form-label-top textarea {
    background-color: #fff;
}

.image-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6); /* félig átlátszó fekete háttér */
  color: #fff; /* fehér szöveg */
  padding: 15px;
  border-radius: 5px;
  font-size: 1.4em;
  text-align: center;
  white-space: nowrap; /* opcionális, ha nem szeretnéd hogy törjön a szöveg */
}

.text-overlay a {
     color: #fff!important;
     text-decoration: none;
}


/* LANDING OLDAL KEZDETE */

.offer-badge-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
}

.offer-badge-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.offer-badge-diagonal {
  position: absolute;
  top: 3px;
  left: 1px;
  background: linear-gradient(135deg, #d4af37, #f7d774);
  color: #06430b;
  font-weight: bold;
  text-transform: uppercase;
  transform: rotate(0deg);
  width: 160px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  font-size: 0.95rem;
  padding: 5px 0;
}


.landingtermek {
    border: 2px solid #097712;
    border-radius: 15px;
    padding: 10px;
    margin:5px;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h2 {
  color: #06430b;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* FAQ item doboz */
.faq-item {
  background: #f4f4f4;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Rejtett checkbox */
.faq-item input[type="checkbox"] {
  display: none;
}

/* Kérdés rész */
.faq-question {
  display: block;
  position: relative;
  padding: 1rem 3rem 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  color: #06430b;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Kis + ikon */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #0cc51b;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Lenyitott állapot ikonváltás */
.faq-item input:checked + .faq-question::after {
  content: "–";
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}

/* Nyitott kérdés színátmenet */
.faq-item input:checked + .faq-question {
  background: linear-gradient(135deg, #0cc51b 0%, #06430b 100%);
  color: #fff;
}

/* Válasz */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  background: #fff;
  color: #333;
  transition: all 0.4s ease;
  line-height: 1.6;
}

/* Lenyitott válasz */
.faq-item input:checked ~ .faq-answer {
  max-height: 100%; /* elég nagy, hogy bármilyen szöveg kiférjen */
  padding: 1rem 1.25rem 1.25rem;
}



.feher.zoldkeret {
    border: 2px solid #c50c9d;
    background-color: #f4f4f4!important;
}

.nice-quote {
  position: relative;
  background: #f4f4f4;
  border-left: 6px solid #0cc51b;
  border-radius: 12px;
  padding: 30px 40px 25px; /* alsó padding kicsit kisebb */
  margin: 2rem 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-style: italic;
  color: #333;
}

.nice-quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 4rem;
  color: rgba(6, 67, 11, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.nice-quote p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}



.row.align-items-center.mb-5 {
    border-bottom: 1px dotted grey;
    max-width: 1000px;
    margin: auto;
}

img.mintakepek {
    width: 100%;
    padding: 20px;
    border-radius: 35px;
}

h2.zold {
  color: #06430b;
}

ul.errorlist {
  list-style-type: none;
  padding-left: 1.5em;
}

/*ul.errorlist li::marker {
  content: "✖ ";
  color: #d32f2f;
  font-size: 1.1em;
  font-weight: bold;
}*/

ul.errorlist li {
  position: relative;
  padding-left: 1.5em; /* hely az ikon előtt */
}

ul.errorlist li::before {
  content: "✖";
  position: absolute;
  left: 0;
  top: 0;
  color: rgb(211, 47, 47);
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.2;
}


.feher {
	background: #fff;
	border-radius: 25px;
	padding: 20px;
	margin-top: 30px;
	margin-bottom: 30px;
}

ul.checklist {
  list-style: none; /* alapértelmezett kör helyett semmi */
  padding-left: 1.5em; /* egy kis behúzás, hogy a pipa ne lógjon ki */
}

/*ul.checklist li::marker {
  content: "✔ ";
  color: #0cc51b;
  font-weight: bold;
  margin-right: 10px;
}*/

ul.checklist li {
  position: relative;
  padding-left: 1.6em; /* hely a pipa előtt */
  margin-bottom: 0.4em;
}

ul.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #0cc51b; /* zöld pipa */
  font-weight: bold;
  font-size: 1.1em;
  line-height: 1.2;
}

.row.landoldal {
  margin-top: 40px;
}

.row.landoldal img {
  border-radius: 25px;
}

.jobb {
	padding: 20px;
}

.landinghatter {
	width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://www.ferbiom.hu/custom/ferbiom/image/data/design/hatterkep-landing.jpg") no-repeat fixed center;
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-right: 20px;
  padding-left: 20px;  
  border-radius: 25px;
}

.landinghatter h1 {
	color: #fff;
	padding-bottom: 40px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.landinghatter h2 {
	color: #dcdcdc;
	padding-bottom: 40px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.landinghatter p {
	color: #fff;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

/*a.landinglink {
	background-color: #0cc51b;
	padding: 10px 20px;
	border-radius: 10px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}*/

a.landinglink {
  display: inline-block;
  background-color: #0cc51b;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  white-space: nowrap; /* alapból ne tördelje szét */
  text-align: center;
}

/* Hover (opcionális) */
a.landinglink:hover {
  background-color: #0aad16;
  color: #fff;
  text-decoration: none;
}

/* --- Mobilbarát verzió --- */
@media (max-width: 768px) {
  a.landinglink {
    display: block;             /* teljes szélesség */
    white-space: normal;        /* engedje a törést, de szép lesz */
    width: 100%;                /* kitölti a szülőt */
    box-sizing: border-box;     /* padding ne növelje a szélességet */
    padding: 14px 20px;         /* kicsit nagyobb érintőfelület */
    font-size: 1.1em;           /* kicsit nagyobb betű mobilon */
    line-height: 1.4em;
  }

  p.landingmarg {
    padding: 0 10px;            /* kis oldalsó margó, hogy ne érjen a széléig */
  }
}


p.landingmarg {
	margin-top: 50px!important;
	margin-bottom: 30px!important;
}

@media (min-width: 1400px) {
.landinghatter {margin-top: -50px;}
.landinghatter h1 {font-size: 3rem;}
.landinghatter p {max-width: 700px; margin: auto;}
}

@media (max-width: 992px) {
  .feher {padding: 10px; margin-top: 10px;}
}

.row.landoldal h3 {
	color: #06430b;
	padding-bottom: 20px;
	
}



/* --- Mobil nézet --- */
@media (max-width: 768px) {
    
     .landinghatter {
    background-attachment: scroll; /* fixed helyett scroll */
    background-position: center top; /* igazítás mobilra */
    background-size: cover; /* biztosan kitöltse */
  }
 
	.csakmonitor {
		display: none;
	}
	
  .pawbio-table.main-three-col {
    display: table;
  }

.pawbio-table {
  border-radius: 0.5rem!important;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  table-layout: fixed;
  margin-bottom: 2rem;
}

.pawbio-table th:first-child,
.pawbio-table td:first-child {
  width: 35%;
  background-color: #f8f9fa;
  color: #06430b;
  font-weight: 600;
}

.pawbio-table th:nth-child(2),
.pawbio-table td:nth-child(2) {
  width: 65%;
}

/* Pawbioticum-oszlop stílus */
.pawbio-premium th:nth-child(2),
.pawbio-premium td:nth-child(2) {
  background: linear-gradient(135deg, #0cc51b 0%, #06430b 100%);
  color: #fff;
  font-weight: 500;
}

/* Fejlécek */
.pawbio-table thead th {
  text-align: center;
  background-color: #06430b;
  color: #fff;
}

/* Hover */
.pawbio-premium tbody tr:hover td:nth-child(2) {
  background: linear-gradient(135deg, #12e327 0%, #06430b 100%);
  transition: background 0.3s ease;
}
	
}

@media (min-width: 769px) {
	
.csakmobil {
		display: none;
	}
	
.pawbio-table {
  border-radius: 0.5rem!important;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  table-layout: fixed; /* szükséges a pontos arányhoz */
}

/* Oszlopszélességek */
.pawbio-table th:first-child,
.pawbio-table td:first-child {
  width: 20%;
}

.pawbio-table th:nth-child(2),
.pawbio-table td:nth-child(2),
.pawbio-table th:nth-child(3),
.pawbio-table td:nth-child(3) {
  width: 40%;
}

/* Bal oszlop (tulajdonságok) */
.pawbio-table th {
  background-color: #f8f9fa;
  color: #06430b;
  font-weight: 600;
  vertical-align: middle;
}

/* Középső oszlop (hagyományos) */
.pawbio-table td:nth-child(2) {
  background-color: #f5f5f5;
  color: #333;
  vertical-align: middle;
}

/* Jobb oszlop (Pawbioticum®) */
.pawbio-table td:nth-child(3) {
  background: linear-gradient(135deg, #0cc51b 0%, #06430b 100%);
  color: #fff;
  font-weight: 500;
  vertical-align: middle;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.05);
}

/* Fejléc */
.pawbio-table thead th {
  text-align: center;
  vertical-align: middle;
}

.pawbio-table .pawbio-header {
  background: #06430b;
  color: #fff;
}

/* Hover effekt */
.pawbio-table tbody tr:hover td:nth-child(3) {
  background: linear-gradient(135deg, #12e327 0%, #06430b 100%);
  transition: background 0.3s ease;
}

}




/* LANDING OLDAL VÉGE */


.alkategoria {
	background-color: rgba(47, 49, 50, 0.05);
	padding: 20px;
	border-radius: 15px;
}


.form-help {
    font-size: 13px;
}

.subcategory {
	display: none;
}

.form-label-side .input-email, .form-label-side .input-text, .form-label-top .input-email, .form-label-top .input-text {
	background-color: #fff !important;
}

.partnerreg {
    background: #f4f4f4;
    padding: 15px;
    margin-top: 30px;
    border-radius: 15px;
}



.figyelem {
    background: #a5ff9652;
    padding: 10px;
    border-radius: 5px;
	text-align: center;
}

.figyelem a {
	color: rgb(53 161 62);
	text-decoration: none;
	font-weight: bold;
}
.figyelem a:hover {
	color:rgb(6 67 11);
}

.partnerek {
	background: #fff;
	padding: 10px 20px;
	border-radius: 25px;
	margin-top: 20px;
	text-align: center;
}


.container > .alert.alert-info {
	display: none;
}

.subscribe-box_form-control::placeholder {
    color: #555; /* sötétebb szürke, jól olvasható */
    opacity: 1; /* Firefoxban néha halványítja, ezzel biztosan látszik */
}
h2.product-card__item.product-card__title.h4 {
	max-width: 300px;
	margin: auto;
}
.gyik b {
	color: #06430b;
}
.news-card__image {
	border-bottom-right-radius: 0px!important;
	border-bottom-left-radius: 0px!important;
}
#module_news_wrapper {
	background: #e0ded5;
	padding-bottom: 40px;
}
#module_news_wrapper .module-head-title {
	padding-top: 40px;
}
.news-card__footer {
    display: flex;
    justify-content: center;
}
.news-card__text {
    text-align: center;
}
.news-card__link {
    text-align: center;
}
.slick-slide img {
    margin: auto;
}
.news-card-image-wrapper {
    background: #fff;
	margin-bottom: 0px!important;
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
}
.card-body.news-card__body {
    background: #fff;
	border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px;
	margin-bottom: 20px;
}
.header {
    background: #fff;
}
.main-content .advantages-module {
    margin-top: 50px;
	background: #fff;
	padding: 40px 20px;
	border-radius: 25px;
}
.product-card {
    padding: 20px;
    background: #fff;
}

@media (min-width: 992px) {
#featured .product-snapshot-vertical,
.product-list .product-snapshot-vertical {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
main.main-content {
padding-top: 20px;
}
.row.product-page-top-row {
	background: #fff;
	padding: 15px;
	border-radius: 15px;
}
	.sr-cart-page {
    background: #fff;
    padding: 20px;
}
	.packageoffer__product-list {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem; /* opcionális rés, ha szeretnél távolságot közöttük */
  }

  .packageoffer__product {
    flex: 1 1 0;
    max-width: 33.333%; /* egy sorban három egyforma szélesség */
  }
}

@media (max-width: 992px) {

.row.align-items-center.mb-5 {
    margin-bottom: 10px;
}    

.header-logo-img {
    max-height: 65px;
    height: auto;
    max-width: 157px;
}
}

@media (min-width: 1400px) {
 .column-right {
	display: none!important;
}
}

@media (min-width: 1200px) {
h3.behuzas {
	margin-bottom: -80px;
}
.product-snapshot.list_div_item > .product-card {
     min-height: 910px;
}
}

@media (min-width: 992px) {

.row.align-items-center.mb-5 {
    padding: 10px;
}
    
    .jobbraigazit {
    text-align: right;
}

ul.rightlist {
  text-align: right;
  list-style-position: inside; /* jel belülre kerül */
}
    
	.form-label-side label {
    width: 280px!important;
}
	.packageoffer__product-list {
	justify-content: center!important;
}
	.header-wishlist-icon {
	display: none;
}
	
	.col-lg-9.two-column-content.column-content-left {
		width: 100%!important;
	}
}