.site-body {
  --site-max-width: 1480px;
}

.site-body {
  margin: 0px;
  padding: 0px;
  background: linear-gradient(180deg, #f7f3ed 0%, #f3ede3 45%, #efe6da 100%);
  color: #2f2b26;
  min-height: 100%;
  position: relative;
  overflow-x: clip;
}

.site-body::before {
  content: "";
  position: fixed;
  left: -12vw;
  top: -10vh;
  width: 124vw;
  height: 120vh;
  background-image: url('images/life-light-led-logo.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: min(1900px, 180vw);
  filter: blur(20px) saturate(0.9);
  opacity: 0.16;
  transform: scale(1.08);
  pointer-events: none;
  z-index: -2;
}

.site-body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 243, 237, 0.74) 0%, rgba(243, 237, 227, 0.8) 45%, rgba(239, 230, 218, 0.86) 100%);
  pointer-events: none;
  z-index: -1;
}

body, th, td {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

.error { color: red; }

.mode_error_large { font-size: 16px; font-weight: bold; text-align: center;}
.message { color: red; font-size: 16px; font-weight: bold; text-align: center; padding: 10px;}

/* Global form refresh */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
select,
textarea {
  border: 1px solid #d8cdbf;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f3 100%);
  color: #2f2b26;
  padding: 6px 8px;
  font-size: 13px;
  line-height: 1.4;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
input[type="search"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder {
  color: #9a8f82;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus {
  border-color: #e9a35c;
  box-shadow: 0 0 0 3px rgba(233, 163, 92, 0.22);
}

input[type="submit"],
input[type="button"],
input[type="reset"],
button {
  border: 1px solid #b95700;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff9a1f 0%, #e76500 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 7px 11px;
  cursor: pointer;
  box-shadow: 0 3px 9px rgba(140, 57, 0, 0.28);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08) saturate(1.05);
  box-shadow: 0 5px 12px rgba(140, 57, 0, 0.34);
}

input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active,
button:active {
  transform: translateY(0);
}

input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="email"]:disabled,
input[type="tel"]:disabled,
input[type="number"]:disabled,
input[type="search"]:disabled,
input[type="url"]:disabled,
input[type="date"]:disabled,
input[type="datetime-local"]:disabled,
input[type="month"]:disabled,
input[type="week"]:disabled,
input[type="time"]:disabled,
select:disabled,
textarea:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled,
button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}


.main_panel {
  width: min(100%, var(--site-max-width));
  margin: 0 auto;
  padding: 12px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  box-sizing: border-box;
}

.left_panel,
.right_panel,
.main_content {
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.left_panel {
  border-right: 1px solid #e4ddd2;
  text-align: left;
  overflow: hidden;
  padding-right: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0.12) 100%);
}

.left_panel .main_menu div {
  font-size: 12px;
  font-weight: bold;
  color: #505050;
  margin-left: 5px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #CCCCCC;
  width: 100%;
}

.content_shell {
  min-width: 0;
}

.content_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 14px;
  align-items: start;
}

.site_header_wrap {
  width: min(100%, var(--site-max-width));
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 1300;
  transition: transform 0.3s ease, opacity 0.25s ease;
}

body.header-hidden .site_header_wrap {
  transform: translateY(-106%);
  opacity: 0;
  pointer-events: none;
}

body.header-menu-open .site_header_wrap {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

body.products-menu-open .site_header_wrap {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

body.header-force-visible .site_header_wrap {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.header {
  text-align: left;
  position: relative;
  z-index: 1;
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-bottom: 1px solid #dfd5c7;
  box-shadow: 0 8px 24px rgba(44, 29, 10, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.header a { color: #2f2b26; text-decoration: none; }
.header a:hover { color: #e97900; text-decoration: none; }
.header a:visited { color: #2f2b26; text-decoration: none; }

.header .upperdiv {
  background: linear-gradient(105deg, #fff0de 0%, #ffd6a5 58%, #ffbf79 100%);
  width: auto;
  min-height: 136px;
  padding: 12px 20px;
  color: #2f2b26;
  font-weight: bold;
  border-bottom: 1px solid #efbb86;
}

.header .bottomdiv {
  background: linear-gradient(180deg, #ffe9cf 0%, #ffd9b2 100%);
  width: auto;
  padding: 10px 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.header-brand-promo {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  margin-right: auto;
  max-width: min(180px, 12vw);
  position: relative;
  z-index: 1;
}

.header-brand-promo img {
  display: block;
  width: 80%;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(44, 29, 10, 0.12));
}

.header-logo {
  width: auto;
  max-width: min(320px, 52vw);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: saturate(0.96) contrast(1.04);
}

.header-top-actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.header-userbox {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.header-user-links {
  margin-top: 6px;
  font-size: 12px;
}

.header-user-links .sep {
  opacity: 0.8;
  margin: 0 4px;
}

.header-user-icons {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.header-login-identity {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin-bottom: 8px;
  max-width: 100%;
}

.header-login-details {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 0;
}

.header-login-dot {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #2cbf55;
  box-shadow: 0 0 0 3px rgba(44, 191, 85, 0.2);
  animation: header-login-dot-pulse 1.6s ease-in-out infinite;
}

@keyframes header-login-dot-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(44, 191, 85, 0.45);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(44, 191, 85, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(44, 191, 85, 0);
  }
}

.header-login-email {
  margin-bottom: 2px;
  font-size: 12px;
  line-height: 1.2;
  color: #5d5347;
  font-weight: 700;
  text-transform: none;
}

.header-login-company {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.2;
  color: #6b604f;
  font-weight: 700;
  text-transform: none;
}

.header-user-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d79c63;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8f0 0%, #ffe9d2 100%);
  color: #c46d1f !important;
  text-decoration: none !important;
  font-size: 29px;
  line-height: 1;
  box-shadow: 0 3px 8px rgba(120, 73, 24, 0.22);
  transition: all 0.2s ease;
}

.header-user-icon:hover {
  background: linear-gradient(180deg, #fff1e3 0%, #ffdcb8 100%);
  border-color: #cd7f2f;
  color: #9f5f22 !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 12px rgba(120, 73, 24, 0.26);
}

.header-auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #d79c63;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8f0 0%, #ffe9d2 100%);
  color: #8f5723 !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(120, 73, 24, 0.2);
  transition: all 0.2s ease;
}

.header-auth-button:hover {
  background: linear-gradient(180deg, #fff1e3 0%, #ffdcb8 100%);
  border-color: #cd7f2f;
  color: #9f5f22 !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 11px rgba(120, 73, 24, 0.24);
}

.header-auth-buttons {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-side-balloon {
  position: fixed;
  top: 104px;
  width: 180px;
  height: 250px;
  pointer-events: none;
  z-index: 24;
}

.site-side-balloon__cluster {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 18px rgba(44, 29, 10, 0.16));
  transition: filter 0.18s ease, opacity 0.18s ease;
}

.site-side-balloon__balloon,
.site-side-balloon__string {
  position: absolute;
}

.site-side-balloon__balloon {
  appearance: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: url('/feltoltesek/header_kepek/lufi_kedvezmeny.png') center center / contain no-repeat;
  transform-origin: center bottom;
  pointer-events: auto;
  cursor: pointer;
  box-shadow: none;
  opacity: 0.98;
  transition: filter 0.18s ease, opacity 0.18s ease;
}

.site-side-balloon__balloon--left {
  left: 8px;
  top: 38px;
  width: 94px;
  height: 120px;
  transform: rotate(-10deg);
}

.site-side-balloon__balloon--center {
  left: 44px;
  top: 6px;
  width: 108px;
  height: 138px;
  transform: rotate(3deg);
}

.site-side-balloon__balloon--right {
  left: 92px;
  top: 42px;
  width: 88px;
  height: 114px;
  transform: rotate(12deg);
}

.site-side-balloon__balloon--left:hover,
.site-side-balloon__balloon--left:active {
  transform: rotate(-10deg);
}

.site-side-balloon__balloon--center:hover,
.site-side-balloon__balloon--center:active {
  transform: rotate(3deg);
}

.site-side-balloon__balloon--right:hover,
.site-side-balloon__balloon--right:active {
  transform: rotate(12deg);
}

.site-side-balloon__string {
  width: 2px;
  background: linear-gradient(180deg, rgba(150, 116, 80, 0.08) 0%, rgba(126, 88, 48, 0.9) 24%, rgba(101, 68, 36, 0.95) 100%);
  border-radius: 999px;
  transform-origin: top center;
  opacity: 0.95;
  transition: opacity 0.18s ease;
}

.site-side-balloon__string--left {
  left: 65px;
  top: 143px;
  height: 98px;
  transform: rotate(-22deg);
}

.site-side-balloon__string--center {
  left: 101px;
  top: 132px;
  height: 109px;
  transform: rotate(0deg);
}

.site-side-balloon__string--right {
  left: 137px;
  top: 143px;
  height: 98px;
  transform: rotate(22deg);
}

.site-side-balloon__balloon::before,
.site-side-balloon__balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 44%;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  margin-top: -11px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.site-side-balloon__balloon::before {
  box-shadow:
    0 -34px 0 0 #ffb12e,
    26px -18px 0 0 #f47b20,
    34px 8px 0 0 #ffd368,
    18px 28px 0 0 #f8a33b,
    -18px 28px 0 0 #ffcc63,
    -34px 8px 0 0 #f47b20,
    -26px -18px 0 0 #ffd368;
}

.site-side-balloon__balloon::after {
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 193, 94, 0.9) 45%, rgba(244, 123, 32, 0) 72%);
}

.site-side-balloon__balloon:hover {
  filter: brightness(1.03);
  box-shadow: none;
}

.site-side-balloon:hover .site-side-balloon__cluster {
  filter: drop-shadow(0 12px 20px rgba(44, 29, 10, 0.22)) brightness(1.03);
}

.site-side-balloon__balloon:active {
  box-shadow: none;
}

.site-side-balloon__balloon:focus-visible {
  outline: 3px solid rgba(233, 163, 92, 0.55);
  outline-offset: 4px;
}

.site-side-balloon__balloon.is-popped {
  animation: side-balloon-pop 0.42s ease-out forwards;
}

.site-side-balloon__balloon.is-popped::before {
  animation: side-balloon-burst 0.42s ease-out forwards;
}

.site-side-balloon__balloon.is-popped::after {
  animation: side-balloon-flash 0.34s ease-out forwards;
}

.site-side-balloon__string.is-popped {
  opacity: 0;
}

.site-side-balloon--left {
  left: max(6px, calc((100vw - var(--site-max-width)) / 2 - 176px));
}

.site-side-balloon--right {
  right: max(6px, calc((100vw - var(--site-max-width)) / 2 - 176px));
}

@keyframes side-balloon-pop {
  0% {
    opacity: 0.98;
    transform: scale(1);
  }
  35% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 0;
    transform: scale(0.72);
  }
}

@keyframes side-balloon-burst {
  0% {
    opacity: 0;
    transform: scale(0.15);
  }
  20% {
    opacity: 1;
    transform: scale(0.6);
  }
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

@keyframes side-balloon-flash {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  18% {
    opacity: 0.9;
    transform: scale(1.8);
  }
  100% {
    opacity: 0;
    transform: scale(2.6);
  }
}

.header-search-wrap {
  position: absolute;
  left: calc(50% - 40px);
  top: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  min-width: 315px;
  width: clamp(315px, 25.5vw, 375px);
  z-index: 2;
}

/* Promó képek a kereső mellett (nem a mező alatt), hogy az input ne takarja el */
.header-promos-band {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
  z-index: 0;
  padding: 0 6px;
  box-sizing: border-box;
}

.header-promos-band__flank {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 1 calc(50% - min(180px, 14vw));
  min-width: 0;
}

.header-promos-band__flank--left {
  justify-content: flex-end;
}

.header-promos-band__flank--right {
  justify-content: flex-start;
}

.header-promos-band__img {
  display: block;
  height: clamp(76px, 6.8vw, 100px);
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  filter: none;
}

.header-promos-band__link {
  pointer-events: auto;
  line-height: 0;
}

@media (max-width: 1280px) {
  .header-brand-promo {
    display: none;
  }
}

@media (max-width: 1320px) {
  .header-promos-band__flank--right .header-promos-band__img:last-child {
    display: none;
  }
}

@media (max-width: 1200px) {
  .header-promos-band__flank--right .header-promos-band__img:first-child {
    display: none;
  }
}

.header-search-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #d8cdbf;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8ee 0%, #f5e3cb 100%);
  color: #b46117;
  font-size: 20px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(133, 82, 30, 0.18);
  cursor: pointer;
}

.header-search-toggle-inline {
  display: none;
}

.header-search-panel {
  display: block;
}

.header-search-label {
  display: block;
  margin-bottom: 4px;
  color: #766b5b;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.header-search-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search-input {
  flex: 1;
  min-width: 0;
  border: 1px solid #d8cdbf;
  border-radius: 2px;
  padding: 8px 10px;
  font-size: 13px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f3 100%);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search-input:focus {
  border-color: #f3c490;
  box-shadow: 0 0 0 2px rgba(243, 196, 144, 0.25);
}

.header-search-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8cdbf;
  background: linear-gradient(180deg, #fff8ee 0%, #f5e3cb 100%);
  color: #b46117;
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 1760px) {
  .site-side-balloon {
    display: none;
  }
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.header-nav a {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 0;
  background: transparent;
  border: none;
  color: #4d4338;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.header-nav a:hover {
  background: transparent;
  color: #9f5f22;
  text-decoration: none;
  transform: translateY(-1px);
}

.header-menu-toggle {
  display: none;
  border: 1px solid #e6b37e;
  background: linear-gradient(180deg, rgba(255, 245, 231, 0.95) 0%, rgba(255, 219, 175, 0.95) 100%);
  color: #7f4510;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 14px rgba(133, 82, 30, 0.12);
  backdrop-filter: blur(2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(133, 82, 30, 0.16);
}

.header-products-toggle {
  display: none;
  border: 1px solid #e6b37e;
  background: linear-gradient(180deg, rgba(255, 245, 231, 0.95) 0%, rgba(255, 219, 175, 0.95) 100%);
  color: #7f4510;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 14px rgba(133, 82, 30, 0.12);
  backdrop-filter: blur(2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-products-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(133, 82, 30, 0.16);
}

.header-products-toggle .products-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 15px;
  line-height: 1;
}

.header-mobile-cart {
  display: none;
  border: 1px solid #e6b37e;
  background: linear-gradient(180deg, rgba(255, 245, 231, 0.95) 0%, rgba(255, 219, 175, 0.95) 100%);
  color: #7f4510;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(133, 82, 30, 0.12);
  backdrop-filter: blur(2px);
}

.header-products-toggle .burger-icon {
  width: 16px;
  height: 12px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.header-products-toggle .bar {
  display: block;
  width: 16px;
  height: 2px;
  background: #b46117;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.18s ease, background 0.2s ease;
}

.header-products-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.header-products-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.header-products-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.header-products-toggle .menu-label {
  line-height: 1;
}

.mobile-toggle-row {
  display: none;
}

.mobile-products-nav {
  display: none;
}

.header-menu-toggle .burger-icon {
  width: 16px;
  height: 12px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.header-menu-toggle .bar {
  display: block;
  width: 16px;
  height: 2px;
  background: #b46117;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.18s ease, background 0.2s ease;
}

.header-menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.header-menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.header-menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.header-menu-toggle .menu-label {
  line-height: 1;
}

.footer {
  width: min(100%, var(--site-max-width));
  margin: 12px auto 0 auto;
  border-top: 1px solid #e8d4bb;
  min-height: 40px;
  text-align: center;
  color: #6a5d4c;
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.88) 0%, rgba(251, 237, 220, 0.88) 100%);
  border-radius: 0;
  padding: 14px 12px 18px 12px;
  box-sizing: border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.footer::before {
  content: "";
  display: block;
  width: min(320px, 42vw);
  height: 2px;
  margin: 0 auto 12px auto;
  background: linear-gradient(90deg, rgba(230, 162, 86, 0) 0%, rgba(230, 162, 86, 0.8) 50%, rgba(230, 162, 86, 0) 100%);
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 auto 10px auto;
  max-width: 1080px;
}

.footer-links a {
  color: #6c4f32;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(205, 160, 113, 0.35);
  background: rgba(255, 251, 245, 0.62);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #a05614;
  border-color: #d18b45;
  background: rgba(255, 241, 221, 0.9);
  transform: translateY(-1px);
}

.footer > *:not(.footer-links) {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.header-main-nav {
  flex: 1;
  justify-content: center;
  gap: 8px 12px;
}

.header-main-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none !important;
}

.header-main-nav a:hover {
  background: linear-gradient(180deg, rgba(246, 226, 197, 0.65) 0%, rgba(241, 214, 179, 0.65) 100%);
  box-shadow: 0 4px 12px rgba(121, 78, 26, 0.15);
  transform: translateY(-2px) scale(1.01);
  text-decoration: none !important;
}

.header-main-nav a:focus,
.header-main-nav a:active,
.header-main-nav a:visited {
  text-decoration: none !important;
}

.header-main-nav .nav-icon {
  width: 26px;
  height: 26px;
  margin-right: 7px;
  border-radius: 999px;
  border: 1px solid rgba(165, 113, 57, 0.24);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.95) 0%, rgba(244, 230, 209, 0.95) 100%);
  color: #8f5723;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(78, 50, 16, 0.12);
  flex-shrink: 0;
}

.header-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  margin-left: 7px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9152 0%, #df3f1d 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(167, 44, 18, 0.35);
}

.header-cart-badge.is-empty {
  display: none;
}

.bottomdiv a { color: #453728; text-decoration: none; }
.bottomdiv a:hover { color: #a45e15; text-decoration: none;}
.bottomdiv a:visited { color: #453728; text-decoration: none; }

.right_panel {
  width: auto;
  border-left: 1px solid #e4ddd2;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.12) 100%);
}

.main_content {
  padding: 0;
  text-align: left;
  min-width: 0;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.16);
}

.main_menu { padding-left: 10px;}

.main_menu a { color: #505050; text-decoration: none;}
.main_menu a:hover { color: #505050; text-decoration: underline;}
.main_menu a:visited { color: #505050; text-decoration: none;}

@media (max-width: 1120px) {
  .header-promos-band {
    display: none;
  }

  .header .upperdiv {
    min-height: 56px;
  }

  .main_panel {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .content_row {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .header-top-actions {
    justify-content: flex-end;
    align-items: flex-start;
  }

  .header-top-row {
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 10px;
  }

  .header-logo {
    max-width: 170px;
  }

  .header-search-wrap {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    min-width: 0;
    margin-left: auto;
    margin-right: 0;
    z-index: 10;
  }

  .header-search-toggle {
    display: inline-flex;
  }

  .header-search-toggle-standalone {
    display: inline-flex;
  }

  .header-search-toggle-inline {
    display: none;
  }

  .header-search-panel {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: min(520px, calc(100vw - 24px));
    min-width: 0;
    background: linear-gradient(180deg, rgba(255, 247, 236, 0.98) 0%, rgba(252, 233, 208, 0.98) 100%);
    border: 1px solid #efbb86;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(88, 57, 20, 0.22);
    padding: 10px;
    box-sizing: border-box;
  }

  body.header-search-open .header-search-panel {
    display: block;
  }

  body.header-search-open .header-search-toggle {
    border-color: #cd7f2f;
    box-shadow: 0 6px 12px rgba(120, 73, 24, 0.24);
  }

  .header-userbox {
    text-align: right;
    max-width: 250px;
  }

  .header-login-identity {
    margin-bottom: 4px;
    gap: 6px;
  }

  .header-login-dot {
    width: 30px;
    height: 30px;
  }

  .header-login-email,
  .header-login-company {
    font-size: 11px;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-login-email {
    margin-bottom: 2px;
  }

  .header-login-company {
    margin-bottom: 0;
  }

  .header-user-icons {
    gap: 7px;
    margin-top: 6px;
  }

  .header-user-icon {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .header-user-links {
    display: none;
  }

  .header-auth-button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .header-auth-buttons {
    gap: 6px;
    justify-content: center;
  }
}

@media (max-width: 920px) {
  html,
  body,
  .site-body {
    margin: 0 !important;
    padding: 0 !important;
  }

  .site_header_wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .main_panel {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .left_panel {
    order: 2;
    border-right: none;
    padding-right: 0;
    background: transparent;
  }

  .content_row {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
  }

  .main_content {
    order: 1;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .right_panel {
    order: 2;
    border-left: none;
    padding-left: 0;
    background: transparent;
  }

  .header {
    width: 100%;
    max-width: 100%;
    top: 0;
    border-radius: 0;
    box-shadow: 0 6px 16px rgba(44, 29, 10, 0.08);
  }

  .header .upperdiv,
  .header .bottomdiv {
    padding-left: 0;
    padding-right: 0;
  }

  .header .upperdiv {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .header .bottomdiv {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .header .bottomdiv {
    align-items: center;
    flex-direction: column;
  }

  .header-top-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    min-height: 52px;
  }

  .header-brand {
    align-self: center;
    flex: 0 0 auto;
  }

  .header-logo {
    max-width: 92px;
  }

  .header-top-actions {
    width: auto;
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0;
    margin-left: 0;
  }

  .header-userbox {
    text-align: right;
    max-width: 170px;
  }

  .header-search-wrap {
    width: 0;
    min-width: 0;
    margin: 0;
    display: block;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    z-index: auto;
  }

  .header-search-toggle {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .header-search-toggle-standalone {
    display: none;
  }

  .header-search-toggle-inline {
    display: inline-flex;
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .header-search-panel {
    position: fixed;
    left: 10px;
    right: 10px;
    width: auto;
    max-width: 420px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    z-index: 1001;
  }

  body.header-search-open .header {
    overflow: visible;
  }

  .header-login-identity {
    margin-bottom: 3px;
    gap: 6px;
  }

  .header-login-dot {
    width: 30px;
    height: 30px;
  }

  .header-login-email,
  .header-login-company {
    font-size: 11px;
    max-width: 170px;
  }

  .header-login-email {
    margin-bottom: 2px;
  }

  .header-login-company {
    margin-bottom: 0;
  }

  .header-user-icons {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 10px;
    z-index: 3;
    margin-top: 6px;
  }

  .header-user-icon {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .header-menu-toggle {
    display: inline-flex;
    align-self: center;
  }

  .header-products-toggle {
    display: inline-flex;
    align-self: center;
  }

  .header-mobile-cart {
    display: inline-flex;
    align-self: center;
  }

  .mobile-toggle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
  }

  .header-menu-toggle,
  .header-products-toggle,
  .header-mobile-cart {
    min-height: 40px;
    min-width: 0;
    padding: 7px 9px;
    box-sizing: border-box;
    line-height: 1;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 0.01em;
    flex: 1 1 0;
    white-space: nowrap;
  }

  .header-menu-toggle .burger-icon {
    width: 20px;
    height: 14px;
  }

  .header-menu-toggle .bar {
    width: 20px;
    height: 3px;
  }

  .header-products-toggle .products-icon {
    width: 20px;
    height: 20px;
    font-size: 18px;
  }

  .header-mobile-cart .nav-icon {
    font-size: 17px;
  }

  .header-main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #dfd4c6;
  }

  body.header-menu-open .header-main-nav {
    display: flex;
  }

  body.products-menu-open .mobile-products-nav {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #dfd4c6;
    max-height: calc(100dvh - 150px);
    overflow-y: auto !important;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  body.products-menu-open {
    overflow: hidden;
  }

  body.products-menu-open .header {
    overflow: visible;
  }

  .mobile-products-nav .subpanel {
    margin: 0 0 8px 0;
    border-top: 1px solid #eadcc8;
  }

  .mobile-products-nav .subheader,
  .mobile-products-nav .subheader_gray {
    margin: 0;
    padding: 7px 0 6px 0;
  }

  .subpanel .subheader,
  .subpanel .subheader_gray {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .kategoria_leiras {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mobile-products-nav ul {
    margin: 0;
    padding: 6px 0 0 16px;
  }

  .header-main-nav a {
    width: min(100%, 460px);
    padding: 12px 14px;
    border-radius: 12px;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
  }

  .header-main-nav .nav-icon {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .footer {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
    padding-top: 12px;
  }

  .footer-links {
    justify-content: center;
    gap: 8px 10px;
  }

  .footer-links a {
    padding: 4px 8px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  body, th, td {
    font-size: 13px;
  }

  .termek-grid {
    margin: 0;
  }

  .header .upperdiv {
    text-align: left;
  }

  .header .upperdiv > div {
    float: none !important;
    margin: 0 0 8px 0 !important;
  }

  .header .bottomdiv {
    line-height: 1.7;
  }

  .header-logo {
    max-width: 100px;
  }

  .header-nav a {
    padding: 2px 0;
    font-size: 12px;
  }
}

.earth-div { background-image: url('images/index_19.jpg'); width: 495px; height: 209px; color: white; text-align: center; padding-top: 0px; font-size: 11px;}

.subpanel { text-align: left; font-size: 11px; margin-bottom: 20px;}

.subpanel a { color: #7b7b93; text-decoration: none; }
.subpanel a:hover { color: #f57915; text-decoration: none; }
.subpanel a:visited {  text-decoration: none;  }

.subpanel ul { margin: 0px; padding: 0px; padding-left: 25px; margin-top: 10px;}

.subpanel li {
  border-bottom: 1px dotted #CCCCCC ;
  color: #f57915; 
  padding-bottom: 4px; padding-top: 4px;
}
.subpanel li span { color: #7b7b93;}

.subpanel .subheader { margin-left: 5px; color: white; background-color: #f57915; padding: 5px; font-size: 12px; font-weight: bold; padding-left: 15px; text-align: left;}

.subpanel .subheader_gray { margin-right: 5px; color: white; background-color: #f57915; padding: 5px; font-size: 12px; font-weight: bold; padding-left: 15px; text-align: left;}

.belepes { font-size: 16px;}

.formStyle { width: 500px; text-align: center;}

.formStyle label{ width: 200px; text-align: right; padding-right: 10px; margin-top: 5px; float: left;}
.formStyle .field { width: 250px; margin: 0px; margin-bottom: 5px; }

.cellheader { text-align: center; font-size: 16px; font-weight: bold; padding-top: 30px;}

/* Registration page refresh */
.registration-page {
  width: min(100%, 920px);
  margin: 12px auto 22px;
}

.registration-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.7) 100%);
  border: 1px solid rgba(223, 208, 191, 0.9);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(96, 65, 30, 0.12);
  padding: 18px 18px 22px;
}

.registration-title {
  margin: 4px 0 6px;
  text-align: center;
  font-size: 28px;
  line-height: 1.25;
  color: #2f2b26;
}

.registration-subtitle {
  margin: 0 0 14px;
  text-align: center;
  color: #6f655a;
  font-size: 13px;
}

.registration-card {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 10px 0 12px;
  margin-bottom: 14px;
}

.registration-card .cellheader {
  margin: 0 0 12px;
  padding: 0;
  font-size: 18px;
  text-align: left;
  color: #d36f18;
}

.registration-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 8px 12px;
  align-items: start;
}

.registration-grid > label {
  text-align: right;
  font-weight: 700;
  color: #564a3e;
  padding-top: 8px;
}

.registration-grid .field {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.registration-grid textarea.field {
  min-height: 88px;
  resize: vertical;
}

.reg-zip-city {
  display: flex;
  gap: 8px;
}

.reg-zip-city .reg-zip {
  flex: 0 0 110px;
  max-width: 110px;
}

.reg-zip-city .reg-city {
  flex: 1 1 auto;
}

.registration-copy-wrap {
  text-align: center;
  margin: 0 0 12px;
}

.reg-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding-top: 6px;
}

.reg-radio-row label {
  font-weight: 400;
  color: #3a332d;
}

.registration-consents {
  margin: 6px 4px 4px;
  color: #3f3831;
}

.registration-consents p {
  margin: 7px 0;
}

.registration-terms {
  border-top: 1px dashed #d7c5b3;
  margin-top: 10px;
  padding-top: 10px;
}

.registration-submit-wrap {
  text-align: center;
  margin: 14px 0 0;
}

.registration-submit-wrap input[type="submit"] {
  padding: 10px 22px;
  min-width: 200px;
  font-size: 16px;
}

.registration-grid .error {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .registration-page {
    margin-top: 6px;
  }

  .registration-form {
    padding: 14px 12px 16px;
    border-radius: 12px;
  }

  .registration-title {
    font-size: 24px;
  }

  .registration-card {
    padding: 10px 10px 12px;
  }

  .registration-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .registration-grid > label {
    text-align: left;
    padding-top: 4px;
  }

  .registration-submit-wrap input[type="submit"] {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .reg-zip-city {
    gap: 6px;
  }

  .reg-zip-city .reg-zip {
    flex-basis: 96px;
    max-width: 96px;
  }
}

.termek_header { text-align: center; font-size: 11px; color: #e87400; font-weight: bold; background: rgba(255, 255, 255, 0.2); padding: 2px; border: 1px solid rgba(206, 206, 206, 0.55); border-bottom: none; min-height: 25px; vertical-align: middle; backdrop-filter: blur(4px);}
.termek_header a { color: #e87400; text-decoration: none; }
.termek_header a:hover { color: #ff8a00; text-decoration: none; }
.termek_header a:visited { color: #e87400; text-decoration: none; }
.termek_body { font-size: 12px; padding: 5px; border: 1px solid rgba(206, 206, 206, 0.55); height: 100%; text-align: center; min-height: 225px; max-height: 225px; background: rgba(255, 255, 255, 0.14); backdrop-filter: blur(4px); }
.termek_body img { margin: 3px;}
.termek_body .termekkep { margin: 0;}
.termek_body .ar { font-size: 13px; color: #fd790d; padding: 2px 0 0 0; margin: 0; width: 100%; }
.termek_footer { border-top: 1px dashed #CCCCCC; }
.termek-grid-item .termek_footer { border-top: none; }

.kiemelt_termek .termek_header, .kiemelt_termek .termek_body { border: none; background: none; min-height: 0px; }
/* Átlós áthúzás a régi (akciósnál) árakon – csak a szövegre */
.termek_body .ar.ar-athuzott-atlos,
.kiemelt_termek .termek_body .ar {
  position: relative;
  display: inline-block;
  width: auto !important; /* felülírja a .termek_body .ar width:100%-ot */
  max-width: 100%;
  text-decoration: none !important;
  font-size: 12px;
  color: #fd790d;
  padding: 0;
}
.termek_body .ar.ar-athuzott-atlos::after,
.kiemelt_termek .termek_body .ar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 62%;
  width: 100%;
  height: 1px;
  background: #d40000;
  opacity: 0.9;
  transform: translateY(-50%) rotate(-4deg);
  transform-origin: left center;
  pointer-events: none;
}
.termek-grid-item .ar.ar-athuzott-atlos { margin-top: 2px; }
.kiemelt_termek .ar { margin-top: 10px; }
.kiemelt_ar { background-color: red; color: white; border-radius:6px; padding: 6px 8px; margin: -4px auto 5px; width: auto; max-width: 160px; font-size: 12px; font-weight: bold; text-align: center; }

.termek-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch;
  gap: 8px;
  margin: 0;
  width: 100%;
  clear: both;
}

.termek-grid::after {
  content: "";
  display: block;
  clear: both;
}

.termek-grid-item {
  float: none !important;
  flex: 0 0 calc((100% - 16px) / 3);
  width: calc((100% - 16px) / 3);
  max-width: calc((100% - 16px) / 3);
  min-width: 0;
  box-sizing: border-box;
  padding: 0;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.24) 100%);
  border: 1px solid rgba(227, 208, 186, 0.65);
  box-shadow: 0 8px 18px rgba(88, 57, 20, 0.12);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
}

.termek-grid-item .termek_body {
  height: auto !important;
  min-height: 0;
  max-height: none;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #ffffff;
}

.termek-grid-item .termek_body .termekkep {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
}

.termek-grid-item .termek-kicsi-panel-also {
  width: 100%;
  text-align: center;
}

.termek-grid-item .termek_header a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
  max-height: 3.75em;
}

.termek-grid-item .kiemelt_ar {
  position: relative;
  z-index: 3;
  display: inline-block;
  margin: -10px auto 2px;
  max-width: 148px;
  width: auto;
  font-size: 12px;
  padding: 5px 8px;
  text-align: center;
}

.termek-grid-item .ar {
  display: block;
  margin-top: 0;
}

.termek-kep-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 190px;
  overflow: hidden;
  margin: 0 auto;
}

.termek-kep-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.termek-kep-wrap .termekkep {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  object-position: center;
}

.termek-energia-badge-link {
  position: absolute;
  right: 0;
  bottom: 15px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  max-width: calc(100% - 12px);
}

.termek-energia-badge {
  display: block;
  width: min(72px, calc(100% - 12px)) !important;
  height: auto;
  max-width: calc(100% - 12px) !important;
  max-height: 34px !important;
  margin: 0 !important;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.28));
}

.termekkep-nincs-keszlet {
  filter: grayscale(100%) !important;
  opacity: 0.5;
  transition: opacity 0.22s ease;
}

.termek-kep-link:hover .termekkep-nincs-keszlet {
  filter: grayscale(100%) !important;
  opacity: 0.5;
}

.termek-keszlet-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  transform: none;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #f1f1f1 100%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1180px) {
  .termek-grid-item {
    flex: 0 0 calc((100% - 16px) / 3);
    width: calc((100% - 16px) / 3);
    max-width: calc((100% - 16px) / 3);
  }
}

.termek-kosarba-btn {
  margin-top: 0;
  padding: 5px 12px;
  font-size: 13px;
  line-height: 1.2;
  border-color: #aa4e00;
  background: linear-gradient(180deg, #ff8f13 0%, #de5200 100%);
  box-shadow: 0 4px 12px rgba(130, 45, 0, 0.34);
}

.kosarba-fireworks-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
  overflow: hidden;
}

.kosarba-ajax-uzenet {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 100000;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  opacity: 0;
}

.kosarba-ajax-uzenet.ok {
  background: linear-gradient(180deg, #39ad55 0%, #227a3a 100%);
}

.kosarba-ajax-uzenet.err {
  background: linear-gradient(180deg, #da5555 0%, #a42525 100%);
}

.kosarba-firework-burst {
  position: absolute;
  width: 1px;
  height: 1px;
}

.kosarba-firework-spark {
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 22px;
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.95),
    0 0 18px rgba(255, 175, 60, 0.9),
    0 0 30px rgba(255, 94, 0, 0.45);
  animation: kosarba-firework-spark var(--dur, 950ms) cubic-bezier(.17, .85, .28, 1) forwards;
  animation-delay: var(--delay, 0ms);
}

.kosarba-firework-ring {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 189, 80, 0.85);
  transform: translate(-50%, -50%) scale(0.3);
  opacity: 0;
  animation: kosarba-firework-ring 620ms ease-out forwards;
}

.kosarba-firework-flash {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 203, 99, 0.7) 35%, rgba(255, 111, 0, 0) 75%);
  opacity: 0;
  animation: kosarba-firework-flash 420ms ease-out forwards;
}

.grand-fireworks-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100001;
  overflow: hidden;
}

.grand-firework-burst {
  position: absolute;
  width: 1px;
  height: 1px;
}

.grand-firework-spark {
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 34px;
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.95),
    0 0 24px rgba(255, 176, 73, 0.92),
    0 0 42px rgba(255, 73, 7, 0.5);
  animation: grand-firework-spark var(--dur, 1250ms) cubic-bezier(.16, .84, .22, 1) forwards;
  animation-delay: var(--delay, 0ms);
}

.grand-firework-ring {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 3px solid rgba(255, 197, 106, 0.86);
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
  animation: grand-firework-ring 860ms ease-out forwards;
}

.grand-firework-flash {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(255, 209, 125, 0.74) 35%, rgba(255, 108, 0, 0) 76%);
  opacity: 0;
  animation: grand-firework-flash 640ms ease-out forwards;
}

@keyframes kosarba-firework-spark {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  8% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1);
  }
}

@keyframes kosarba-firework-ring {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(6);
  }
}

@keyframes kosarba-firework-flash {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4.8);
  }
}

@keyframes grand-firework-spark {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  8% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1);
  }
}

@keyframes grand-firework-ring {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.18);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(10);
  }
}

@keyframes grand-firework-flash {
  0% {
    opacity: 0.98;
    transform: translate(-50%, -50%) scale(0.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(8);
  }
}

.termek-kosar-sor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.termek-darab-input {
  width: 72px;
  text-align: center;
  padding: 4px 6px;
  text-indent: 12px;
}

.termek-darabkedvezmeny {
  display: block;
  margin-top: 6px;
  color: #7a4a1a;
  font-size: 12px;
  font-weight: 700;
}

.termek-nincs-keszleten {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffe7e7 0%, #ffd4d4 100%);
  color: #a51d1d;
  border: 1px solid #dfaaaa;
  font-weight: 700;
}

.termek-keszlet-van {
  color: #ffffff;
  border: 1px solid #0f631e;
  background: linear-gradient(180deg, #3dbb52 0%, #1f8a34 100%);
}

.termek-keszlet-nincs {
  color: #ffffff;
  border: 1px solid #8f1717;
  background: linear-gradient(180deg, #ea5858 0%, #bb1f1f 100%);
}

.termek-keszlet-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}

.adatlap-keszlet-table td {
  vertical-align: middle;
}

.adatlap-kosar-form {
  margin-top: 8px;
}

.adatlap-mennyiseg-unit {
  color: #6a5a46;
  font-weight: 700;
  font-size: 12px;
}

.adatlap-page {
  box-sizing: border-box;
}

.adatlap-page .termek_body > a > .termekkep {
  width: auto;
  max-width: min(100%, 500px);
  height: auto;
}

.adatlap-page .termek_body img {
  max-width: 100%;
  height: auto;
}

.adatlap-main-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.adatlap-main-table > tbody {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  align-items: start;
}

.adatlap-main-table td {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.adatlap-main-table .adatlap-prop-row {
  display: block;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(249, 242, 233, 0.8) 100%);
  border: 1px solid #e4d5c2;
  box-shadow: 0 4px 12px rgba(87, 58, 24, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}

.adatlap-main-table .adatlap-prop-row td {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-bottom: none;
  padding: 8px 10px !important;
}

.adatlap-main-table .adatlap-prop-row td:first-child {
  text-align: left;
  color: #7a634a;
  font-weight: 700;
  font-size: 12px;
  padding-bottom: 2px !important;
}

.adatlap-main-table .adatlap-prop-row td:last-child {
  text-align: left;
  color: #2f2923;
  font-size: 13px;
  padding-top: 2px !important;
}

.adatlap-main-table .adatlap-main-split-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
}

.adatlap-main-table .adatlap-main-split-row > td {
  display: block;
  width: 100% !important;
  box-sizing: border-box;
  text-align: left !important;
  border-right: none !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(248, 238, 225, 0.74) 100%);
  border: 1px solid #e4d5c2;
  border-radius: 10px;
  padding: 10px !important;
}

.adatlap-keszlet-table {
  width: 100%;
  table-layout: fixed;
}

.adatlap-keszlet-table td {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.adatlap-hosszu-link {
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .adatlap-page {
    padding: 4px 0 !important;
  }

  .adatlap-page .termek_header h1 {
    margin: 4px 0;
    line-height: 1.35;
  }

  .adatlap-page .termek_body {
    padding: 8px 4px;
  }

  .adatlap-page .termek_body > a > .termekkep {
    max-width: 100% !important;
    max-height: none !important;
  }

  .adatlap-leiras-szoveg {
    margin: 12px 8px !important;
  }

  .adatlap-main-table {
    width: 100% !important;
  }

  .adatlap-main-table > tbody {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .adatlap-main-table .adatlap-main-split-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .adatlap-main-table > tbody > tr.adatlap-main-split-row > td {
    padding: 10px 8px !important;
  }

  .adatlap-kedvezmeny-wrap {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .adatlap-keszlet-table td {
    font-size: 13px !important;
  }

  .termek-kosar-sor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .termek-darab-input {
    width: 72px;
  }

  .termek-grid {
    gap: 4px;
  }

  .termek-grid-item {
    flex: 0 0 calc((100% - 4px) / 2);
    width: calc((100% - 4px) / 2);
    max-width: calc((100% - 4px) / 2);
  }

  .termek-grid-item:last-child:nth-child(odd) {
    display: none !important;
  }
}


.termek_leiras td { border-bottom: 1px solid #cecece;}
.termek_leiras td td { border-bottom: none;}
.kiemelt { color: #ff7a00; font-weight: bold;}

.artmenu:link    {color: #999; text-decoration:none; margin-right: 0px; margin-left: 0px;}
.artmenu:visited {color: #999; text-decoration:none; margin-right: 0px; margin-left: 0px;}
.artmenu:active  {color: #F60; text-decoration:none; margin-right: 0px; margin-left: 0px;}
.artmenu:hover   {color: #F60; text-decoration:none; margin-right: 0px; margin-left: 0px;}


.scroller {
  color: #6d6357;
  font-size: 12px;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.scroller a {
  display: inline-block;
  color: inherit;
  text-decoration: none !important;
}

.scroller a > div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 10px;
  box-sizing: border-box;
  border: 1px solid #b95700;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff9a1f 0%, #e76500 100%);
  color: #ffffff;
  line-height: 1;
  box-shadow: 0 3px 9px rgba(140, 57, 0, 0.28);
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}

.scroller a > div.current {
  background: linear-gradient(180deg, #fff8e7 0%, #ffe1b2 100%);
  border-color: #d6a45d;
  color: #6b451a;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(166, 109, 35, 0.18);
}

.scroller a:hover > div {
  color: #ffffff;
  border-color: #aa4e00 !important;
  filter: brightness(1.08) saturate(1.05);
  text-decoration: none;
  transform: translateY(-1px);
}

.scroller a:hover > div.current {
  color: #6b451a;
  border-color: #d6a45d !important;
  filter: none;
}

.scroller a {
  text-decoration: none !important;
}

.tartalom1 {
  font-size: 12px;
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 5px;
  text-align: justify;
}
.tartalom2 {
  font-size: 14px;
  color: #F60; 
  padding-bottom: 5px;
}
.tartalom3 {
  font-size: 13px;
  color: #009; 
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 5px;
  text-align: justify;
}
.tartalom4 {
  font-size: 12px;
}
.tartalom5 {
  font-size: 12px;
  color: #F60;
}
.tartalom6 {
  font-size: 13px;
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 5px;
  text-align: justify;
}
.tartalom7 {
  text-align: center;
}
.tartalom8 {
  font-size: 9px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
}
.tartalom9 {
  font-size: 14px;
  margin-left: 20px;
  color: #FFF;
}

.kategoria_leiras { font-size: 13px; margin-top: 10px; margin-bottom: 10px; margin-left: 6px; }
.kategoria_leiras p { margin: 0px;padding: 0px; margin-bottom: 0px;}
.kosar_list td, .table_list td { font-size: 12px; border-bottom: 1px solid #DDDDDD; }
.kosar_kiemelt td, .table_list_highlighted td { font-size: 13px; height: 30px; background-color: #EEEEEE; font-weight: bold; }
.table_list tr:hover td { background-color: #EFEFEF; }
.cim-kartya-fejlec { font-weight: 700; color: #4d4338; margin-bottom: 8px; }
.cim-szerkesztes-gomb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  border-radius: 999px;
  border: 1px solid #e2b07f;
  background: linear-gradient(180deg, #fff8f0 0%, #ffe9d2 100%);
  color: #c46d1f !important;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(120, 73, 24, 0.15);
  transition: all 0.2s ease;
}
.cim-szerkesztes-gomb:hover {
  background: linear-gradient(180deg, #fff1e3 0%, #ffdcb8 100%);
  border-color: #d88b46;
  color: #9f5f22 !important;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(120, 73, 24, 0.2);
}

.cikk_torzs { font-size: 14px; }

.hirek_header { background-color: #FF7A00; color: white; font-weight: bold; padding: 6px; padding-left: 10; font-size: 15px; }
.hirek_body { font-size: small; }

.akciosbuborek {
  
    animation: buborek 2s infinite;

  
  /* animation: 1s ease-out infinite;
  transform: scale(1.5);
  */
}

@keyframes buborek {
  0% {
    transform: scale(1.0);
  }  
  
  50% {
    transform: scale(1.2);
  }
  
  100% {
    transform: scale(1.0);
  }
}

.line-1{
    position: relative;
    top: 50%;  
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    font-size: 180%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
}

/* Animation */
.anim-typewriter{
  animation: typewriter 10s steps(44) 1s 1 normal both,
             blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 24em;}
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}

/* Sidebar refresh */
.left_panel .main_menu {
  margin: 2px 0 16px 0;
  padding-left: 0;
}

.left_panel .main_menu table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}

.left_panel .main_menu tr {
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.left_panel .main_menu tr:hover {
  transform: translateX(2px);
}

.left_panel .main_menu td {
  background: transparent;
  vertical-align: middle;
}

.left_panel .main_menu td:first-child {
  width: 42px;
  opacity: 0.92;
}

.left_panel .main_menu div {
  margin: 0;
  padding: 6px 0 6px 6px;
  border-bottom: 1px solid #e5ddd2;
  color: #4b4033;
  font-weight: 600;
  font-size: 14px;
}

.left_panel .main_menu a {
  color: #4d4338;
  transition: color 0.2s ease;
}

.left_panel .main_menu a:hover {
  color: #9f5f22;
  text-decoration: none;
}

.left_panel .subpanel,
.right_panel .subpanel {
  margin: 0 0 14px 0;
  padding: 0;
  border-top: 1px solid #e3d9cc;
  font-size: 13px;
}

.left_panel .subpanel .subheader,
.left_panel .subpanel .subheader_gray,
.right_panel .subpanel .subheader,
.right_panel .subpanel .subheader_gray {
  margin: 0;
  padding: 5px;
  background: linear-gradient(90deg, #ffd6ad 0%, #ffe9cf 68%, rgba(255, 233, 207, 0) 100%);
  color: #9a5717;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #f0c392;
}

.left_panel .subpanel .subheader a,
.right_panel .subpanel .subheader a {
  color: #9a5717 !important;
}

.left_panel .subpanel ul,
.right_panel .subpanel ul {
  margin: 0;
  padding: 6px 0 0 14px;
  list-style: none;
}

.left_panel .subpanel li,
.right_panel .subpanel li {
  color: #b87838;
  border-bottom: 1px dashed #e8dfd3;
  padding: 5px 0;
}

.left_panel .subpanel li:last-child,
.right_panel .subpanel li:last-child {
  border-bottom: none;
}

.left_panel .subpanel li span,
.right_panel .subpanel li span {
  color: #5d5347;
}

.left_panel .subpanel a,
.right_panel .subpanel a {
  color: #4d4338;
  transition: color 0.2s ease;
}

.left_panel .subpanel a:hover,
.right_panel .subpanel a:hover {
  color: #9f5f22;
}

.right_panel {
  color: #53493e;
}

.right_panel > br:first-child {
  display: none;
}

.right_panel #akcios_banner .kiemelt_termek {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.25) 100%);
  border: 1px solid #e6dac9;
  padding: 8px 8px 10px 8px;
}

.right_panel .kiemelt_ar {
  background: linear-gradient(135deg, #b46b2a 0%, #d5853a 100%);
  color: #fff;
  border-radius: 3px;
  margin-top: 4px;
}

.right_panel .termek_body {
  background: transparent;
  border: none;
}

.right_panel .termek_header {
  background: transparent;
  border: none;
  font-size: 13px;
  color: #e87400;
}

.right_panel .termek_header a {
  color: #e87400;
}

.right_panel .termek_header a:hover {
  color: #c96800;
}

.right_panel img {
  max-width: 100%;
  height: auto;
}

.right_panel .fb-page-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.right_panel .fb-page-wrap iframe {
  width: 100%;
  max-width: 100%;
  display: block;
}

.termek_body img,
.termek_body .termekkep {
  background: transparent !important;
  mix-blend-mode: multiply;
  filter: saturate(1.03) contrast(1.05);
}

@media (max-width: 920px) {
  .left_panel .main_menu table {
    border-spacing: 0 4px;
  }

  .left_panel .subpanel,
  .right_panel .subpanel {
    margin-bottom: 12px;
  }

  .left_panel .subpanel .subheader,
  .left_panel .subpanel .subheader_gray,
  .right_panel .subpanel .subheader,
  .right_panel .subpanel .subheader_gray {
    padding-top: 7px;
  }
}

/* Home / index module refresh */
.home-index {
  color: #3b3228;
}

.home-title {
  margin: 8px 0 16px 0;
  text-align: center;
  color: #e97900;
  font-size: 28px;
  letter-spacing: 0.03em;
}

.home-news .hirek_item {
  margin-bottom: 14px;
  border: 1px solid #eadfce;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(249, 243, 234, 0.82) 100%);
}

.home-news .hirek_header {
  background: linear-gradient(90deg, #db740f 0%, #f7921f 100%);
  color: #fff;
  font-weight: 700;
  padding: 9px 12px;
  font-size: 15px;
}

.home-news .hirek_body {
  font-size: 14px;
  color: #40372d;
  line-height: 1.6;
  padding: 12px;
}

.home-news .hirek_body img,
.home-news .hirek_body iframe,
.home-news .hirek_body table {
  max-width: 100%;
}

@media (max-width: 920px) {
  .home-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .home-news .hirek_header {
    font-size: 14px;
  }
}

/* Éles „glow”: csak 0 blur (nincs elmosás), világos haló – 1.6s pulzus */
@keyframes lenyilo-fejlec-pulse {
  0% {
    text-shadow:
      0 1px 0 rgba(255, 236, 210, 0.95),
      0 -1px 0 rgba(255, 236, 210, 0.95),
      1px 0 0 rgba(255, 236, 210, 0.95),
      -1px 0 0 rgba(255, 236, 210, 0.95),
      1px 1px 0 rgba(255, 228, 195, 0.9),
      -1px 1px 0 rgba(255, 228, 195, 0.9),
      1px -1px 0 rgba(255, 228, 195, 0.9),
      -1px -1px 0 rgba(255, 228, 195, 0.9);
  }

  70% {
    text-shadow:
      0 1px 0 rgba(255, 248, 230, 1),
      0 -1px 0 rgba(255, 248, 230, 1),
      1px 0 0 rgba(255, 248, 230, 1),
      -1px 0 0 rgba(255, 248, 230, 1),
      1px 1px 0 rgba(255, 240, 215, 0.98),
      -1px 1px 0 rgba(255, 240, 215, 0.98),
      1px -1px 0 rgba(255, 240, 215, 0.98),
      -1px -1px 0 rgba(255, 240, 215, 0.98),
      0 2px 0 rgba(255, 252, 238, 0.98),
      0 -2px 0 rgba(255, 252, 238, 0.98),
      2px 0 0 rgba(255, 252, 238, 0.98),
      -2px 0 0 rgba(255, 252, 238, 0.98),
      2px 2px 0 rgba(255, 250, 235, 0.95),
      -2px 2px 0 rgba(255, 250, 235, 0.95),
      2px -2px 0 rgba(255, 250, 235, 0.95),
      -2px -2px 0 rgba(255, 250, 235, 0.95),
      0 3px 0 rgba(255, 255, 250, 0.92),
      0 -3px 0 rgba(255, 255, 250, 0.92),
      3px 0 0 rgba(255, 255, 250, 0.92),
      -3px 0 0 rgba(255, 255, 250, 0.92),
      3px 3px 0 rgba(255, 255, 252, 0.88),
      -3px 3px 0 rgba(255, 255, 252, 0.88),
      3px -3px 0 rgba(255, 255, 252, 0.88),
      -3px -3px 0 rgba(255, 255, 252, 0.88);
  }

  100% {
    text-shadow:
      0 1px 0 rgba(255, 236, 210, 0.95),
      0 -1px 0 rgba(255, 236, 210, 0.95),
      1px 0 0 rgba(255, 236, 210, 0.95),
      -1px 0 0 rgba(255, 236, 210, 0.95),
      1px 1px 0 rgba(255, 228, 195, 0.9),
      -1px 1px 0 rgba(255, 228, 195, 0.9),
      1px -1px 0 rgba(255, 228, 195, 0.9),
      -1px -1px 0 rgba(255, 228, 195, 0.9);
  }
}

.lenyilo-fejlec-blokk {
  margin: 16px 0;
  text-align: center;
  overflow: visible;
}

.lenyilo-fejlec-blokk summary {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #ff9a2e;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  margin: 0 4px;
  list-style: none;
  transition: transform 0.18s ease, color 0.18s ease, text-shadow 0.18s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .lenyilo-fejlec-blokk details:not([open]) > summary {
    animation: lenyilo-fejlec-pulse 1.6s ease-in-out infinite;
  }
}

.lenyilo-fejlec-blokk summary::-webkit-details-marker {
  display: none;
}

.lenyilo-fejlec-blokk summary:hover {
  animation: none;
  color: #ffb04a;
  text-shadow:
    0 1px 0 rgba(255, 252, 240, 1),
    0 -1px 0 rgba(255, 252, 240, 1),
    1px 0 0 rgba(255, 252, 240, 1),
    -1px 0 0 rgba(255, 252, 240, 1),
    1px 1px 0 rgba(255, 245, 220, 1),
    -1px 1px 0 rgba(255, 245, 220, 1),
    1px -1px 0 rgba(255, 245, 220, 1),
    -1px -1px 0 rgba(255, 245, 220, 1),
    0 2px 0 rgba(255, 255, 248, 0.98),
    0 -2px 0 rgba(255, 255, 248, 0.98),
    2px 0 0 rgba(255, 255, 248, 0.98),
    -2px 0 0 rgba(255, 255, 248, 0.98),
    2px 2px 0 rgba(255, 255, 252, 0.95),
    -2px 2px 0 rgba(255, 255, 252, 0.95),
    2px -2px 0 rgba(255, 255, 252, 0.95),
    -2px -2px 0 rgba(255, 255, 252, 0.95);
  transform: translateY(-1px);
}

.lenyilo-fejlec-tartalom {
  margin-top: 14px;
  text-align: left;
}

/* Admin editor responsive blocks rendered on public pages */
.responsive-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.responsive-col {
  box-sizing: border-box;
  width: 100%;
  padding: 0 8px;
}

.responsive-col-6 {
  width: 50%;
}

.responsive-col-4 {
  width: 33.3333%;
}

.responsive-card {
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .responsive-col-6,
  .responsive-col-4 {
    width: 100%;
  }
}