/* ==========================================================================
   Jasziker Kft. — modern theme layer
   Loaded after base.css / frontend.css / menu-dcs.css, overrides + extends
   the existing green / black / white brand palette with a cleaner, animated
   presentation. Nothing here removes the original selectors — it restyles
   and adds new hooks (heroSection, serviceCard, dcsReveal, ...).
   ========================================================================== */

:root {
  --c-green: #2fae56;
  --c-green-dark: #1f7a3d;
  --c-green-darker: #145c2d;
  --c-green-light: #57cf7f;
  --c-black: #0d100d;
  --c-ink: #0f2416;
  --c-white: #ffffff;
  --c-gray-50: #f7f9f7;
  --c-gray-100: #eef1ee;
  --c-gray-200: #dfe4df;
  --c-gray-500: #6b756e;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(13, 16, 13, 0.08);
  --shadow-md: 0 12px 30px rgba(13, 16, 13, 0.12);
  --shadow-lg: 0 24px 60px rgba(13, 16, 13, 0.18);
  --shadow-green: 0 14px 30px rgba(47, 174, 86, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1330px;

  --font-heading: 'OpenSans-ExtraBold', 'Franklin Gothic Book', OpenSans, sans-serif;
  --font-body: 'Franklin Gothic Book', OpenSans, sans-serif;
}

html body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html body h1,
html body h2,
html body h3,
html body h4,
html body .sectionTitle .sectionTitleInner,
html body .lightBlueTitle .lightBlueTitleInner,
html body .lightBlueSectionInner h1 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

html body a.button,
html body .wpcf7 form.wpcf7-form input[type="submit"] {
  font-family: var(--font-heading);
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
html body [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
html body [data-reveal].isVisible {
  opacity: 1;
  transform: translateY(0);
}
html body [data-reveal-group] > * {
  transition-delay: calc(var(--reveal-index, 0) * 90ms);
}
@media (prefers-reduced-motion: reduce) {
  html body [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Top utility bar + header
   -------------------------------------------------------------------------- */
html body .topUtilityBar {
  background: var(--c-black);
  color: var(--c-white);
  font-size: 14px;
}
html body .topUtilityBar .topUtilityBarInner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 8px 20px;
}
html body .topUtilityBar a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
html body .topUtilityBar a i {
  color: var(--c-green-light);
}
html body .topUtilityBar a:hover {
  color: var(--c-green-light);
}
@media (max-width: 800px) {
  html body .topUtilityBar {
    display: none;
  }
}

html body .dcsStoreMenuOuter {
  background-color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 500;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
html body.isScrolled .dcsStoreMenuOuter {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.97);
}
html body .dcsStoreMenuOuter .dcsStoreMenu .logoContainer a img {
  transition: max-width 0.3s ease, margin 0.3s ease;
}
html body.isScrolled .dcsStoreMenuOuter .dcsStoreMenu .logoContainer a img {
  max-width: 96px;
  margin: 10px 0;
}
html body .dcsStoreMenuOuter .dcsStoreMenu .dcsStoreMenuInner .primaryMenu.menu ul li {
  position: relative;
}
html body .dcsStoreMenuOuter .dcsStoreMenu .dcsStoreMenuInner .primaryMenu.menu ul li a {
  font-weight: 600;
  transition: color 0.25s ease;
}
html body .dcsStoreMenuOuter .dcsStoreMenu .dcsStoreMenuInner .primaryMenu.menu ul li::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--c-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
html body .dcsStoreMenuOuter .dcsStoreMenu .dcsStoreMenuInner .primaryMenu.menu ul li:hover::after,
html body .dcsStoreMenuOuter .dcsStoreMenu .dcsStoreMenuInner .primaryMenu.menu ul li.current-menu-item::after {
  transform: scaleX(1);
}

/* Floating call button */
html body .floatingCallBtn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--c-green-light), var(--c-green-dark));
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: var(--shadow-green);
  z-index: 900;
  animation: dcsPulse 2.6s ease-in-out infinite;
  transition: transform 0.25s ease;
}
html body .floatingCallBtn:hover {
  transform: scale(1.08);
  color: var(--c-white);
}
@keyframes dcsPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 174, 86, 0.45), var(--shadow-green); }
  50% { box-shadow: 0 0 0 12px rgba(47, 174, 86, 0), var(--shadow-green); }
}

/* Back to top */
html body .backToTop {
  position: fixed;
  right: 22px;
  bottom: 90px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-black);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 899;
}
html body .backToTop.isVisible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
html body .backToTop:hover {
  background: var(--c-green);
  color: var(--c-white);
}

/* --------------------------------------------------------------------------
   Hero (front page)
   -------------------------------------------------------------------------- */
html body .heroSection {
  position: relative;
  overflow: hidden;
  min-height: 720px;
}
html body .frontPageImage.heroSection img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
html body .frontPageImage.heroSection img.heroBgImage {
  opacity: 0;
  transition: opacity 1.4s ease;
}
html body .frontPageImage.heroSection img.heroBgImage.active {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  html body .frontPageImage.heroSection img.heroBgImage {
    transition: none;
  }
}
html body .heroOverlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(10, 20, 12, 0.92) 0%, rgba(10, 20, 12, 0.72) 40%, rgba(10, 20, 12, 0.35) 68%, rgba(10, 20, 12, 0.15) 100%);
}
html body .heroContent {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  overflow-y: auto;
}
html body .heroContentInner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 40px 40px;
  color: var(--c-white);
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
html body .heroContentInner > * {
  opacity: 0;
  animation: heroFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
html body .heroEyebrow { animation-delay: 0s; }
html body .heroTitle { animation-delay: 0.08s; }
html body .heroSubtitle { animation-delay: 0.16s; }
html body .heroCtaRow { animation-delay: 0.24s; }
html body .heroStats { animation-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  html body .heroContentInner > * { animation: none; opacity: 1; }
}

html body .heroEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-green-light);
  margin-bottom: 18px;
}
html body .heroEyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--c-green-light);
  display: inline-block;
}
html body .heroTitle {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  margin: 0 0 22px 0;
  max-width: 760px;
}
html body .heroTitle .accent {
  color: var(--c-green-light);
}
html body .heroSubtitle {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 34px;
}
html body .heroCtaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 46px;
}
html body .heroStats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  max-width: 820px;
}
html body .heroStat {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 170px;
}
html body .heroStatNumber {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--c-green-light);
  line-height: 1;
}
html body .heroStatPlus {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--c-green-light);
}
html body .heroStatLabel {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  flex-basis: 100%;
  line-height: 1.4;
}
@media (max-width: 1330px) {
  html body .heroSection { min-height: 660px; }
  html body .heroContentInner { padding: 30px 24px; }
}
@media (max-width: 800px) {
  html body .heroSection { min-height: 700px; }
  html body .heroOverlay {
    background: linear-gradient(180deg, rgba(10, 20, 12, 0.55) 0%, rgba(10, 20, 12, 0.88) 60%, rgba(10, 20, 12, 0.95) 100%);
  }
  html body .heroContent { align-items: flex-end; padding-bottom: 30px; }
  html body .heroStats { gap: 22px; }
  html body .heroStat { min-width: 130px; }
  html body .heroEyebrow { margin-top: 60px; }
}

/* Non-front-page hero title (kapcsolat / referenciak / szolgaltatasaim) */
html body .frontPageImage .frontPageHeaderSlogen {
  bottom: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: 88%;
  background: rgba(13, 16, 13, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 22px 48px;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
html body a.button,
html body .wpcf7 form.wpcf7-form input[type="submit"] {
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--c-green), var(--c-green-dark));
  box-shadow: var(--shadow-green);
  padding: 18px 38px;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s ease;
}
html body a.button:hover,
html body .wpcf7 form.wpcf7-form input[type="submit"]:hover {
  background: linear-gradient(135deg, var(--c-green-light), var(--c-green));
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(47, 174, 86, 0.35);
  color: var(--c-white);
}
html body a.button.btnGhost {
  background: transparent;
  box-shadow: none;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--c-white);
}
html body a.button.btnGhost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--c-white);
  box-shadow: none;
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   Section titles
   -------------------------------------------------------------------------- */
html body .frontPage .sectionTitle,
html body .frontPage .lightBlueTitle {
  background: linear-gradient(120deg, var(--c-green-dark), var(--c-green));
  position: relative;
}
html body .frontPage .sectionTitle .sectionTitleInner,
html body .frontPage .lightBlueTitle .lightBlueTitleInner {
  font-weight: 800;
  position: relative;
  padding-left: 20px;
}
html body .frontPage .sectionTitle .sectionTitleInner::before,
html body .frontPage .lightBlueTitle .lightBlueTitleInner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 60%;
  background: var(--c-white);
  border-radius: var(--radius-pill);
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Service cards
   -------------------------------------------------------------------------- */
html body .ServiceItems {
  float: none;
}
html body .serviceCard {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px 30px 38px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border: 1px solid var(--c-gray-100);
}
html body .serviceCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--c-green), var(--c-green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
html body .serviceCard:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
html body .serviceCard:hover::before {
  transform: scaleX(1);
}
html body .serviceCardIcon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 26px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--c-green), var(--c-green-dark));
  box-shadow: var(--shadow-green);
  transition: transform 0.4s var(--ease);
}
html body .serviceCard:hover .serviceCardIcon {
  transform: scale(1.08) rotate(-4deg);
}
html body .serviceCardIcon img {
  width: 42px;
  height: 42px;
  filter: brightness(0) invert(1);
}
html body .serviceCardTitle {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 14px;
  line-height: 1.3;
}
html body .serviceCardDesc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-gray-500);
  margin: 0;
}
@media (max-width: 800px) {
  html body .ServiceItems .ServiceItem {
    margin-top: 20px;
  }
}

/* --------------------------------------------------------------------------
   About / Rólam section
   -------------------------------------------------------------------------- */
html body .frontPage .frontpageContent .homePageFuturedImage {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
html body .frontPage .frontpageContent .homePageContent {
  font-size: 18px;
  line-height: 1.75;
  color: var(--c-ink);
}
html body .frontPage .frontpageContent .homePageContent strong {
  color: var(--c-green-dark);
}
html body .serviceChecklist {
  background: var(--c-gray-50);
  border: 1px solid var(--c-gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 34px;
  margin: 28px 0;
}
html body .serviceChecklist .checklistTitle {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-ink);
  margin: 0 0 18px 0;
}
html body .serviceChecklist ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
html body .serviceChecklist ul li {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-ink);
}
html body .serviceChecklist ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free', FontAwesome;
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-green);
  color: var(--c-white);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
html body p.ctaLine {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-ink);
  margin: 30px 0 10px 0;
}
@media (max-width: 800px) {
  html body .serviceChecklist ul {
    grid-template-columns: 1fr;
  }
  html body .serviceChecklist {
    padding: 24px 22px;
  }
}

/* --------------------------------------------------------------------------
   Partnereink / partner card
   -------------------------------------------------------------------------- */
html body .lightBlueSection {
  background: var(--c-gray-50);
}
html body .lightBlueSection .lightBlueSectionInner {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}
html body .lightBlueSection .lightBlueSectionInner h1 {
  font-size: 30px;
  color: var(--c-ink);
}
html body .lightBlueSection .lightBlueSectionInner img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
html body .lightBlueSection .lightBlueSectionInner a {
  transition: color 0.2s ease;
}
@media (max-width: 1330px) {
  html body .lightBlueSection .lightBlueSectionInner {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
html body .footerCtaBand {
  background: linear-gradient(120deg, var(--c-green-darker), var(--c-green-dark));
  color: var(--c-white);
  padding: 56px 20px;
  text-align: center;
}
html body .footerCtaBand .footerCtaInner {
  max-width: var(--container);
  margin: 0 auto;
}
html body .footerCtaBand h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 14px;
}
html body .footerCtaBand p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}
html body .footerCtaBand a.button {
  background: var(--c-white);
  color: var(--c-green-darker);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}
html body .footerCtaBand a.button:hover {
  background: var(--c-gray-100);
  color: var(--c-green-darker);
}

html body #Footer .dcsFooterSidebar2 .grayscale100 {
  filter: none;
}
html body #Footer .dcsFooterSidebar2 img {
  max-width: 120px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
html body #Footer .dcsFooterSidebar3 a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease, transform 0.2s ease;
}
html body #Footer .dcsFooterSidebar3 a:hover {
  color: var(--c-green-light);
  transform: translateX(-4px);
}
html body #Footer .fa-facebook {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px !important;
  transition: background 0.25s ease, transform 0.25s ease;
}
html body #Footer .fa-facebook:hover {
  background: var(--c-green);
  transform: translateY(-4px);
}
html body #Footer .cr {
  opacity: 0.7;
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
html body .contactPage .contactFormFrame {
  background: linear-gradient(160deg, var(--c-black), #1a1f1a);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
html body .contactPage .contactFormFrame h3 {
  color: var(--c-green-light);
}
html body .contactPage .FuturedImage {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
html body .contactInfoList {
  list-style: none;
  margin: 30px 0 0 0;
  padding: 0;
}
html body .contactInfoList li {
  margin-bottom: 18px;
}
html body .contactInfoList li a,
html body .contactInfoList li span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
html body .contactInfoList li i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-gray-100);
  color: var(--c-green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.25s ease, color 0.25s ease;
}
html body .contactInfoList li a:hover i {
  background: var(--c-green);
  color: var(--c-white);
}
html body .wpcf7 form.wpcf7-form select,
html body .wpcf7 form.wpcf7-form input[type=text],
html body .wpcf7 form.wpcf7-form input[type=email],
html body .wpcf7 form.wpcf7-form textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--c-white);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
html body .wpcf7 form.wpcf7-form select:focus,
html body .wpcf7 form.wpcf7-form input[type=text]:focus,
html body .wpcf7 form.wpcf7-form input[type=email]:focus,
html body .wpcf7 form.wpcf7-form textarea:focus {
  border-color: var(--c-green);
  background-color: rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   Gallery / referenciak polish
   -------------------------------------------------------------------------- */
html body .galeryListContainer .galeryListContainerInner .galeryListItem {
  background: linear-gradient(150deg, var(--c-green), var(--c-green-dark));
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
html body .galeryListContainer .galeryListContainerInner .galeryListItem:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
html body .galeryListContainer .galeryListContainerInner .galeryListItem img {
  border-radius: var(--radius-sm);
}
html body .galeryContainer .galeryContainerTitle {
  background: var(--c-black);
}
html body .galeryContainer .dcsStoreSlideOuter .carousel-inner .carousel-item img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   Webshop termékek - teaser lista
   -------------------------------------------------------------------------- */
html body .backLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--c-gray-500);
  transition: color 0.2s ease;
}
html body .backLink:hover {
  color: var(--c-green-dark);
}

html body .productCard {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-gray-100);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
html body .productCard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
html body .productCardImageLink {
  display: block;
}
html body .productCardImage {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--c-gray-100);
}
html body .productCardImagePlaceholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gray-200);
  font-size: 54px;
}
html body .productCardBody {
  padding: 26px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
html body .productCardTitle {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 14px 0;
}
html body .productCardTitle a {
  color: var(--c-ink);
  transition: color 0.2s ease;
}
html body .productCardTitle a:hover {
  color: var(--c-green-dark);
}
html body .productCardSpecs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
html body .productCardSpec {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-gray-50);
  border: 1px solid var(--c-gray-100);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
}
html body .productCardSpec i {
  color: var(--c-green-dark);
}
html body .productCardFooter {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--c-gray-100);
}
html body .productCardPrice {
  display: flex;
  flex-direction: column;
}
html body .productCardPriceLabel {
  font-size: 13px;
  color: var(--c-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
html body .productCardPriceValue {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-green-dark);
}
html body a.button.productCardBtn {
  padding: 12px 26px;
  font-size: 15px;
}
@media (max-width: 800px) {
  html body .frontPageProducts > [class*="col-"] {
    margin-top: 20px;
  }
}

/* --------------------------------------------------------------------------
   Webshop termék - részletes adatlap
   -------------------------------------------------------------------------- */
html body .productGallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
html body .productGalleryMain {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--c-gray-100);
}
html body .productGalleryMain img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
html body .productGalleryPlaceholder {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gray-200);
  font-size: 72px;
}
html body .productGalleryThumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
html body .productGalleryThumb {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
html body .productGalleryThumb:hover {
  opacity: 0.9;
}
html body .productGalleryThumb.active {
  opacity: 1;
  border-color: var(--c-green);
}
html body .productDetailSpecs {
  margin-bottom: 24px;
}
html body .productDetailPriceBox {
  background: var(--c-gray-50);
  border: 1px solid var(--c-gray-100);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 6px;
}
html body .productDetailPriceRow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}
html body .productDetailPriceRow + .productDetailPriceRow {
  border-top: 1px solid var(--c-gray-100);
}
html body .productDetailPriceLabel {
  font-size: 15px;
  color: var(--c-gray-500);
  font-weight: 600;
}
html body .productDetailPriceValue {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--c-green-dark);
}
html body .productDetailDescription {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
}
html body .productSpecList {
  margin-top: 50px;
  padding-top: 34px;
  border-top: 1px solid var(--c-gray-100);
}
html body .productSpecListTitle {
  font-size: 24px;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 18px;
}
html body .productSpecRow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-gray-100);
}
html body .productSpecLabel {
  flex: 0 0 260px;
  max-width: 260px;
  font-weight: 700;
  color: var(--c-gray-500);
}
html body .productSpecValue {
  flex: 1 1 300px;
  color: var(--c-ink);
  line-height: 1.55;
}
@media (max-width: 700px) {
  html body .productSpecLabel {
    flex-basis: 100%;
    max-width: 100%;
  }
}
