/*
Theme Name:   2B Trade Child
Theme URI:    https://2btrade.hu
Description:  Astra Child Theme – 2B Trade & Consulting Kft. precíziós drón webshop arculat
Author:       2B Trade & Consulting Kft.
Author URI:   https://2btrade.hu
Template:     astra
Version:      1.0.6
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  2btrade-child
Tags:         astra, child-theme, drone, webshop, woocommerce
*/

/* =============================================================================
   2B TRADE CHILD THEME – ASTRA BASE
   Szín- és tipográfiai identitás a prémium drón webshop arculathoz

   SZÍNPALETTA
   ──────────────────────────────────────────────
   --2bt-brand:       #1B4FA0   (brand kék – logo alapszín)
   --2bt-brand-dark:  #0D1F3C   (sötét navy – hero, footer)
   --2bt-brand-mid:   #1a3d7c   (hover állapot)
   --2bt-cyan:        #0ea5e9   (elektromos cián – akcentus)
   --2bt-cyan-light:  #e0f2fe   (halványcián – háttér)
   --2bt-light:       #F0F4FF   (halvány kék fehér – section bg)
   --2bt-bg-sec:      #f8fafc   (másodlagos section háttér)
   --2bt-text:        #1A1A2E   (fő szöveg)
   --2bt-text-muted:  #64748b   (másodlagos szöveg)
   --2bt-border:      #e2e8f0   (border)

   BETŰTÍPUSOK
   ──────────────────────────────────────────────
   Heading: Barlow Condensed 700/800 – kondenzált, ipari, precíziós
   Body:    Barlow 400/500/600 – tiszta, olvasható

   FÁJLSTRUKTÚRA
   ──────────────────────────────────────────────
   style.css        ← ez a fájl (child theme deklaráció + teljes CSS)
   functions.php    ← parent + child enqueueing, Google Fonts
   screenshot.png   ← 1200×900px preview kép (opcionális)
   ============================================================================= */


/* =============================================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================================= */

:root {
  /* Brand színek */
  --2bt-brand:           #1B4FA0;
  --2bt-brand-dark:      #0D1F3C;
  --2bt-brand-mid:       #1a3d7c;
  --2bt-brand-light:     #3b6fd4;
  --2bt-cyan:            #0ea5e9;
  --2bt-cyan-hover:      #0284c7;
  --2bt-cyan-light:      #e0f2fe;

  /* Háttér / felület */
  --2bt-light:           #F0F4FF;
  --2bt-bg-sec:          #f8fafc;
  --2bt-white:           #ffffff;

  /* Szöveg */
  --2bt-text:            #1A1A2E;
  --2bt-text-muted:      #64748b;
  --2bt-text-light:      #94a3b8;

  /* Border */
  --2bt-border:          #e2e8f0;
  --2bt-border-dark:     rgba(255,255,255,0.07);

  /* Animáció */
  --2bt-transition:      all 0.25s ease;
  --2bt-transition-fast: all 0.18s ease;

  /* Árnyékok */
  --2bt-shadow-sm:   0 2px 8px rgba(27,79,160,0.08);
  --2bt-shadow-md:   0 8px 24px rgba(27,79,160,0.12);
  --2bt-shadow-lg:   0 12px 40px rgba(27,79,160,0.16);

  /* Border radius */
  --2bt-radius-sm:   4px;
  --2bt-radius-md:   8px;
  --2bt-radius-lg:   12px;
  --2bt-radius-xl:   16px;
}


/* =============================================================================
   2. ASTRA THEME VARIABLE OVERRIDE
   ============================================================================= */

:root {
  /* Astra globális szín-változók felülírása */
  --ast-global-color-0:  #1B4FA0;   /* primary */
  --ast-global-color-1:  #0D1F3C;   /* secondary */
  --ast-global-color-2:  #0ea5e9;   /* accent */
  --ast-global-color-3:  #1A1A2E;   /* text */
  --ast-global-color-4:  #64748b;   /* text muted */
  --ast-global-color-5:  #e2e8f0;   /* border */
  --ast-global-color-6:  #f8fafc;   /* background secondary */
  --ast-global-color-7:  #F0F4FF;   /* background light */

  /* Astra tipográfia */
  --ast-body-font-family:    'Barlow', sans-serif;
  --ast-heading-font-family: 'Barlow Condensed', sans-serif;
  --ast-body-font-size:      15px;
  --ast-body-line-height:    1.7;
  --ast-body-font-weight:    400;

  /* Astra heading súlyok */
  --ast-heading-font-weight: 800;
  --ast-heading-line-height: 1.1;

  /* Astra container szélesség */
  --ast-content-width:       1100px;
}


/* =============================================================================
   3. ALAPOK: TIPOGRÁFIA, RESET
   ============================================================================= */

body,
.ast-single-post .entry-content,
.woocommerce,
.woocommerce-page {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--2bt-text);
}

h1, h2, h3, h4, h5, h6,
.ast-heading,
.entry-title,
.page-title,
.woocommerce h1,
.woocommerce h2,
.woocommerce h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--2bt-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { color: var(--2bt-text-muted); line-height: 1.7; }

a {
  color: var(--2bt-brand);
  text-decoration: none;
  transition: var(--2bt-transition-fast);
}
a:hover { color: var(--2bt-brand-mid); }

strong, b { font-weight: 600; color: var(--2bt-text); }


/* =============================================================================
   4. STICKY HEADER / NAVIGÁCIÓ
   ============================================================================= */

/* Astra header wrapper */
#masthead,
.ast-header-wrap,
#ast-fixed-header {
  background: #ffffff !important;
  border-bottom: 1px solid var(--2bt-border) !important;
  box-shadow: none !important;
}

/* Scroll utáni árnyék */
.ast-scroll-style-1 #masthead,
.ast-scroll-style-1 .ast-header-wrap {
  box-shadow: 0 2px 16px rgba(27,79,160,0.08) !important;
}

/* Navigáció konténer */
.main-header-bar,
.ast-primary-header-bar {
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
}

/* Logo */
.ast-site-identity .site-title,
.ast-site-identity .site-title a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--2bt-text) !important;
  text-decoration: none;
}

.ast-site-identity .site-description {
  font-size: 10px;
  font-weight: 400;
  color: var(--2bt-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Navigációs linkek */
.main-header-menu .menu-item > a,
.main-header-bar .main-header-menu > .menu-item > a {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--2bt-text-muted) !important;
  letter-spacing: 0.2px;
  padding: 0.5rem 0.75rem;
  transition: var(--2bt-transition-fast);
}

.main-header-menu .menu-item > a:hover,
.main-header-menu .current-menu-item > a {
  color: var(--2bt-brand) !important;
}

/* Dropdown menu */
.main-header-menu .sub-menu {
  border: 1px solid var(--2bt-border) !important;
  border-radius: var(--2bt-radius-md) !important;
  box-shadow: var(--2bt-shadow-md) !important;
  padding: 0.5rem 0;
}

.main-header-menu .sub-menu .menu-item a {
  font-size: 13px !important;
  color: var(--2bt-text-muted) !important;
  padding: 0.5rem 1.25rem;
}

.main-header-menu .sub-menu .menu-item a:hover {
  color: var(--2bt-brand) !important;
  background: var(--2bt-light) !important;
}

/* Header CTA gomb (Ajánlatkérés) */
.ast-header-custom-widget .wp-block-button .wp-block-button__link,
.ast-header-custom-widget a.ast-button,
.menu-item.ast-nav-btn a,
#masthead .ast-nav-btn a {
  background: var(--2bt-brand) !important;
  color: #ffffff !important;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--2bt-radius-md) !important;
  border: none;
  letter-spacing: 0.3px;
  transition: background 0.2s ease !important;
}

#masthead .ast-nav-btn a:hover {
  background: var(--2bt-brand-mid) !important;
}

/* Nyelvi váltó */
.ast-header-custom-widget .lang-toggle,
.wpml-ls-legacy-list-horizontal a {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--2bt-radius-sm);
  border: 1px solid var(--2bt-border);
  color: var(--2bt-text-muted);
  transition: var(--2bt-transition-fast);
}

.wpml-ls-legacy-list-horizontal a:hover {
  border-color: var(--2bt-brand);
  color: var(--2bt-brand);
}

/* Mobile hamburger */
.ast-mobile-menu-buttons .menu-toggle,
.ast-mobile-menu-buttons button {
  color: var(--2bt-brand) !important;
}


/* =============================================================================
   5. HERO SZEKCIÓ
   A WordPress-ben Astra Full Width oldalon / Elementor / Gutenberg
   Full Width blokkban alkalmazandó
   ============================================================================= */

/* Általános hero wrapper osztály – hozzáadjuk a custom oldalhoz */
.hero-section,
.wp-block-cover.is-style-hero,
section.hero-2btrade {
  background-color: var(--2bt-brand-dark);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 2.5rem 0;
  min-height: 540px;
}

/* Grid pattern overlay */
.hero-section::before,
section.hero-2btrade::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Hero badge (animált pont) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14,165,233,0.15);
  border: 1px solid rgba(14,165,233,0.3);
  border-radius: var(--2bt-radius-sm);
  padding: 5px 11px;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-dot {
  width: 6px;
  height: 6px;
  background: var(--2bt-cyan);
  border-radius: 50%;
  animation: 2bt-pulse 2s infinite;
}

@keyframes 2bt-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Hero főcím */
.hero-section h1,
section.hero-2btrade h1,
.wp-block-cover.is-style-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
}

.hero-section h1 em,
section.hero-2btrade h1 em {
  font-style: normal;
  color: #7dd3fc;
}

.hero-section p,
section.hero-2btrade p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 430px;
}

/* Stats bar a hero alján */
.hero-stats-bar {
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.75rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2.5rem;
}

.hero-stat {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hero-stat-num span { color: #7dd3fc; }

.hero-stat-label {
  font-size: 11px;
  color: #64748b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* A főoldali statisztika-sáv (500+ elvégzett misszió, stb.) egy kézzel
   írt HTML widget, inline style="grid-template-columns:repeat(4,1fr)"-el –
   ez mobilon (max-width:480px alatt) kicsit túllógott a képernyőn,
   ezért 2 oszlopra váltjuk keskeny nézetben. */
@media (max-width: 480px) {
    .elementor-element-0757cea > div {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}


/* =============================================================================
   6. GOMBOK (BUTTONS)
   ============================================================================= */

/* Astra / Gutenberg gombok felülírása */
.ast-button,
.wp-block-button__link,
button[type="submit"],
input[type="submit"],
.button,
a.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  font-family: 'Barlow', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  border-radius: var(--2bt-radius-md) !important;
  transition: var(--2bt-transition) !important;
  border: none !important;
  cursor: pointer !important;
}

/* PRIMARY gomb */
.wp-block-button.is-style-primary .wp-block-button__link,
.btn-primary,
.ast-button,
button[type="submit"]:not(.woocommerce-Button),
input[type="submit"]:not(#coupon_code + *) {
  background: var(--2bt-brand) !important;
  color: #ffffff !important;
  padding: 11px 24px !important;
}

.wp-block-button.is-style-primary .wp-block-button__link:hover,
.btn-primary:hover,
.ast-button:hover {
  background: var(--2bt-brand-mid) !important;
  color: #ffffff !important;
}

/* OUTLINE gomb */
.wp-block-button.is-style-outline .wp-block-button__link,
.btn-outline {
  background: transparent !important;
  color: var(--2bt-brand) !important;
  border: 1px solid var(--2bt-brand) !important;
  padding: 10px 24px !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover,
.btn-outline:hover {
  background: var(--2bt-brand) !important;
  color: #ffffff !important;
}

/* CYAN (CTA) gomb */
.wp-block-button.is-style-cyan .wp-block-button__link,
.btn-cyan {
  background: var(--2bt-cyan) !important;
  color: #ffffff !important;
  padding: 13px 34px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px !important;
}

.wp-block-button.is-style-cyan .wp-block-button__link:hover,
.btn-cyan:hover {
  background: var(--2bt-cyan-hover) !important;
}


/* =============================================================================
   7. SECTION / OLDAL SZEKCIÓK
   ============================================================================= */

/* Alap section padding */
.wp-block-group.section-standard,
section.section-2btrade {
  padding: 5.5rem 2.5rem;
}

/* Másodlagos háttér */
.wp-block-group.section-alt,
section.section-alt {
  background: var(--2bt-bg-sec);
}

/* Sötét navy section (hero, CTA) */
.wp-block-group.section-dark,
section.section-dark {
  background: var(--2bt-brand-dark);
}

/* Section tag / badge felett a cím előtt */
.section-tag {
  display: inline-block;
  background: rgba(27,79,160,0.08);
  color: var(--2bt-brand);
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--2bt-radius-sm);
  margin-bottom: 0.75rem;
}

/* Section főcím */
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--2bt-text);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.section-title.light { color: #ffffff; }

/* Section alcím */
.section-sub {
  color: var(--2bt-text-muted);
  font-size: 15px;
  margin-top: 0.5rem;
  max-width: 520px;
}

/* Centred header blokk */
.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}


/* =============================================================================
   8. SZOLGÁLTATÁS KÁRTYÁK
   ============================================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--ast-content-width);
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--2bt-border);
  border-top: 3px solid var(--2bt-brand);
  border-radius: 0 0 var(--2bt-radius-lg) var(--2bt-radius-lg);
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--2bt-shadow-lg);
}

.service-card.accent-cyan {
  border-top-color: var(--2bt-cyan);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(27,79,160,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 22px;
  color: var(--2bt-brand);
}

.service-icon.cyan {
  background: rgba(14,165,233,0.08);
  color: var(--2bt-cyan);
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--2bt-text);
}

.service-card p {
  color: var(--2bt-text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-link,
a.service-link {
  color: var(--2bt-brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.service-link:hover { color: var(--2bt-brand-mid); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

@media (min-width: 600px) and (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}


/* =============================================================================
   9. WOOCOMMERCE TERMÉKKÁRTYÁK
   ============================================================================= */

/* WooCommerce alap reset */
.woocommerce ul.products,
.woocommerce-page ul.products {
  margin: 0 !important;
}

/* Termék grid */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: #ffffff;
  border: 1px solid var(--2bt-border);
  border-radius: var(--2bt-radius-lg) !important;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  transition: transform 0.25s ease, border-color 0.25s ease;
  box-shadow: none;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  transform: translateY(-3px);
  border-color: var(--2bt-brand);
}

/* Termék kép */
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  border-radius: 0 !important;
  margin: 0 !important;
  transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover img {
  transform: scale(1.03);
}

/* Termék kép wrapper */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: block;
  overflow: hidden;
}

/* Termék body */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--2bt-text) !important;
  padding: 1rem 1.25rem 0.3rem !important;
  margin: 0 !important;
}

/* Ár */
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--2bt-brand) !important;
  padding: 0 1.25rem;
  display: block;
}

.woocommerce ul.products li.product .price del {
  color: var(--2bt-text-muted) !important;
  font-size: 0.9rem;
}

/* Kosárba gomb */
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  display: block !important;
  width: calc(100% - 2.5rem) !important;
  margin: 0.75rem 1.25rem 1.25rem !important;
  background: var(--2bt-brand) !important;
  color: #ffffff !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 9px 16px !important;
  border-radius: var(--2bt-radius-md) !important;
  text-align: center !important;
  letter-spacing: 0.3px !important;
  transition: background 0.2s ease !important;
  border: none !important;
}

.woocommerce ul.products li.product .button:hover {
  background: var(--2bt-brand-mid) !important;
}

/* Sale badge */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
  background: var(--2bt-cyan) !important;
  color: #ffffff !important;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--2bt-radius-sm) !important;
  min-width: auto !important;
  min-height: auto !important;
  line-height: 1 !important;
  padding: 4px 10px !important;
  top: 10px !important;
  left: 10px !important;
}

/* Egyedi termékcímkék */
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--2bt-brand);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: var(--2bt-radius-sm);
  text-transform: uppercase;
  z-index: 1;
}

.product-badge.cyan { background: var(--2bt-cyan); }

/* Termékoldal (single product) */
.woocommerce div.product .product_title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 2.2rem !important;
  color: var(--2bt-text) !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--2bt-brand) !important;
  font-size: 1.6rem !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--2bt-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Add to cart gomb a termékoldalakon */
.woocommerce div.product form.cart .single_add_to_cart_button {
  background: var(--2bt-brand) !important;
  color: #ffffff !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 13px 30px !important;
  border-radius: var(--2bt-radius-md) !important;
  border: none !important;
  letter-spacing: 0.3px !important;
  transition: background 0.2s ease !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: var(--2bt-brand-mid) !important;
}

/* WooCommerce checkout / cart */
.woocommerce-checkout #payment #place_order,
.woocommerce #payment #place_order {
  background: var(--2bt-brand) !important;
  color: #ffffff !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 14px 32px !important;
  border-radius: var(--2bt-radius-md) !important;
  width: 100% !important;
  letter-spacing: 0.3px !important;
}

.woocommerce .cart .button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: var(--2bt-brand) !important;
  color: #ffffff !important;
  border-radius: var(--2bt-radius-md) !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--2bt-brand-mid) !important;
}

/* WooCommerce tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-color: var(--2bt-brand) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--2bt-brand) !important;
}

/* Csillagok */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
  color: #f59e0b !important;
}


/* =============================================================================
   10. TERMÉKEK – KATEGÓRIA OLDAL FEJLÉC
   ============================================================================= */

/* Ugyanaz a konténer-javítás, mint a termékoldalnál (single-product):
   fehér oldalháttér, középre igazított, max 1200px széles tartalom.
   A WooCommerce archívum-oldalak (Shop + termékkategóriák/-címkék)
   "plain container" módban alapból teljes szélességűek és háttér nélküliek
   maradnának a téma nélkül. */
body.woocommerce.archive #page,
body.woocommerce.archive .site,
body.post-type-archive-product #page,
body.post-type-archive-product .site {
  background: #fff !important;
}

body.woocommerce.archive .ast-woocommerce-container,
body.woocommerce.archive #content,
body.woocommerce.archive .ast-container,
body.post-type-archive-product .ast-woocommerce-container,
body.post-type-archive-product #content,
body.post-type-archive-product .ast-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  padding-top: 1.5rem !important;
  background: #fff !important;
}

body.woocommerce.archive .woocommerce-breadcrumb,
body.post-type-archive-product .woocommerce-breadcrumb {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.woocommerce .woocommerce-products-header {
  background: var(--2bt-brand-dark);
  /* Teljes szélesség (a headerhez hasonlóan), a konténer korlátait "kitörve" */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  border-radius: 0;
  /* A belső szöveg vízszintesen ugyanott marad, mint eddig (az 1200px-es
     tartalom-oszlophoz igazítva), csak a háttér lóg ki a teljes szélességig */
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1200px) / 2 + 24px));
  margin-bottom: 2.5rem;
}

/* Halvány rácsminta a háttérben – ugyanaz mint a blog / shop hero-nál */
.woocommerce .woocommerce-products-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(14,165,233,.05) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(14,165,233,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.woocommerce .woocommerce-products-header__title {
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -.5px !important;
  color: #ffffff !important;
  margin: 0 0 .75rem !important;
}

.woocommerce .woocommerce-products-header .term-description {
  position: relative;
  z-index: 1;
  color: #94a3b8;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
}

.woocommerce .woocommerce-products-header .term-description p {
  margin: 0;
}

/* A Shop (fő webshop) oldalnak saját egyedi hero-ja van (.tbt-shop-hero,
   lásd functions.php is_shop() hook) - az alapértelmezett WooCommerce
   kategória-fejléc ott felesleges duplikátum lenne és egymásra csúszna
   a két doboz szövege, ezért a fő Shop oldalon elrejtjük. Kategória-
   oldalakon (nincs saját hero-juk) marad a normál megjelenés. */
body.woocommerce-shop .woocommerce-products-header {
  display: none;
}

/* Rendezés / szűrő */
.woocommerce .woocommerce-ordering select {
  border: 1px solid var(--2bt-border);
  border-radius: var(--2bt-radius-sm);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: var(--2bt-text-muted);
  padding: 6px 12px;
}


/* =============================================================================
   11. "MIÉRT MINKET" SZEKCIÓ
   ============================================================================= */

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--ast-content-width);
  margin: 0 auto;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(27,79,160,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--2bt-brand);
  font-size: 17px;
}

.feature-icon.cyan {
  background: rgba(14,165,233,0.08);
  color: var(--2bt-cyan);
}

.feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--2bt-text);
  margin-bottom: 2px;
}

.feature-text span {
  font-size: 13px;
  color: var(--2bt-text-muted);
}

/* Vizuális panel */
.about-visual-panel {
  background: var(--2bt-bg-sec);
  border: 1px solid var(--2bt-border);
  border-radius: var(--2bt-radius-xl);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 1.5rem;
}

.stats-mini-card {
  background: #ffffff;
  border: 1px solid var(--2bt-border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  text-align: center;
}

.stats-mini-card .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--2bt-brand);
}

.stats-mini-card .lbl {
  font-size: 11px;
  color: var(--2bt-text-muted);
  margin-top: 3px;
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .why-us-grid { grid-template-columns: 1fr; }
}


/* =============================================================================
   12. CTA BANNER SZEKCIÓ
   ============================================================================= */

.cta-banner {
  background: var(--2bt-brand-dark);
  padding: 4.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-banner .section-supertag {
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cta-banner h2 {
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: #94a3b8 !important;
  font-size: 15px;
  margin-bottom: 2rem;
}


/* =============================================================================
   13. BLOG KÁRTYÁK
   ============================================================================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--ast-content-width);
  margin: 0 auto;
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--2bt-border);
  border-radius: var(--2bt-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.blog-card:hover { transform: translateY(-3px); }

.blog-card-img {
  height: 200px;
  background: var(--2bt-bg-sec);
  position: relative;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-cat-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--2bt-brand);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--2bt-radius-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-cat-badge.cyan { background: var(--2bt-cyan); }

.blog-card-body { padding: 1.1rem 1.25rem; }

.blog-date {
  font-size: 11px;
  color: var(--2bt-text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}

.blog-card-body h3,
.blog-card-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--2bt-text);
}

.blog-card-body p {
  font-size: 13px;
  color: var(--2bt-text-muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.blog-read-more,
a.blog-read-more {
  color: var(--2bt-brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.blog-read-more:hover { color: var(--2bt-brand-mid); }

/* Astra Blog archive */
.ast-article-post,
.ast-blog-list-layout article,
.ast-archive-grid article {
  border: 1px solid var(--2bt-border) !important;
  border-radius: var(--2bt-radius-lg) !important;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.25s ease;
}

.ast-article-post:hover { transform: translateY(-3px); }

.ast-blog-featured-section a {
  color: var(--2bt-text-muted) !important;
  font-size: 11px !important;
}

.ast-author-name a,
.entry-meta a {
  color: var(--2bt-brand) !important;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}


/* =============================================================================
   14. FOOTER
   ============================================================================= */

#colophon,
.ast-footer-wrap,
footer.ast-footer-layout-1 {
  background: var(--2bt-brand-dark) !important;
  color: #94a3b8 !important;
}

.ast-footer-widget-area,
.footer-widget-area,
.ast-footer-below-section {
  background: var(--2bt-brand-dark) !important;
}

/* Footer widgetek – fejlécek */
#colophon h1,
#colophon h2,
#colophon h3,
#colophon h4,
#colophon h5,
#colophon h6,
#colophon .widget-title,
.footer-widget-area .widget-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #f1f5f9 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
}

/* Szöveg – elég világos a sötét navy (#0D1F3C) alapon */
#colophon p,
.footer-widget-area p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.7;
}

/* Linkek */
#colophon a,
.footer-widget-area a {
  font-size: 13px;
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

#colophon a:hover,
.footer-widget-area a:hover {
  color: #e2e8f0 !important;
}

/* Menü linkek */
#colophon ul.menu li a,
.footer-widget-area ul li a {
  color: #94a3b8 !important;
  font-size: 13px;
  padding: 0.3rem 0;
  display: block;
  transition: color .2s, padding-left .15s;
}

#colophon ul.menu li a:hover,
.footer-widget-area ul li a:hover {
  color: #e2e8f0 !important;
  padding-left: 5px;
}

/* Elementor footer nav-menu linkek egységes mérete */
.tbt-site-footer .elementor-nav-menu .elementor-item,
.tbt-site-footer .elementor-nav-menu a,
.tbt-site-footer .elementor-nav-menu--main .elementor-item {
    font-size: 13px !important;
    font-family: 'Barlow', sans-serif !important;
    font-weight: 400 !important;
    color: #94a3b8 !important;
    text-decoration: none !important;
}
.tbt-site-footer .elementor-nav-menu .elementor-item:hover,
.tbt-site-footer .elementor-nav-menu a:hover {
    color: #e2e8f0 !important;
}

/* Alsó copyright sáv */
.ast-footer-copyright,
.ast-footer-bar,
#colophon .ast-footer-copyright {
  background: rgba(0,0,0,.15) !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  color: #64748b !important;
  font-size: 13px !important;
  font-family: 'Barlow', sans-serif !important;
}

/* Alsó sávban minden elem egységes méret */
.ast-footer-copyright *,
.ast-footer-bar *,
#colophon .ast-footer-copyright *,
.site-below-footer-wrap *,
.site-below-footer-inner-wrap * {
  font-size: 13px !important;
  font-family: 'Barlow', sans-serif !important;
  line-height: 1.5 !important;
}

/* Footer menü linkek – Astra dynamic CSS felülírása */
#astra-footer-menu .menu-item a,
#astra-footer-menu a,
.footer-navigation a,
.site-below-footer-wrap a,
.ast-footer-copyright a,
.ast-footer-bar a,
#colophon .ast-footer-copyright a {
  font-size: 13px !important;
  font-family: 'Barlow', sans-serif !important;
  color: #64748b !important;
  text-decoration: none !important;
}

#astra-footer-menu .menu-item a:hover,
#astra-footer-menu a:hover,
.footer-navigation a:hover,
.site-below-footer-wrap a:hover,
.ast-footer-copyright a:hover,
.ast-footer-bar a:hover,
#colophon .ast-footer-copyright a:hover {
  color: #94a3b8 !important;
}

/* Közösségi média ikonok */
.ast-footer-social-icons a,
.footer-social a {
  color: #94a3b8 !important;
  font-size: 20px !important;
  margin-right: 10px;
  transition: color 0.2s ease !important;
}

.ast-footer-social-icons a:hover,
.footer-social a:hover {
  color: #e2e8f0 !important;
}


/* =============================================================================
   15. FORM ELEMEK (kapcsolat, ajánlatkérés)
   ============================================================================= */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
input[type="password"],
select,
textarea {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--2bt-text);
  border: 1px solid var(--2bt-border) !important;
  border-radius: var(--2bt-radius-md) !important;
  padding: 10px 14px !important;
  background: #ffffff !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: var(--2bt-brand) !important;
  box-shadow: 0 0 0 3px rgba(27,79,160,0.1) !important;
  outline: none !important;
}

label {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--2bt-text);
  margin-bottom: 6px;
  display: block;
}

/* Contact Form 7 */
.wpcf7-form input[type="submit"] {
  background: var(--2bt-brand) !important;
  color: #ffffff !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
  border-radius: var(--2bt-radius-md) !important;
  border: none !important;
  cursor: pointer !important;
  letter-spacing: 0.3px !important;
  transition: background 0.2s ease !important;
}

.wpcf7-form input[type="submit"]:hover {
  background: var(--2bt-brand-mid) !important;
}

/* Ajánlatkérő gomb – speciális cyan stílus */
.wpcf7-form.quote-form input[type="submit"],
.quote-form .wp-block-button__link {
  background: var(--2bt-cyan) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 13px 34px !important;
}

.wpcf7-form.quote-form input[type="submit"]:hover {
  background: var(--2bt-cyan-hover) !important;
}

.wpcf7-not-valid-tip {
  color: #ef4444 !important;
  font-size: 12px !important;
  margin-top: 4px;
}

.wpcf7-response-output {
  border: 1px solid var(--2bt-border) !important;
  border-radius: var(--2bt-radius-md) !important;
  padding: 12px 16px !important;
  margin-top: 1rem !important;
  font-size: 13px !important;
}


/* =============================================================================
   16. BARION FIZETÉS / CHECKOUT STÍLUSOK
   ============================================================================= */

.woocommerce .woocommerce-info {
  border-top: 3px solid var(--2bt-brand) !important;
  background: var(--2bt-light) !important;
  color: var(--2bt-text) !important;
}

.woocommerce .woocommerce-info a {
  color: var(--2bt-brand) !important;
  font-weight: 600;
}

.woocommerce .woocommerce-error {
  border-top-color: #ef4444 !important;
}

.woocommerce .woocommerce-message {
  border-top-color: #10b981 !important;
  background: #f0fdf4 !important;
}

/* Barion fizetési mód */
.payment_method_barion label img {
  max-height: 24px;
}

/* Kupon mező */
.woocommerce .coupon input[type="text"] {
  border-radius: var(--2bt-radius-md) 0 0 var(--2bt-radius-md) !important;
}

.woocommerce .coupon button[type="submit"] {
  border-radius: 0 var(--2bt-radius-md) var(--2bt-radius-md) 0 !important;
  background: var(--2bt-brand) !important;
  color: #ffffff !important;
}


/* =============================================================================
   17. BREADCRUMBS
   ============================================================================= */

.ast-breadcrumbs-wrapper,
.astra-breadcrumbs {
  background: var(--2bt-bg-sec);
  padding: 0.75rem 2.5rem;
  border-bottom: 1px solid var(--2bt-border);
}

.ast-breadcrumbs span,
.ast-breadcrumbs a {
  font-size: 13px !important;
  color: var(--2bt-text-muted) !important;
}

.ast-breadcrumbs a:hover {
  color: var(--2bt-brand) !important;
}

.ast-breadcrumbs .ast-breadcrumbs-separator {
  color: var(--2bt-text-muted) !important;
}


/* =============================================================================
   18. PAGINATION
   ============================================================================= */

.ast-pagination .page-numbers,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: var(--2bt-text-muted) !important;
  border: 1px solid var(--2bt-border) !important;
  border-radius: var(--2bt-radius-sm) !important;
  padding: 6px 12px !important;
  margin: 0 3px !important;
  transition: var(--2bt-transition-fast);
}

.ast-pagination .page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--2bt-brand) !important;
  color: #ffffff !important;
  border-color: var(--2bt-brand) !important;
}

.ast-pagination .page-numbers:hover,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  border-color: var(--2bt-brand) !important;
  color: var(--2bt-brand) !important;
}


/* =============================================================================
   19. EGYEDI HELPER OSZTÁLYOK
   ============================================================================= */

/* Kék akcentus felső border */
.border-top-brand {
  border-top: 3px solid var(--2bt-brand) !important;
}

.border-top-cyan {
  border-top: 3px solid var(--2bt-cyan) !important;
}

/* Ikon + szöveg páros */
.icon-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Tag / kategória badge */
.tag-badge {
  display: inline-block;
  background: rgba(27,79,160,0.08);
  color: var(--2bt-brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--2bt-radius-sm);
}

.tag-badge.cyan {
  background: rgba(14,165,233,0.12);
  color: var(--2bt-cyan-hover);
}

/* Animált pulzáló dot */
.dot-pulse {
  width: 8px;
  height: 8px;
  background: var(--2bt-cyan);
  border-radius: 50%;
  display: inline-block;
  animation: 2bt-pulse 2s infinite;
}

/* Háttér osztályok */
.bg-brand-dark { background: var(--2bt-brand-dark) !important; }
.bg-brand      { background: var(--2bt-brand) !important; }
.bg-light      { background: var(--2bt-light) !important; }
.bg-secondary  { background: var(--2bt-bg-sec) !important; }

/* Szöveg szín osztályok */
.text-brand    { color: var(--2bt-brand) !important; }
.text-cyan     { color: var(--2bt-cyan) !important; }
.text-muted    { color: var(--2bt-text-muted) !important; }
.text-white    { color: #ffffff !important; }
.text-light    { color: #94a3b8 !important; }

/* Max-width container */
.container-2bt {
  max-width: var(--ast-content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

@media (max-width: 768px) {
  .container-2bt {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}


/* =============================================================================
   20. RESZPONZÍV TÖRÉSPONTOK
   ============================================================================= */

/* Tablet (600–900px) */
@media (min-width: 600px) and (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .woocommerce ul.products[class*="columns-4"] li.product,
  .woocommerce-page ul.products[class*="columns-4"] li.product {
    width: calc(50% - 0.75rem) !important;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobil (<600px) */
@media (max-width: 600px) {
  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 100% !important;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .ast-footer-widget-area {
    padding: 2.5rem 1.5rem;
  }

  .tw-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
}

/* Nagy képernyő (>1200px) */
@media (min-width: 1200px) {
  .container-2bt {
    padding-left: 0;
    padding-right: 0;
  }
}


/* =============================================================================
   21. ACCESSIBILITY & FÓKUSZ
   ============================================================================= */

:focus-visible {
  outline: 2px solid var(--2bt-brand);
  outline-offset: 3px;
  border-radius: 2px;
}

.screen-reader-text {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Skip to content */
.skip-link {
  background: var(--2bt-brand);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  border-radius: var(--2bt-radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}


/* =============================================================================
   22. PRINT
   ============================================================================= */

@media print {
  .tw-nav,
  .hero-section,
  .cta-banner,
  #colophon {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000000;
  }
}


/* =============================================================================
   ELEMENTOR HEADER – 2B Trade fejléc stílusok
   ============================================================================= */

/* Fejléc doboz */
.elementor-location-header {
    box-shadow: none !important;
    transition: box-shadow .2s ease;
}
.elementor-location-header.elementor-sticky--active {
    box-shadow: 0 2px 12px rgba(0,0,0,.07) !important;
}

/* Logo */
.elementor-location-header .tbt-logo-widget a {
    text-decoration: none !important;
}

/* Navigáció – Elementor nav-menu widget */
/* A menüsor 1280px széles nézetnél (a mostani 8+ menüpont/dropdown
   mellett) NEM fért ki egy sorba, ezert automatikusan KET sorba tordelt
   (flex-wrap: wrap) - ez okozta, hogy a menu (es vele egyutt a teljes
   fejlec magassaga) megnyult, es minden - logo, gombok - "lejjebb
   csuszottnak" tunt a tenylegesen hasznalt tartalomhoz kepest. A
   megoldas nem az igazitas (align-items/align-content), hanem hogy a
   menupontok ismet elferjenek EGY sorban - ezert kicsit szukebb
   also-felso/oldalso padding es betumeret kell. */
.elementor-location-header .elementor-nav-menu--main,
.elementor-location-header .elementor-nav-menu--main .elementor-nav-menu {
    align-items: center !important;
    align-content: center !important;
}
.elementor-location-header .elementor-nav-menu--main .elementor-item {
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #64748b !important;
    letter-spacing: 0 !important;
    padding: 20px 6px !important;
    transition: color .2s;
}
.elementor-location-header .elementor-nav-menu--main .elementor-item:hover,
.elementor-location-header .elementor-nav-menu--main .elementor-item.elementor-item-active {
    color: #1B4FA0 !important;
}

/* Dropdown almenü */
.elementor-location-header .elementor-nav-menu--dropdown {
    border-top: 2px solid #1B4FA0 !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.1) !important;
    min-width: 180px;
}
.elementor-location-header .elementor-nav-menu--dropdown .elementor-item {
    font-size: 13px !important;
    padding: 10px 18px !important;
    color: #1A1A2E !important;
    border-bottom: 1px solid #f1f5f9 !important;
}
.elementor-location-header .elementor-nav-menu--dropdown .elementor-item:hover {
    background: #F0F4FF !important;
    color: #1B4FA0 !important;
}

/* Polylang nyelvváltó */
.tbt-lang-switcher .elementor-shortcode {
    display: flex;
    align-items: center;
}
.tbt-lang-switcher ul.lang-switcher,
.tbt-lang-switcher ul.pll-parent-menu-item {
    list-style: none;
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
}
.tbt-lang-switcher ul li a {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 9px;
    border-radius: 5px;
    border: 1px solid #e2e8f0;
    color: #64748b;
    text-decoration: none;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.tbt-lang-switcher ul li.current-lang a,
.tbt-lang-switcher ul li a:hover {
    background: #1B4FA0;
    color: #fff;
    border-color: #1B4FA0;
}

/* Hamburger mobil */
.elementor-location-header .elementor-nav-menu__toggle {
    color: #1A1A2E;
}
.elementor-location-header .elementor-nav-menu--dropdown.elementor-nav-menu__container {
    border-top: 3px solid #1B4FA0;
}

@media (max-width: 768px) {
    .elementor-location-header > .e-con-inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}


/* =============================================================================
   ELEMENTOR FOOTER – 2B Trade lábléc stílusok
   ============================================================================= */

.tbt-site-footer {
    font-family: 'Barlow', sans-serif;
}

/* ── Footer háttér ── */
[data-elementor-id="87"] [data-id="0d8daf8"] {
    background-color: #0D1F3C !important;
    padding: 64px 40px 0 !important;
}

/* ── Fő 4-oszlopos sor: grid → flex (csak asztali nézetben!) ── */
@media (min-width: 769px) {
    [data-id="8571f14"] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 40px !important;
        padding-bottom: 48px !important;
    }
    [data-id="8571f14"] > .e-con-boxed {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 0 !important;
    }
}
/* ── Mobil nézet: oszlopok egymás alatt, teljes szélességben ──
   (enélkül a fenti "width:auto" szabály a tartalom természetes
   szélességére nyújtja az 1. oszlopot, ami vízszintes túlcsordulást
   okozott a teljes oldalon mobilon) */
@media (max-width: 768px) {
    [data-id="8571f14"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
        padding-bottom: 32px !important;
    }
    [data-id="8571f14"] > .e-con-boxed {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}

/* ── Heading stílusok a footerben ── */
[data-elementor-id="87"] h3.elementor-heading-title {
    color: #e2e8f0 !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin: 0 0 4px !important;
}
[data-elementor-id="87"] h5.elementor-heading-title {
    color: #e2e8f0 !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin: 0 0 16px !important;
}
/* alcím (p tag heading) */
[data-elementor-id="87"] [data-id="0864bb1"] p.elementor-heading-title {
    color: #64748b !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: 0 0 16px !important;
}
/* 2B Trade Kft cégnév */
[data-elementor-id="87"] [data-id="b240e83"] p.elementor-heading-title {
    color: #94a3b8 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin: 0 0 8px !important;
}
/* Kövessen minket */
[data-elementor-id="87"] [data-id="31a4532"] p.elementor-heading-title {
    color: #94a3b8 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.6px !important;
    text-transform: uppercase !important;
    margin: 14px 0 8px !important;
}

/* ── Icon-list linkek ── */
[data-elementor-id="87"] .elementor-icon-list-items {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
[data-elementor-id="87"] .elementor-icon-list-item {
    padding: 0 !important;
    margin: 0 0 9px !important;
}
[data-elementor-id="87"] .elementor-icon-list-item a {
    display: block !important;
}
[data-elementor-id="87"] .elementor-icon-list-text {
    color: #64748b !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    transition: color .2s !important;
}
[data-elementor-id="87"] .elementor-icon-list-item:hover .elementor-icon-list-text {
    color: #94a3b8 !important;
}
/* Jogi linkek sor: inline */
[data-id="e1c617b"] ul.elementor-icon-list-items {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    align-items: center !important;
}
[data-id="e1c617b"] li.elementor-icon-list-item {
    margin: 0 !important;
}
[data-id="e1c617b"] .elementor-icon-list-text {
    font-size: 12px !important;
    color: #64748b !important;
}

/* ── Text-editor stílusok ── */
[data-elementor-id="87"] .elementor-widget-text-editor p {
    font-family: 'Barlow', sans-serif !important;
    color: #64748b !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}
/* Copyright */
[data-id="5476668"] p {
    font-size: 12px !important;
    color: #64748b !important;
}

/* ── Social icons ── */
[data-elementor-id="87"] .elementor-social-icon {
    background-color: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: border-color .2s !important;
}
[data-elementor-id="87"] .elementor-social-icon svg {
    fill: #94a3b8 !important;
    width: 14px !important;
    height: 14px !important;
}
[data-elementor-id="87"] .elementor-social-icon:hover {
    border-color: #1B4FA0 !important;
}

/* ── Demján szekció: egységes háttér a szülőn ── */
[data-id="689f716"] {
    background: rgba(0,0,0,0.25) !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    padding: 0 !important;
    gap: 0 !important;
}
/* Belső konténerek háttere transparent – a szülő adja a színt */
.tbt-demjan-logos-row,
[data-id="5a3dfb5"] {
    background: transparent !important;
    border: none !important;
}
/* ── Demján logók sor ── */
.tbt-demjan-logos-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 60px !important;
    padding: 32px 40px 16px !important;
}
.tbt-demjan-logos-row .elementor-widget-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.tbt-demjan-logos-row .elementor-widget-image img {
    height: 100px !important;
    width: auto !important;
    max-width: 240px !important;
    object-fit: contain !important;
    opacity: .9;
    transition: opacity .25s;
}
.tbt-demjan-logos-row .elementor-widget-image img:hover {
    opacity: 1;
}
/* Demján szöveg sor */
[data-id="5a3dfb5"] {
    padding: 10px 40px 24px !important;
}
[data-id="5a3dfb5"] p {
    text-align: center !important;
    font-size: 12px !important;
    color: #64748b !important;
}

/* ── Alsó sor ── */
[data-id="0b2dfc3"] {
    padding: 20px 0 !important;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
}

/* Reszponzív: mobil stacking */
@media (max-width: 768px) {
    .tbt-site-footer > .e-con > .e-con:first-child {
        flex-direction: column !important;
    }
    .tbt-site-footer > .e-con > .e-con:first-child > .e-con {
        width: 100% !important;
        min-width: 100% !important;
    }
    .tbt-site-footer {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .tbt-site-footer .e-con-inner {
        flex-direction: column !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tbt-site-footer > .e-con > .e-con:first-child > .e-con {
        width: 45% !important;
    }
}

/* =============================================================================
   ELEMENTOR FOOTER – Demján Sándor Program sáv
   ============================================================================= */
.tbt-demjan-bar {
    width: 100%;
}
.tbt-demjan-bar img {
    opacity: .9;
    transition: opacity .25s;
}
.tbt-demjan-bar img:hover {
    opacity: 1;
}
@media (max-width: 640px) {
    .tbt-demjan-bar > .e-con-inner > div {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

/* =============================================================================
   DEMJÁN SÁNDOR PROGRAM SÁV
   ============================================================================= */
.tbt-demjan-outer {
    background: #0D1F3C;
    padding: 0 40px 28px;
    width: 100%;
    box-sizing: border-box;
}
.tbt-demjan-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    max-width: 1200px;
    margin: 0 auto;
}
.tbt-demjan-bar p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
    max-width: 520px;
    font-family: Barlow, sans-serif;
}
.tbt-demjan-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.tbt-demjan-logos img {
    height: 52px;
    width: auto;
    display: block;
    opacity: .9;
}
.tbt-demjan-logos img:hover {
    opacity: 1;
}
@media (max-width: 640px) {
    .tbt-demjan-outer { padding: 0 20px 24px; }
    .tbt-demjan-bar { flex-direction: column; align-items: flex-start; }
}

/* =============================================================================
   DEMJÁN SÁNDOR PROGRAM SÁV
   ============================================================================= */
.tbt-demjan-outer {
    background: #0D1F3C;
    width: 100%;
    padding: 28px 40px 32px;
    box-sizing: border-box;
}
.tbt-demjan-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.tbt-demjan-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}
.tbt-demjan-logos img {
    height: 72px;
    width: auto;
    display: block;
    opacity: .9;
    transition: opacity .25s;
}
.tbt-demjan-logos img:hover { opacity: 1; }
.tbt-demjan-bar p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
    font-family: Barlow, sans-serif;
}
@media (max-width: 768px) {
    .tbt-demjan-outer { padding: 20px 20px 24px; }
    .tbt-demjan-logos img { height: 52px; }
    .tbt-demjan-logos { gap: 20px; }
}

/* =============================================================================
   HERO SLIDER
   ============================================================================= */
.tbt-hero-slider {
    position: relative;
}
.tbt-hero-slider .elementor-slides-wrapper {
    width: 100%;
}
.tbt-hero-slider .swiper-slide-contents {
    max-width: 820px;
    padding: 0 80px;
}
.tbt-hero-slider .elementor-slide-heading {
    font-family: "Barlow Condensed", sans-serif !important;
    font-weight: 800 !important;
    font-size: clamp(2.4rem, 5vw, 3.8rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -.5px !important;
    color: #fff !important;
    margin-bottom: 1rem !important;
    /* Gyengébb overlay mellett is olvasható maradjon a kép/videó felett */
    text-shadow: 0 1px 3px rgba(0,0,0,.85), 0 4px 20px rgba(0,0,0,.5);
}
.tbt-hero-slider .elementor-slide-description {
    font-size: 15px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    line-height: 1.75 !important;
    max-width: 500px !important;
    margin-bottom: 2rem !important;
    text-shadow: 0 1px 3px rgba(0,0,0,.9), 0 4px 18px rgba(0,0,0,.6);
}

/* ── Szolgáltatások oldal hero (videó háttér) – szöveg olvashatósága ── */
.tbt-szolg-hero .elementor-heading-title {
    text-shadow: 0 1px 3px rgba(0,0,0,.85), 0 4px 20px rgba(0,0,0,.5);
}
.tbt-szolg-hero .elementor-text-editor {
    text-shadow: 0 1px 3px rgba(0,0,0,.85), 0 2px 12px rgba(0,0,0,.5);
}
.tbt-hero-slider .elementor-slide-button {
    background: #1B4FA0 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-family: "Barlow", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 12px 26px !important;
    letter-spacing: .3px !important;
    transition: background .2s !important;
}
.tbt-hero-slider .elementor-slide-button:hover {
    background: #163d80 !important;
}
.tbt-hero-slider .elementor-swiper-button {
    color: rgba(255,255,255,.8) !important;
    width: 48px !important;
    height: 48px !important;
    background: rgba(255,255,255,.08) !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background .2s !important;
}
.tbt-hero-slider .elementor-swiper-button:hover {
    background: rgba(255,255,255,.18) !important;
}
.tbt-hero-slider .swiper-pagination-bullet {
    background: rgba(255,255,255,.4) !important;
    width: 8px !important;
    height: 8px !important;
    opacity: 1 !important;
    transition: all .3s !important;
}
.tbt-hero-slider .swiper-pagination-bullet-active {
    background: #fff !important;
    width: 24px !important;
    border-radius: 4px !important;
}
/* Stats sáv */
.tbt-stats-bar,
.tbt-stats-bar.e-con,
.tbt-stats-bar.elementor-container {
    background-color: #0D1F3C !important;
    border-top: 1px solid rgba(255,255,255,.07);
}
/* Felirat szöveg: fehér helyett szürkés, de látható sötét háttéren */
.tbt-stat-col .elementor-heading-title {
    color: #94a3b8 !important;
    font-size: 11px !important;
    letter-spacing: .5px !important;
    text-transform: uppercase !important;
}
.tbt-stats-row {
    max-width: 1200px;
    width: 100%;
}
/* Oszlopok elválasztó vonala */
.tbt-stat-col + .tbt-stat-col {
    border-left: 1px solid rgba(255,255,255,.07);
}
/* text-editor szám widget: p tag alapértelmezett margó törlése */
.tbt-stat-col .elementor-widget-text-editor p {
    margin: 0 !important;
}
@media (max-width: 600px) {
    .tbt-stats-row {
        flex-wrap: wrap !important;
    }
    .tbt-stat-col {
        flex-basis: 50% !important;
    }
    .tbt-stat-col + .tbt-stat-col {
        border-left: none;
    }
}
/* Szolgáltatások */
.tbt-services-section {
    min-height: auto;
}
@media (max-width: 768px) {
    .tbt-hero-slider .swiper-slide-contents {
        padding: 0 20px;
        max-width: 100%;
    }
    .tbt-hero-slider .elementor-slide-heading {
        font-size: 2rem !important;
    }
}

/* =============================================================================
   WEBSHOP SECTION – Termékek a főoldalon (woocommerce-products widget)
   ============================================================================= */
[data-widget_type="woocommerce-products.default"] .products {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
}
/* Kategória badge */
[data-widget_type="woocommerce-products.default"] .ast-woo-product-category {
    display: inline-block !important;
    background: rgba(27,79,160,.08) !important;
    color: #1B4FA0 !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .5px !important;
    text-transform: uppercase !important;
    padding: 3px 9px !important;
    border-radius: 4px !important;
    font-family: 'Barlow', sans-serif !important;
    margin: .75rem 1.25rem .3rem !important;
    line-height: 1.5 !important;
}
[data-widget_type="woocommerce-products.default"] ul.products li.product {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .25s, border-color .25s;
    text-align: left;
}
[data-widget_type="woocommerce-products.default"] ul.products li.product:hover {
    transform: translateY(-3px);
    border-color: #1B4FA0;
    box-shadow: 0 8px 24px rgba(27,79,160,.1);
}
[data-widget_type="woocommerce-products.default"] ul.products li.product a img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    background: #f8fafc;
    display: block;
}
[data-widget_type="woocommerce-products.default"] ul.products li.product .woocommerce-loop-product__title {
    font-family: "Barlow Condensed", sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #1A1A2E !important;
    padding: 1.1rem 1.25rem .3rem !important;
    margin: 0 !important;
}
[data-widget_type="woocommerce-products.default"] ul.products li.product .price {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1A1A2E;
    padding: 0 1.25rem .75rem;
    display: block;
}
[data-widget_type="woocommerce-products.default"] ul.products li.product .price ins {
    text-decoration: none;
    color: #1B4FA0;
}
[data-widget_type="woocommerce-products.default"] ul.products li.product a.button,
[data-widget_type="woocommerce-products.default"] ul.products li.product button.button {
    background: #1B4FA0 !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-family: "Barlow", sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 8px 14px !important;
    margin: 0 1.25rem 1.25rem !important;
    border: none !important;
    transition: background .2s !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}
[data-widget_type="woocommerce-products.default"] ul.products li.product a.button:hover,
[data-widget_type="woocommerce-products.default"] ul.products li.product button.button:hover {
    background: #163d80 !important;
}
[data-widget_type="woocommerce-products.default"] .onsale {
    background: #1B4FA0 !important;
    border-radius: 4px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .5px !important;
    padding: 3px 8px !important;
    top: 8px !important;
    left: 8px !important;
    right: auto !important;
}
/* Kép placeholder ha nincs termékfotó */
[data-widget_type="woocommerce-products.default"] ul.products li.product .attachment-woocommerce_thumbnail {
    background: #f0f4ff;
}
@media (max-width: 768px) {
    [data-widget_type="woocommerce-products.default"] ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 480px) {
    [data-widget_type="woocommerce-products.default"] ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* =============================================================================
   FŐOLDAL FULL-WIDTH + SLIDER GAP FIX
   ============================================================================= */

/* Astra site wrapper és content area: teljes szélesség, nincs max-width */
body.ast-page-builder-template #content,
body.ast-page-builder-template .site-content,
body.ast-page-builder-template #primary,
body.ast-page-builder-template .content-area,
body.ast-page-builder-template .ast-container,
body.ast-page-builder-template #main,
body.ast-full-width-layout #content,
body.ast-full-width-layout .site-content,
body.ast-full-width-layout .ast-container,
body.elementor-page #content,
body.elementor-page .site-content,
body.elementor-page #primary,
body.elementor-page .content-area,
body.elementor-page #main {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    margin: 0 !important;
}

/* Astra belső .ast-container max-width felülírása */
body.ast-page-builder-template .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
}

/* Article/entry wrapper: nincs padding */
body.ast-page-builder-template article.page,
body.ast-page-builder-template .entry-content,
body.elementor-page article.page,
body.elementor-page .entry-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* Page title, breadcrumbs elrejtése */
body.ast-page-builder-template .entry-header,
body.ast-page-builder-template .ast-breadcrumbs-wrapper,
body.elementor-page .entry-header,
body.elementor-page .ast-breadcrumbs-wrapper {
    display: none !important;
}

/* Hero slider közvetlenül a header alatt – nincs gap */
.tbt-hero-slider,
.elementor-location-header + * .tbt-hero-slider {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Elementor sections: 100% szélesség */
.elementor-section-wrap > .e-con,
.elementor-section-wrap > .elementor-section {
    max-width: 100% !important;
    width: 100% !important;
}

/* =============================================================================
   SZEKCIÓ TAG BADGE – minden .tbt-section-tag heading widgetre
   ============================================================================= */

.tbt-section-tag .elementor-widget-container {
    text-align: center;
}
.tbt-section-tag .elementor-heading-title {
    display: inline-block !important;
    background: rgba(27,79,160,.08) !important;
    color: #1B4FA0 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 4px 12px !important;
    border-radius: 4px !important;
    margin-bottom: .75rem !important;
    line-height: 1.4 !important;
    font-family: 'Barlow', sans-serif !important;
}

/* =============================================================================
   SZOLGÁLTATÁSOK V2 – tbt-services-v2 (Elementor widgetek)
   ============================================================================= */

/* Kártyarács: 3 egyenlő oszlop, max 1100px */
.tbt-services-v2 .tbt-services-grid {
    max-width: 1100px;
    width: 100% !important;
}
.tbt-services-v2 .tbt-service-card {
    flex: 1 1 0;
    min-width: 0;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s !important;
}
.tbt-services-v2 .tbt-service-card:hover {
    transform: translateY(-5px);
}

/* Ikon doboz méret és igazítás */
.tbt-services-v2 .elementor-icon-box-icon {
    margin-bottom: 1.25rem !important;
}
.tbt-services-v2 .elementor-icon-box-icon .elementor-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.tbt-services-v2 .elementor-icon-box-icon .elementor-icon i {
    font-size: 22px;
    line-height: 1;
}

/* Cím */
.tbt-services-v2 .elementor-icon-box-title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: #1A1A2E !important;
    margin-bottom: .5rem !important;
}

/* Leírás */
.tbt-services-v2 .elementor-icon-box-description {
    color: #64748b !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    font-family: 'Barlow', sans-serif !important;
}

/* Részletek gomb: link stílus */
.tbt-services-v2 .tbt-service-card .elementor-button {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #1B4FA0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: .3px;
    font-family: 'Barlow', sans-serif !important;
    text-decoration: none !important;
    transition: color .2s !important;
    min-height: unset !important;
}
.tbt-services-v2 .tbt-service-card .elementor-button:hover {
    color: #1a3d7c !important;
}

/* Szekció tag badge */
.tbt-services-v2 .tbt-section-tag p {
    display: inline-block;
    background: rgba(27,79,160,.08);
    color: #1B4FA0;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .tbt-services-v2 .tbt-services-grid {
        flex-direction: column !important;
    }
    .tbt-services-v2 .tbt-service-card {
        flex: 1 1 100% !important;
    }
}

/* =============================================================================
   SZAKMAI BLOG SZEKCIÓ – tbt-blog-section
   ============================================================================= */

/* Szekció tag badge (heading widget p tagként) */
.tbt-blog-section .tbt-section-tag p,
.tbt-blog-section .tbt-section-tag {
    display: inline-block;
    background: rgba(27,79,160,.08);
    color: #1B4FA0;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Posts grid: max-width + középre igazítás */
.tbt-blog-section .elementor-posts-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Blog kártya alap */
.tbt-blog-section .elementor-post__card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.tbt-blog-section .elementor-post__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(27,79,160,.09);
}

/* Kép terület: 150px fix magasság, object-fit cover */
.tbt-blog-section .elementor-post__thumbnail__link {
    display: block;
    height: 150px;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
    flex-shrink: 0;
}
.tbt-blog-section .elementor-post__thumbnail__link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Kategória badge overlay a képen */
.tbt-blog-section .elementor-post__badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #1B4FA0;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-family: 'Barlow', sans-serif;
    z-index: 2;
    pointer-events: none;
}

/* Szöveges rész */
.tbt-blog-section .elementor-post__text {
    padding: 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Meta: dátum + kategória */
.tbt-blog-section .elementor-post__meta-data {
    font-size: 11px;
    color: #64748b;
    margin-bottom: .4rem;
    letter-spacing: .3px;
    font-family: 'Barlow', sans-serif;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    align-items: center;
}
.tbt-blog-section .elementor-post-date,
.tbt-blog-section .elementor-post__author,
.tbt-blog-section .elementor-post__categories-list {
    font-size: 11px;
    color: #64748b;
}

/* Cím */
.tbt-blog-section .elementor-post__title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: .5rem !important;
}
.tbt-blog-section .elementor-post__title a {
    color: #1A1A2E !important;
    text-decoration: none;
    transition: color .2s;
}
.tbt-blog-section .elementor-post__title a:hover {
    color: #1B4FA0 !important;
}

/* Excerpt */
.tbt-blog-section .elementor-post__excerpt p {
    font-size: 12.5px !important;
    color: #64748b !important;
    line-height: 1.55 !important;
    margin-bottom: .75rem;
    font-family: 'Barlow', sans-serif;
}

/* Tovább link */
.tbt-blog-section .elementor-post__read-more a {
    color: #1B4FA0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: .3px;
    font-family: 'Barlow', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    margin-top: auto;
}
.tbt-blog-section .elementor-post__read-more a:hover {
    color: #1a3d7c !important;
}

/* Grid gap */
.tbt-blog-section .elementor-posts--skin-cards .elementor-posts-container {
    gap: 1.5rem;
}

/* Szekció alcím max-width középre */
.tbt-blog-section > .elementor-widget-text-editor .elementor-widget-container {
    max-width: 520px;
    margin: 0 auto;
}

/* ── Classic skin kártya formázás ─────────────── */

/* Kártya: keret, border-radius, hover */
[data-widget_type="posts.classic"] .elementor-post {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex !important;
    flex-direction: column;
}
[data-widget_type="posts.classic"] .elementor-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(27,79,160,.09) !important;
    border-color: #c7d7f0 !important;
}

/* Szöveg rész */
[data-widget_type="posts.classic"] .elementor-post__text {
    padding: 1.25rem !important;
    display: flex !important;
    flex-direction: column;
    flex: 1;
}

/* Cím */
[data-widget_type="posts.classic"] .elementor-post__title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 0 0 .4rem !important;
}
[data-widget_type="posts.classic"] .elementor-post__title a {
    color: #1A1A2E !important;
    text-decoration: none !important;
}
[data-widget_type="posts.classic"] .elementor-post__title a:hover {
    color: #1B4FA0 !important;
}

/* Meta */
[data-widget_type="posts.classic"] .elementor-post__meta-data {
    font-size: 11px !important;
    color: #64748b !important;
    font-family: 'Barlow', sans-serif !important;
    letter-spacing: .3px;
    margin: 0 0 .6rem !important;
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}
[data-widget_type="posts.classic"] .elementor-post-date,
[data-widget_type="posts.classic"] .elementor-post-avatar {
    color: #64748b !important;
    font-size: 11px !important;
}

/* Excerpt */
[data-widget_type="posts.classic"] .elementor-post__excerpt {
    flex: 1;
    margin-bottom: .9rem !important;
}
[data-widget_type="posts.classic"] .elementor-post__excerpt p {
    font-size: 12.5px !important;
    color: #64748b !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    font-family: 'Barlow', sans-serif !important;
}

/* Read More → gomb */
[data-widget_type="posts.classic"] .elementor-post__read-more {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px;
    align-self: flex-start;
    color: #1B4FA0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    font-family: 'Barlow', sans-serif !important;
    letter-spacing: .3px;
    text-decoration: none !important;
    border: 1px solid #1B4FA0 !important;
    border-radius: 6px !important;
    padding: 7px 14px !important;
    background: transparent !important;
    transition: background .2s, color .2s;
    line-height: 1.4 !important;
    margin-top: auto;
}
[data-widget_type="posts.classic"] .elementor-post__read-more:hover {
    background: #1B4FA0 !important;
    color: #ffffff !important;
}

/* Kép ha van */
[data-widget_type="posts.classic"] .elementor-post__thumbnail__link {
    display: block;
    height: 150px;
    overflow: hidden;
    flex-shrink: 0;
}
[data-widget_type="posts.classic"] .elementor-post__thumbnail__link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    [data-widget_type="posts.classic"] .elementor-grid-item {
        width: 50% !important;
    }
}
@media (max-width: 600px) {
    [data-widget_type="posts.classic"] .elementor-grid-item {
        width: 100% !important;
    }
}

/* =============================================================================
   BLOG ARCHIVE OLDAL – archive.php alapú saját template
   ============================================================================= */

/* Teljes szélesség – Astra konténerek feloldása
   (csak a saját archive.php sablonra – a WooCommerce termékkategória-archívumokat
   ki kell zárni, mert azok is megkapják a "body.archive" osztályt, de nem ezt
   a sablont használják, és a saját konténer-szélességükre van szükségük) */
body.blog #content,
body.blog .site-content,
body.blog .ast-container,
body.archive:not(.woocommerce) #content,
body.archive:not(.woocommerce) .site-content,
body.archive:not(.woocommerce) .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
}

/* ── Hero szekció ────────────────────────────────────────── */
.tbt-archive-page {
    width: 100%;
    background: #f8fafc;
}
.tbt-archive-hero {
    background: #0D1F3C;
    padding: 5rem 2rem 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tbt-archive-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14,165,233,.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(14,165,233,.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.tbt-archive-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.tbt-archive-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(14,165,233,.15);
    border: 1px solid rgba(14,165,233,.3);
    border-radius: 4px;
    padding: 5px 14px;
    color: #7dd3fc;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.tbt-archive-hero__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0ea5e9;
    flex-shrink: 0;
}
.tbt-archive-hero__title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: clamp(2.2rem, 5vw, 3.4rem) !important;
    color: #fff !important;
    line-height: 1.1 !important;
    letter-spacing: -.5px !important;
    margin: 0 0 1rem !important;
}
.tbt-archive-hero__desc {
    color: #94a3b8;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Posts body ──────────────────────────────────────────── */
.tbt-archive-body {
    padding: 4rem 2rem 5rem;
}
.tbt-archive-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── 3-oszlopos kártya grid ──────────────────────────────── */
.tbt-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* ── Kártya ──────────────────────────────────────────────── */
.tbt-arc-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s;
}
.tbt-arc-card:hover {
    box-shadow: 0 8px 32px rgba(27,79,160,.12);
    transform: translateY(-3px);
}

/* Kép */
.tbt-arc-card__img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #e8f0fe;
    text-decoration: none;
}
.tbt-arc-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.tbt-arc-card:hover .tbt-arc-card__img {
    transform: scale(1.05);
}
.tbt-arc-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B4FA0;
    opacity: .2;
    font-size: 3rem;
}

/* Kategória badge a képen */
.tbt-arc-cat-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #1B4FA0;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
}

/* Body */
.tbt-arc-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.tbt-arc-card__meta {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: #94a3b8;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    margin-bottom: .75rem;
}
.tbt-arc-sep {
    color: #cbd5e1;
}
.tbt-arc-card__title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.25rem !important;
    color: #0D1F3C !important;
    line-height: 1.2 !important;
    margin: 0 0 .75rem !important;
}
.tbt-arc-card__title a {
    color: #0D1F3C !important;
    text-decoration: none !important;
    transition: color .2s;
}
.tbt-arc-card__title a:hover {
    color: #1B4FA0 !important;
}
.tbt-arc-card__excerpt {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
    margin: 0 0 1.25rem;
    flex: 1;
}
.tbt-arc-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #1B4FA0;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color .15s;
    margin-top: auto;
}
.tbt-arc-card__read-more:hover {
    color: #0D1F3C;
}

/* ── Lapozó ──────────────────────────────────────────────── */
.tbt-archive-pagination {
    text-align: center;
}
.tbt-archive-pagination .nav-links {
    display: inline-flex;
    gap: .4rem;
    align-items: center;
}
.tbt-archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: #64748b;
    text-decoration: none;
    background: #fff;
    transition: all .2s;
}
.tbt-archive-pagination .page-numbers.current {
    background: #1B4FA0;
    color: #fff;
    border-color: #1B4FA0;
}
.tbt-archive-pagination .page-numbers:hover:not(.current) {
    background: #f0f4ff;
    border-color: #1B4FA0;
    color: #1B4FA0;
}

.tbt-archive-empty {
    text-align: center;
    color: #64748b;
    font-family: 'Barlow', sans-serif;
    padding: 3rem;
}

/* ── Reszponzív ──────────────────────────────────────────── */
@media (max-width: 960px) {
    .tbt-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .tbt-archive-grid {
        grid-template-columns: 1fr;
    }
    .tbt-archive-body {
        padding: 2.5rem 1.25rem 3rem;
    }
}

/* =============================================================================
   KAPCSOLAT OLDAL
   ============================================================================= */

/* Full-width */
body.page-id-46 #primary,
body.page-id-46 .site-content,
body.page-id-46 #content,
body.page-id-46 .ast-container,
body.page-id-46 #main,
body.page-id-46 .content-area,
body.page-id-46 article.page,
body.page-id-46 .entry-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
body.page-id-46 .entry-header,
body.page-id-46 .ast-breadcrumbs-wrapper,
body.page-id-46 .page-title {
    display: none !important;
}

/* Hero rácsminta */
.tbt-kapcsolat-hero {
    position: relative;
    overflow: hidden;
}
.tbt-kapcsolat-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14,165,233,0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(14,165,233,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Elérhetőség kártyák hover */
.tbt-kapcsolat-info .e-con:not(:first-child) {
    transition: box-shadow .25s, transform .25s;
}
.tbt-kapcsolat-info .e-con > .e-con:hover {
    box-shadow: 0 8px 24px rgba(27,79,160,.1);
    transform: translateY(-2px);
}

/* Form gombok */
.tbt-kapcsolat-main .elementor-button,
.tbt-kapcsolat-main .elementor-field-type-submit .elementor-button {
    background: #1B4FA0 !important;
    font-family: 'Barlow', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: .3px !important;
    transition: background .2s !important;
    width: auto !important;
}
.tbt-kapcsolat-main .elementor-button:hover,
.tbt-kapcsolat-main .elementor-field-type-submit .elementor-button:hover {
    background: #0D1F3C !important;
}

/* Form mezők */
.tbt-kapcsolat-main .elementor-field-group input,
.tbt-kapcsolat-main .elementor-field-group textarea,
.tbt-kapcsolat-main .elementor-field-group select {
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    color: #334155 !important;
    transition: border-color .2s, box-shadow .2s !important;
}
.tbt-kapcsolat-main .elementor-field-group input:focus,
.tbt-kapcsolat-main .elementor-field-group textarea:focus,
.tbt-kapcsolat-main .elementor-field-group select:focus {
    border-color: #1B4FA0 !important;
    box-shadow: 0 0 0 3px rgba(27,79,160,.1) !important;
    outline: none !important;
}
.tbt-kapcsolat-main .elementor-field-label {
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #334155 !important;
}

/* Térkép */
.tbt-kapcsolat-map .elementor-google-map {
    display: block;
    width: 100%;
}

/* Reszponzív */
@media (max-width: 900px) {
    .tbt-kapcsolat-main > .e-con > .e-con {
        flex-direction: column !important;
    }
    .tbt-kapcsolat-main > .e-con > .e-con > .e-con {
        width: 100% !important;
    }
}

/* =============================================================================
   RÓLUNK OLDAL
   ============================================================================= */

/* Full-width layout – Astra korlátok eltávolítása */
body.page-id-45 #primary,
body.page-id-45 .site-content,
body.page-id-45 #content,
body.page-id-45 .ast-container,
body.page-id-45 #main,
body.page-id-45 .content-area,
body.page-id-45 article.page,
body.page-id-45 .entry-content,
body.page-id-50 #primary,
body.page-id-50 .site-content,
body.page-id-50 #content,
body.page-id-50 .ast-container,
body.page-id-50 #main,
body.page-id-50 .content-area,
body.page-id-50 article.page,
body.page-id-50 .entry-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
body.page-id-45 .entry-header,
body.page-id-45 .ast-breadcrumbs-wrapper,
body.page-id-45 .page-title,
body.page-id-50 .entry-header,
body.page-id-50 .ast-breadcrumbs-wrapper,
body.page-id-50 .page-title {
    display: none !important;
}

/* Hero */
.tbt-rolunk-hero {
    position: relative;
    overflow: hidden;
}
.tbt-rolunk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14,165,233,0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(14,165,233,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Értékek szekció – kártyák */
.tbt-rolunk-values .elementor-widget-container,
.tbt-rolunk-certs .elementor-widget-container {
    width: 100%;
}

/* Story szekció – belső sor max-width */
.tbt-rolunk-story > .e-con > .e-con {
    max-width: 1100px !important;
}

/* Team kártyák hover */
.tbt-rolunk-team > .e-con > .e-con > .e-con {
    transition: box-shadow .25s, transform .25s !important;
}
.tbt-rolunk-team > .e-con > .e-con > .e-con:hover {
    box-shadow: 0 8px 32px rgba(27,79,160,.1) !important;
    transform: translateY(-3px) !important;
}

/* CTA gomb */
.tbt-rolunk-cta .elementor-button {
    background: #0ea5e9 !important;
    transition: background .2s !important;
}
.tbt-rolunk-cta .elementor-button:hover {
    background: #0284c7 !important;
}

/* Reszponzív – story szekció: col stack */
@media (max-width: 900px) {
    .tbt-rolunk-story > .e-con > .e-con {
        flex-direction: column !important;
    }
    .tbt-rolunk-story > .e-con > .e-con > .e-con {
        width: 100% !important;
        padding-right: 0 !important;
    }
}

/* =============================================================================
   WOOCOMMERCE SINGLE PRODUCT PAGE
   ============================================================================= */

/* Oldal háttere és konténer */
body.single-product #page,
body.single-product .site {
    background: #fff !important;
}

body.single-product .ast-woocommerce-container,
body.single-product #content,
body.single-product .ast-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

/* Breadcrumb */
body.single-product .woocommerce-breadcrumb {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    color: #94a3b8;
    padding: 16px 0 8px;
    margin: 0;
}
body.single-product .woocommerce-breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
}
body.single-product .woocommerce-breadcrumb a:hover {
    color: #1B4FA0;
}

/* Fő termék blokk – float alapú Astra layout felülírása */
body.single-product div.product {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    align-items: flex-start !important;
    padding: 32px 0 48px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Képgaléria */
body.single-product div.product .woocommerce-product-gallery {
    float: none !important;
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
    padding-right: 32px !important;
    box-sizing: border-box !important;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
body.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img,
body.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
    width: 100% !important;
    height: auto !important;
    max-height: 480px !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 0 !important;
}
body.single-product div.product .woocommerce-product-gallery .flex-viewport {
    border-radius: 12px 12px 0 0;
}
body.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
    display: flex !important;
    gap: 8px;
    padding: 12px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    margin: 0;
    list-style: none;
}
body.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
    margin: 0;
}
body.single-product div.product .woocommerce-product-gallery .flex-control-thumbs img {
    width: 64px !important;
    height: 64px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    border: 2px solid transparent !important;
    cursor: pointer;
    transition: border-color .2s;
}
body.single-product div.product .woocommerce-product-gallery .flex-control-thumbs img.flex-active {
    border-color: #1B4FA0 !important;
}

/* Összefoglaló (jobb oldal) */
body.single-product div.product .summary {
    float: none !important;
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
    padding-left: 16px !important;
    box-sizing: border-box !important;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Kategória badge */
body.single-product div.product .posted_in {
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
body.single-product div.product .posted_in a {
    display: inline-block;
    background: rgba(27,79,160,.08);
    color: #1B4FA0 !important;
    padding: 3px 10px;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
}

/* Termék cím */
body.single-product div.product .product_title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 2.4rem !important;
    font-weight: 800 !important;
    color: #0D1F3C !important;
    line-height: 1.15 !important;
    margin: 0 0 16px !important;
}

/* Ár */
body.single-product div.product p.price,
body.single-product div.product span.price {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #1B4FA0 !important;
    margin-bottom: 20px !important;
    display: block;
}
body.single-product div.product del span.woocommerce-Price-amount {
    color: #94a3b8 !important;
    font-size: 1.2rem !important;
}

/* Rövid leírás */
body.single-product div.product .woocommerce-product-details__short-description {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 24px;
    border-left: 3px solid #1B4FA0;
    padding-left: 16px;
}

/* Kosárba gomb területe */
body.single-product div.product form.cart {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
body.single-product div.product form.cart .qty {
    width: 72px !important;
    height: 48px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 16px !important;
    text-align: center !important;
    background: #fff !important;
    color: #0D1F3C !important;
}
body.single-product div.product form.cart .single_add_to_cart_button {
    background: #1B4FA0 !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 13px 32px !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer;
    transition: background .2s;
    flex: 1;
    min-width: 160px;
    text-align: center;
}
body.single-product div.product form.cart .single_add_to_cart_button:hover {
    background: #0D1F3C !important;
}

/* SKU, kategóriák, tag metaadatok */
body.single-product div.product .product_meta {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 8px;
}
body.single-product div.product .product_meta > span {
    display: block;
    margin-bottom: 4px;
}
body.single-product div.product .product_meta a {
    color: #1B4FA0;
    text-decoration: none;
}

/* Tabs szekció – teljes szélesség alatta */
body.single-product div.product .woocommerce-tabs {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 16px;
    clear: both;
}
body.single-product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e2e8f0 !important;
    padding: 0 !important;
    margin: 0 0 32px !important;
    list-style: none;
    background: transparent;
}
body.single-product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce-tabs ul.tabs li::before,
body.single-product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
    border: none !important;
}
body.single-product .woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}
body.single-product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 12px 24px !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    margin-bottom: -2px;
    transition: color .2s;
}
body.single-product .woocommerce-tabs ul.tabs li.active a,
body.single-product .woocommerce-tabs ul.tabs li a:hover {
    color: #1B4FA0 !important;
    border-bottom-color: #1B4FA0 !important;
}

/* Tab tartalma */
body.single-product .woocommerce-tabs .panel {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #334155;
}
body.single-product .woocommerce-tabs .panel h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0D1F3C;
    margin-bottom: 16px;
}
body.single-product .woocommerce-tabs .panel p {
    margin-bottom: 16px;
}
body.single-product .woocommerce-tabs .panel ul,
body.single-product .woocommerce-tabs .panel ol {
    padding-left: 20px;
    margin-bottom: 16px;
}
body.single-product .woocommerce-tabs .panel table.shop_attributes {
    width: 100%;
    border-collapse: collapse;
}
body.single-product .woocommerce-tabs .panel table.shop_attributes th,
body.single-product .woocommerce-tabs .panel table.shop_attributes td {
    padding: 10px 16px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}
body.single-product .woocommerce-tabs .panel table.shop_attributes th {
    background: #f8fafc;
    font-weight: 600;
    color: #0D1F3C;
    width: 30%;
    text-align: left;
}

/* Kapcsolódó termékek */
body.single-product .related.products {
    padding: 48px 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    clear: both;
}
body.single-product .related.products > h2 {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #0D1F3C !important;
    margin-bottom: 28px !important;
}
body.single-product .related.products ul.products {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
body.single-product .related.products ul.products li.product {
    flex: 0 0 calc(33.333% - 16px) !important;
    width: calc(33.333% - 16px) !important;
    max-width: calc(33.333% - 16px) !important;
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: box-shadow .2s, transform .2s !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}
body.single-product .related.products ul.products li.product:hover {
    box-shadow: 0 8px 32px rgba(27,79,160,.12) !important;
    transform: translateY(-2px) !important;
}
body.single-product .related.products ul.products li.product a.woocommerce-loop-product__link {
    display: block !important;
    width: 100% !important;
    overflow: hidden !important;
    background: #f8fafc;
    text-align: center;
    padding: 16px;
    box-sizing: border-box;
}
body.single-product .related.products ul.products li.product a img {
    width: auto !important;
    max-width: 100% !important;
    height: 200px !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    margin: 0 auto !important;
}
body.single-product .related.products ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #0D1F3C !important;
    padding: 16px 16px 4px !important;
    margin: 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
}
body.single-product .related.products ul.products li.product .price {
    font-family: 'Barlow', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #1B4FA0 !important;
    padding: 0 16px 16px !important;
    display: block !important;
}
body.single-product .related.products ul.products li.product .button {
    display: block !important;
    margin: auto 16px 16px !important;
    background: #1B4FA0 !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    text-align: center !important;
    text-decoration: none !important;
    border: none !important;
    transition: background .2s !important;
}
body.single-product .related.products ul.products li.product .button:hover {
    background: #0D1F3C !important;
}

/* Reszponzív */
@media (max-width: 768px) {
    body.single-product div.product .woocommerce-product-gallery,
    body.single-product div.product .summary {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    body.single-product .related.products ul.products li.product {
        flex: 0 0 calc(50% - 12px) !important;
        width: calc(50% - 12px) !important;
        max-width: calc(50% - 12px) !important;
    }
}
@media (max-width: 480px) {
    body.single-product .related.products ul.products li.product {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ── Ajánlatkérés oldal (ID: 148) full-width ─────────────────── */
body.page-id-148 #primary,
body.page-id-148 .site-content,
body.page-id-148 #content,
body.page-id-148 .ast-container,
body.page-id-148 #main,
body.page-id-148 .content-area,
body.page-id-148 article.page,
body.page-id-148 .entry-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}
body.page-id-148 .entry-header,
body.page-id-148 .ast-breadcrumbs-wrapper,
body.page-id-148 .page-title {
    display: none !important;
}

/* ── Contact EN oldal (ID: 51) full-width ─────────────────── */
body.page-id-51 #primary,
body.page-id-51 .site-content,
body.page-id-51 #content,
body.page-id-51 .ast-container,
body.page-id-51 #main,
body.page-id-51 .content-area,
body.page-id-51 article.page,
body.page-id-51 .entry-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}
body.page-id-51 .entry-header,
body.page-id-51 .ast-breadcrumbs-wrapper,
body.page-id-51 .page-title {
    display: none !important;
}

/* ── Request a Quote EN (ID: 159) full-width ─────────────── */
body.page-id-159 #primary,
body.page-id-159 .site-content,
body.page-id-159 #content,
body.page-id-159 .ast-container,
body.page-id-159 #main,
body.page-id-159 .content-area,
body.page-id-159 article.page,
body.page-id-159 .entry-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}
body.page-id-159 .entry-header,
body.page-id-159 .ast-breadcrumbs-wrapper,
body.page-id-159 .page-title {
    display: none !important;
}

/* ── Szolgáltatások (ID: 44) full-width ──────────────────────── */
body.page-id-44 #primary,
body.page-id-44 .site-content,
body.page-id-44 #content,
body.page-id-44 .ast-container,
body.page-id-44 #main,
body.page-id-44 .content-area,
body.page-id-44 article.page,
body.page-id-44 .entry-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}
body.page-id-44 .entry-header,
body.page-id-44 .ast-breadcrumbs-wrapper,
body.page-id-44 .page-title {
    display: none !important;
}

/* Szolgáltatás kártyák hover efekt */
.tbt-szolg-main .elementor-element,
.tbt-szolg-main .e-con {
    transition: transform .25s ease, box-shadow .25s ease;
}

/* ── Services EN (ID: 49) full-width ─────────────────────────── */
body.page-id-49 #primary,
body.page-id-49 .site-content,
body.page-id-49 #content,
body.page-id-49 .ast-container,
body.page-id-49 #main,
body.page-id-49 .content-area,
body.page-id-49 article.page,
body.page-id-49 .entry-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}
body.page-id-49 .entry-header,
body.page-id-49 .ast-breadcrumbs-wrapper,
body.page-id-49 .page-title {
    display: none !important;
}

/* ── Home EN (ID: 48) full-width ─────────────────────────────── */
body.page-id-48 #primary,
body.page-id-48 .site-content,
body.page-id-48 #content,
body.page-id-48 .ast-container,
body.page-id-48 #main,
body.page-id-48 .content-area,
body.page-id-48 article.page,
body.page-id-48 .entry-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}
body.page-id-48 .entry-header,
body.page-id-48 .ast-breadcrumbs-wrapper,
body.page-id-48 .page-title {
    display: none !important;
}

/* ── Footer social icons – egységes stílus mindkét footerben ─ */
.elementor-87 .elementor-element.elementor-element-18795a0 .elementor-social-icon,
.elementor-88 .elementor-element.elementor-element-18795a0 .elementor-social-icon {
    background-color: rgba(255,255,255,0.15) !important;
    border-radius: 6px !important;
    width: 32px !important;
    height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.elementor-87 .elementor-element.elementor-element-18795a0 .elementor-social-icon i,
.elementor-88 .elementor-element.elementor-element-18795a0 .elementor-social-icon i {
    color: #ffffff !important;
    font-size: 14px !important;
}
.elementor-87 .elementor-element.elementor-element-18795a0 .elementor-social-icon svg,
.elementor-88 .elementor-element.elementor-element-18795a0 .elementor-social-icon svg {
    fill: #ffffff !important;
}

/* ── JOGI OLDALAK – TELJES SZÉLESSÉG ─────────────────────────── */
/* IDs: 185 (ÁSZF HU), 197 (T&C EN), 198 (Adatkezelés HU), 3 (Privacy EN) */
body.page-id-185 .elementor,
body.page-id-197 .elementor,
body.page-id-198 .elementor,
body.page-id-3   .elementor {
    width: 100% !important;
    max-width: 100% !important;
}
body.page-id-185 .elementor > .elementor-inner,
body.page-id-197 .elementor > .elementor-inner,
body.page-id-198 .elementor > .elementor-inner,
body.page-id-3   .elementor > .elementor-inner {
    max-width: 100% !important;
}
body.page-id-3 .site-content,
body.page-id-3 #content,
body.page-id-3 .ast-container,
body.page-id-3 .entry-content,
body.page-id-3 .ast-article-single,
body.page-id-3 #primary,
body.page-id-3 .content-area {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}

/* ── ÁSZF OLDAL (ID:185) ──────────────────────────────────────── */
body.page-id-185 .site-content,
body.page-id-197 .site-content,
body.page-id-198 .site-content,
body.page-id-3 .site-content,
body.page-id-185 #content,
body.page-id-197 #content,
body.page-id-198 #content,
body.page-id-3 #content,
body.page-id-185 .ast-container,
body.page-id-197 .ast-container,
body.page-id-198 .ast-container,
body.page-id-3 .ast-container,
body.page-id-185 .entry-content,
body.page-id-197 .entry-content,
body.page-id-198 .entry-content,
body.page-id-3 .entry-content,
body.page-id-185 .ast-article-single,
body.page-id-197 .ast-article-single,
body.page-id-198 .ast-article-single,
body.page-id-3 .ast-article-single {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
body.page-id-185 #primary,
body.page-id-197 #primary,
body.page-id-198 #primary,
body.page-id-3 #primary,
body.page-id-185 .content-area,
body.page-id-197 .content-area,
body.page-id-198 .content-area,
body.page-id-3 .content-area {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}
body.page-id-185 .elementor-text-editor {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #334155;
    max-width: 860px;
    margin: 0 auto;
}
body.page-id-185 .elementor-text-editor p {
    margin-bottom: .75rem;
}
body.page-id-185 .elementor-text-editor em {
    color: #64748b;
    font-style: italic;
}

/* =============================================================================
   BLOG SINGLE POST – design illesztés
   ============================================================================= */

/* ── Teljes szélesség + nincs sidebar ────────────────────────── */
body.single-post #primary,
body.single-post .content-area {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}
body.single-post .site-content,
body.single-post #content,
body.single-post .ast-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Az Astra üres entry-header elrejtése (mi PHP-ból töltjük be a hero-t) */
body.single-post .entry-header {
    display: none !important;
}

/* ── Egyedi hero szekció ─────────────────────────────────────── */
.tbt-post-hero {
    background: #0D1F3C;
    padding: 5rem 2rem 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tbt-post-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: linear-gradient(#0ea5e9 1px, transparent 1px),
                      linear-gradient(90deg, #0ea5e9 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.tbt-post-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}
.tbt-post-hero__badge {
    margin-bottom: 1.25rem;
}
.tbt-hero-cat {
    display: inline-flex;
    align-items: center;
    background: rgba(14,165,233,.15);
    border: 1px solid rgba(14,165,233,.3);
    border-radius: 4px;
    padding: 5px 14px;
    color: #7dd3fc !important;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    text-decoration: none !important;
}
.tbt-hero-cat:hover {
    background: rgba(14,165,233,.25);
}
.tbt-post-hero__title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    letter-spacing: -.5px !important;
    margin: 0 0 1rem !important;
}
.tbt-post-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: #94a3b8;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
}
.tbt-post-hero__meta .tbt-sep {
    color: #475569;
}

/* ── Kiemelt kép – teljes szélességű sáv ─────────────────────── */
.tbt-post-hero__img-wrap {
    width: 100%;
    line-height: 0;
}
.tbt-post-hero__img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Astra belső featured image elrejtése (mi PHP-ból mutatjuk) */
body.single-post .ast-blog-featured-section,
body.single-post .post-thumb.ast-blog-single-element {
    display: none !important;
}

/* ── Cikk tartalom wrapper ────────────────────────────────────── */
body.single-post .entry-content {
    max-width: 820px !important;
    margin: 0 auto !important;
    padding: 3.5rem 2rem 4rem !important;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #334155;
}

/* ── Tipográfia a tartalomban ────────────────────────────────── */
body.single-post .entry-content h1,
body.single-post .entry-content h2 {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    color: #0D1F3C !important;
    letter-spacing: -.3px;
    margin: 2rem 0 .75rem;
    line-height: 1.15;
}
body.single-post .entry-content h1 { font-size: 2rem !important; }
body.single-post .entry-content h2 { font-size: 1.6rem !important; }
body.single-post .entry-content h3 {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    color: #1B4FA0 !important;
    margin: 1.5rem 0 .5rem;
}
body.single-post .entry-content h4,
body.single-post .entry-content h5 {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 700 !important;
    color: #0D1F3C !important;
    margin: 1.25rem 0 .4rem;
}
body.single-post .entry-content p {
    margin-bottom: 1.25rem;
}
body.single-post .entry-content a {
    color: #1B4FA0;
    text-decoration: underline;
    text-underline-offset: 3px;
}
body.single-post .entry-content a:hover {
    color: #0D1F3C;
}
body.single-post .entry-content ul,
body.single-post .entry-content ol {
    margin: 0 0 1.25rem 1.5rem;
    padding: 0;
}
body.single-post .entry-content li {
    margin-bottom: .4rem;
}
body.single-post .entry-content blockquote {
    border-left: 4px solid #1B4FA0;
    background: #F0F4FF;
    margin: 1.75rem 0;
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #475569;
}
body.single-post .entry-content blockquote p {
    margin: 0;
}
body.single-post .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.25rem 0;
}
body.single-post .entry-content figure {
    margin: 1.75rem 0;
}
body.single-post .entry-content figcaption {
    font-size: 13px;
    color: #64748b;
    text-align: center;
    margin-top: .5rem;
}

/* ── Elválasztó vonal h2 előtt ───────────────────────────────── */
body.single-post .entry-content h2 {
    padding-bottom: .4rem;
    border-bottom: 2px solid #e2e8f0;
}

/* ── Post nav (előző / következő) ───────────────────────────── */
body.single-post .post-navigation {
    max-width: 820px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}
body.single-post .nav-previous a,
body.single-post .nav-next a {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1B4FA0 !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
body.single-post .nav-previous a::before { content: '←'; }
body.single-post .nav-next a::after     { content: '→'; }

/* ── Hozzászólások szekció ───────────────────────────────────── */
body.single-post #comments {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}
body.single-post .comment-reply-title,
body.single-post #reply-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #0D1F3C;
    margin-bottom: 1rem;
}
body.single-post .comment-form input[type="text"],
body.single-post .comment-form input[type="email"],
body.single-post .comment-form input[type="url"],
body.single-post .comment-form textarea {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px 14px;
    width: 100%;
    color: #334155;
    background: #f8fafc;
    outline: none;
    transition: border-color .2s;
}
body.single-post .comment-form input:focus,
body.single-post .comment-form textarea:focus {
    border-color: #1B4FA0;
    background: #fff;
}
body.single-post .comment-form .submit,
body.single-post #submit {
    background: #1B4FA0;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: .3px;
    transition: background .2s;
}
body.single-post .comment-form .submit:hover,
body.single-post #submit:hover {
    background: #0D1F3C;
}

/* ── Kategória tag a tartalom alján ─────────────────────────── */
body.single-post .entry-footer {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2rem 1.5rem;
    font-size: 13px;
    color: #64748b;
}
body.single-post .entry-footer a {
    color: #1B4FA0;
    font-weight: 600;
    text-decoration: none;
}
body.single-post .entry-footer a:hover {
    text-decoration: underline;
}

/* =============================================================================
   BLOG SINGLE POST – single.php LAYOUT (tbt-post-page)
   ============================================================================= */

/* ── Page wrapper ────────────────────────────────────────── */
.tbt-post-page {
    width: 100%;
}

/* ── Hero kiegészítők (grid overlay + dot + sep) ─────────── */
.tbt-post-hero {
    position: relative;
    overflow: hidden;
}
.tbt-post-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14,165,233,.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(14,165,233,.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.tbt-post-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(14,165,233,.15);
    border: 1px solid rgba(14,165,233,.3);
    border-radius: 4px;
    padding: 5px 14px;
    color: #7dd3fc;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.tbt-post-hero__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0ea5e9;
    flex-shrink: 0;
}
.tbt-post-hero__sep {
    color: #475569;
}

/* ── 2-oszlopos grid layout ──────────────────────────────── */
.tbt-post-layout {
    max-width: 1180px;
    margin: 0 auto;
    padding: 3.5rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

/* ── Fő tartalom oszlop ──────────────────────────────────── */
.tbt-post-main {
    min-width: 0;
}

/* Kiemelt kép */
.tbt-post-featured {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    line-height: 0;
}
.tbt-post-featured img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

/* Cikk tartalom – override a 820px limitet, mert a grid kezeli */
body.single-post .entry-content.tbt-post-article {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.tbt-post-article {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #1A1A2E;
}

/* Tagek */
.tbt-post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 13px;
}
.tbt-post-tags .ti {
    color: #1B4FA0;
}
.tbt-tag {
    background: #EEF4FF;
    color: #1B4FA0;
    border: 1px solid #c7d9f5;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s;
}
.tbt-tag:hover {
    background: #1B4FA0;
    color: #fff;
    border-color: #1B4FA0;
}

/* Vissza a bloghoz */
.tbt-post-back {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}
.tbt-back-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: #1B4FA0;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color .15s;
}
.tbt-back-link:hover {
    color: #0D1F3C;
}

/* ── Oldalsáv ────────────────────────────────────────────── */
.tbt-post-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Share widget */
.tbt-sidebar-widget {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
}
.tbt-sidebar-widget__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #0D1F3C;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.tbt-share-btns {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.tbt-share-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    border-radius: 6px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s;
}
.tbt-share-btn:hover { opacity: .85; }
.tbt-share-btn--fb {
    background: #1877F2;
    color: #fff !important;
}
.tbt-share-btn--li {
    background: #0A66C2;
    color: #fff !important;
}

/* CTA box */
.tbt-sidebar-cta {
    background: linear-gradient(135deg, #0D1F3C 0%, #1B4FA0 100%);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
}
.tbt-sidebar-cta__icon {
    font-size: 2.5rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
    line-height: 1;
}
.tbt-sidebar-cta h5 {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    margin: 0 0 .5rem !important;
    color: #fff !important;
}
.tbt-sidebar-cta p {
    font-size: 13px !important;
    color: #94a3b8 !important;
    margin: 0 0 1.25rem !important;
    line-height: 1.5 !important;
}
.tbt-sidebar-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #0ea5e9;
    color: #fff !important;
    padding: .65rem 1.5rem;
    border-radius: 6px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .2s;
}
.tbt-sidebar-cta__btn:hover {
    background: #0284c7;
}

/* ── Kapcsolódó cikkek szekció ───────────────────────────── */
.tbt-related {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 4rem 2rem;
}
.tbt-related__inner {
    max-width: 1180px;
    margin: 0 auto;
}

/* ── Reszponzív ──────────────────────────────────────────── */
@media (max-width: 960px) {
    .tbt-post-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.25rem;
    }
    .tbt-post-sidebar {
        position: static;
    }
    .tbt-share-btns {
        flex-direction: row;
    }
}


/* =============================================================================
   WOOCOMMERCE BOLT OLDAL (/uzlet/)
   ============================================================================= */

body.woocommerce #content,
body.woocommerce .site-content,
body.woocommerce .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
}
body.woocommerce #primary {
    max-width: 100% !important;
    padding: 0 !important;
    float: none !important;
}

/* Hero */
.tbt-shop-hero {
    background: #0D1F3C;
    padding: 5rem 2rem 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tbt-shop-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14,165,233,.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(14,165,233,.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.tbt-shop-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.tbt-shop-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(14,165,233,.15);
    border: 1px solid rgba(14,165,233,.3);
    border-radius: 4px;
    padding: 5px 14px;
    color: #7dd3fc;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.tbt-shop-hero__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0ea5e9;
    flex-shrink: 0;
}
.tbt-shop-hero__title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: clamp(2.2rem, 5vw, 3.4rem) !important;
    color: #fff !important;
    line-height: 1.1 !important;
    letter-spacing: -.5px !important;
    margin: 0 0 1rem !important;
}
.tbt-shop-hero__desc {
    color: #94a3b8;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Shop wrapper */
.tbt-shop-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}
.tbt-shop-wrap .woocommerce-result-count {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: #64748b;
}
.tbt-shop-wrap .woocommerce-ordering select {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px 10px;
    color: #0D1F3C;
}

/* Product grid */
.tbt-shop-wrap ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
    clear: both !important;
}

/* Kártya */
.tbt-shop-wrap ul.products li.product {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
    width: auto !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform .25s, border-color .25s, box-shadow .25s !important;
}
.tbt-shop-wrap ul.products li.product:hover {
    transform: translateY(-3px) !important;
    border-color: #1B4FA0 !important;
    box-shadow: 0 8px 28px rgba(27,79,160,.1) !important;
}
.tbt-shop-wrap ul.products li.product a img {
    width: 100% !important;
    height: 160px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;
}
.tbt-shop-wrap ul.products li.product .woocommerce-loop-product__link {
    display: block;
    text-decoration: none !important;
}
.tbt-shop-wrap ul.products li.product .onsale {
    background: #1B4FA0 !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .5px !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    padding: 3px 8px !important;
    top: 10px !important;
    left: 10px !important;
}
.tbt-shop-wrap ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #0D1F3C !important;
    margin: 0 !important;
    padding: 1rem 1.1rem .3rem !important;
    line-height: 1.25 !important;
}
.tbt-shop-wrap ul.products li.product .price {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #1B4FA0 !important;
    padding: .5rem 1.1rem !important;
    margin: auto 0 0 !important;
    display: block !important;
}
.tbt-shop-wrap ul.products li.product .price del {
    color: #94a3b8 !important;
    font-size: .85rem !important;
    font-weight: 400 !important;
}
.tbt-shop-wrap ul.products li.product .price ins {
    text-decoration: none !important;
    color: #0ea5e9 !important;
}
.tbt-shop-wrap ul.products li.product .button {
    display: block !important;
    width: calc(100% - 2.2rem) !important;
    margin: 0 1.1rem 1.1rem !important;
    padding: .55rem 1rem !important;
    background: #1B4FA0 !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    border: none !important;
    transition: background .2s !important;
    cursor: pointer !important;
}
.tbt-shop-wrap ul.products li.product .button:hover {
    background: #0D1F3C !important;
    color: #fff !important;
}
.tbt-shop-wrap ul.products li.product .added_to_cart {
    display: block !important;
    text-align: center !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 12px !important;
    color: #0ea5e9 !important;
    padding: 0 1.1rem .5rem !important;
    text-decoration: none !important;
}

/* Lapozó */
.tbt-shop-wrap .woocommerce-pagination ul {
    display: flex !important;
    justify-content: center !important;
    gap: .4rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 3rem 0 0 !important;
}
.tbt-shop-wrap .woocommerce-pagination .page-numbers {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    color: #64748b !important;
    background: #fff !important;
    text-decoration: none !important;
    transition: all .2s !important;
}
.tbt-shop-wrap .woocommerce-pagination .page-numbers.current {
    background: #1B4FA0 !important;
    color: #fff !important;
    border-color: #1B4FA0 !important;
}

@media (max-width: 960px) {
    .tbt-shop-wrap ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 480px) {
    .tbt-shop-wrap ul.products {
        grid-template-columns: 1fr !important;
    }
    .tbt-shop-wrap { padding: 2rem 1.25rem 3rem; }
}


/* =============================================================================
   WOOCOMMERCE FIÓKOM OLDAL (/fiokom/)
   ============================================================================= */

/* Astra container — block layoutra váltás, overflow engedélyezése a hero breakouthoz */
body.woocommerce-account .ast-container,
body.woocommerce-account #content,
body.woocommerce-account .site-content {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

/* .tbt-account-page — teljes szélességű blokk */
.tbt-account-page,
.tbt-account-outer {
    width: 100%;
    display: block;
}

/* ── Hero ────────────────────────────────────────────────── */
.tbt-account-hero {
    background: #0D1F3C;
    padding: 4rem 2rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Breakout: teljes viewport szélesség */
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
}
.tbt-account-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14,165,233,.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(14,165,233,.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.tbt-account-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.tbt-account-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(14,165,233,.15);
    border: 1px solid rgba(14,165,233,.3);
    border-radius: 4px;
    padding: 5px 14px;
    color: #7dd3fc;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.tbt-account-hero__title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    color: #fff !important;
    line-height: 1.15 !important;
    margin: 0 0 .75rem !important;
}
.tbt-account-hero__desc {
    color: #94a3b8;
    font-family: 'Barlow', sans-serif;
    font-size: .95rem;
    margin: 0;
}

/* ── Wrapper ─────────────────────────────────────────────── */
.tbt-account-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

/* ── Login / Regisztráció (kijelentkezve) ────────────────── */
.tbt-account-login-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.tbt-account-wrap #customer_login.u-columns.col2-set {
    display: flex;
    gap: 2.5rem;
    width: 100%;
}
.tbt-account-wrap #customer_login .u-column1,
.tbt-account-wrap #customer_login .u-column2 {
    float: none !important;
    width: 50% !important;
    flex: 1 1 0;
}
@media (max-width: 640px) {
    .tbt-account-login-wrap { max-width: 480px; }
    .tbt-account-wrap #customer_login.u-columns.col2-set {
        flex-direction: column;
        gap: 1.5rem;
    }
    .tbt-account-wrap #customer_login .u-column1,
    .tbt-account-wrap #customer_login .u-column2 {
        width: 100% !important;
    }
}
.tbt-account-wrap .woocommerce-form-login,
.tbt-account-wrap .woocommerce-form-register {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem 2rem 2.5rem;
}
.tbt-account-wrap .woocommerce-form-login h2,
.tbt-account-wrap .woocommerce-form-register h2,
.tbt-account-wrap .login h2,
.tbt-account-wrap .register h2 {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    color: #0D1F3C !important;
    margin: 0 0 1.5rem !important;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

/* Form mezők */
.tbt-account-wrap .woocommerce-form__label,
.tbt-account-wrap label {
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #0D1F3C !important;
    display: block;
    margin-bottom: .35rem;
}
.tbt-account-wrap input[type="text"],
.tbt-account-wrap input[type="email"],
.tbt-account-wrap input[type="password"],
.tbt-account-wrap input[type="tel"],
.tbt-account-wrap textarea,
.tbt-account-wrap select {
    width: 100% !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    padding: .65rem .9rem !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    color: #0D1F3C !important;
    background: #fff !important;
    transition: border-color .2s !important;
    box-sizing: border-box !important;
}
.tbt-account-wrap input:focus,
.tbt-account-wrap textarea:focus,
.tbt-account-wrap select:focus {
    border-color: #1B4FA0 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(27,79,160,.1) !important;
}

/* Gombok */
.tbt-account-wrap .woocommerce-button,
.tbt-account-wrap .button,
.tbt-account-wrap button[type="submit"],
.tbt-account-wrap input[type="submit"] {
    background: #1B4FA0 !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: .7rem 1.75rem !important;
    border-radius: 6px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background .2s !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: .4rem !important;
}
.tbt-account-wrap .woocommerce-button:hover,
.tbt-account-wrap .button:hover,
.tbt-account-wrap button[type="submit"]:hover,
.tbt-account-wrap input[type="submit"]:hover {
    background: #0D1F3C !important;
    color: #fff !important;
}

/* ── Bejelentkezett: nav + tartalom ──────────────────────── */
.tbt-account-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: start;
}
.tbt-account-nav {
    min-width: 0;
    overflow: visible;
}

/* Bal nav wrapper */
.tbt-account-nav {
    width: 100%;
    min-width: 0;
}

/* Nav kártya */
.tbt-account-nav .woocommerce-MyAccount-navigation,
.tbt-account-wrap .woocommerce-MyAccount-navigation {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 90px;
    width: 100%;
}
.tbt-account-nav .woocommerce-MyAccount-navigation ul,
.tbt-account-wrap .woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}
.tbt-account-wrap .woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid #f1f5f9;
}
.tbt-account-wrap .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}
.tbt-account-wrap .woocommerce-MyAccount-navigation ul li a {
    display: flex !important;
    align-items: center !important;
    padding: .85rem 1.25rem !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #475569 !important;
    text-decoration: none !important;
    transition: background .15s, color .15s !important;
}
.tbt-account-wrap .woocommerce-MyAccount-navigation ul li a:hover {
    background: #f8fafc !important;
    color: #1B4FA0 !important;
}
.tbt-account-wrap .woocommerce-MyAccount-navigation ul li.is-active a,
.tbt-account-wrap .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--is-active a {
    background: #EEF4FF !important;
    color: #1B4FA0 !important;
    font-weight: 700 !important;
    border-left: 3px solid #1B4FA0 !important;
}

/* Jobb tartalom */
.tbt-account-content,
.tbt-account-wrap .woocommerce-MyAccount-content {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
}

/* Dashboard üdvözlő */
.tbt-account-wrap .woocommerce-MyAccount-content p {
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    color: #475569 !important;
    line-height: 1.7 !important;
}
.tbt-account-wrap .woocommerce-MyAccount-content h2,
.tbt-account-wrap .woocommerce-MyAccount-content h3 {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    color: #0D1F3C !important;
    margin-bottom: 1.25rem !important;
}
.tbt-account-wrap .woocommerce-MyAccount-content h2 { font-size: 1.5rem !important; }
.tbt-account-wrap .woocommerce-MyAccount-content h3 { font-size: 1.2rem !important; }

/* Rendelések tábla */
.tbt-account-wrap .woocommerce-orders-table,
.tbt-account-wrap table.woocommerce-orders-table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
}
.tbt-account-wrap .woocommerce-orders-table th {
    background: #f8fafc !important;
    color: #0D1F3C !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: .5px !important;
    padding: .75rem 1rem !important;
    border-bottom: 2px solid #e2e8f0 !important;
    text-align: left !important;
}
.tbt-account-wrap .woocommerce-orders-table td {
    padding: .85rem 1rem !important;
    border-bottom: 1px solid #f1f5f9 !important;
    color: #475569 !important;
    vertical-align: middle !important;
}
.tbt-account-wrap .woocommerce-orders-table tr:last-child td {
    border-bottom: none !important;
}

/* Rendelés státusz badge-ek */
.tbt-account-wrap .woocommerce-order-status {
    display: inline-block !important;
    padding: 3px 10px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .4px !important;
}
.tbt-account-wrap mark.order-status.status-completed,
.tbt-account-wrap .woocommerce-order-status--completed {
    background: #dcfce7 !important; color: #166534 !important;
}
.tbt-account-wrap mark.order-status.status-processing,
.tbt-account-wrap .woocommerce-order-status--processing {
    background: #dbeafe !important; color: #1e40af !important;
}
.tbt-account-wrap mark.order-status.status-pending,
.tbt-account-wrap .woocommerce-order-status--pending {
    background: #fef9c3 !important; color: #854d0e !important;
}
.tbt-account-wrap mark.order-status.status-cancelled,
.tbt-account-wrap .woocommerce-order-status--cancelled {
    background: #fee2e2 !important; color: #991b1b !important;
}

/* Értesítések */
.tbt-account-wrap .woocommerce-message,
.tbt-account-wrap .woocommerce-info {
    background: #EEF4FF !important;
    border-left: 4px solid #1B4FA0 !important;
    color: #0D1F3C !important;
    border-radius: 0 6px 6px 0 !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    padding: 1rem 1.25rem !important;
    margin-bottom: 1.5rem !important;
}
.tbt-account-wrap .woocommerce-error {
    background: #fee2e2 !important;
    border-left: 4px solid #dc2626 !important;
    color: #991b1b !important;
    border-radius: 0 6px 6px 0 !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    padding: 1rem 1.25rem !important;
    margin-bottom: 1.5rem !important;
    list-style: none !important;
}

/* ── Reszponzív ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .tbt-account-layout {
        grid-template-columns: 1fr !important;
    }
    .tbt-account-nav .woocommerce-MyAccount-navigation {
        position: static;
    }
    .tbt-account-wrap { padding: 2rem 1.25rem 3rem; }
}


/* =============================================================================
   WOOCOMMERCE KOSÁR OLDAL (/kosar/)
   ============================================================================= */

/* Astra container feloldása */
body.woocommerce-cart .ast-container,
body.woocommerce-cart #content,
body.woocommerce-cart .site-content {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: visible !important;
}

/* Astra cím elrejtése */
body.woocommerce-cart .entry-header,
body.woocommerce-cart .entry-title,
body.woocommerce-cart .woocommerce-breadcrumb {
    display: none !important;
}

/* Alap lap wrapper */
.tbt-cart-page {
    width: 100%;
    display: block;
    background: #f8fafc;
    min-height: 60vh;
}

/* ── Hero ────────────────────────────────────────────────── */
.tbt-cart-hero {
    background: #0D1F3C;
    padding: 3.5rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
}
.tbt-cart-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14,165,233,.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(14,165,233,.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.tbt-cart-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.tbt-cart-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(14,165,233,.15);
    border: 1px solid rgba(14,165,233,.3);
    border-radius: 4px;
    padding: 5px 14px;
    color: #7dd3fc;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.tbt-cart-hero__title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
    color: #fff !important;
    line-height: 1.15 !important;
    margin: 0 0 .6rem !important;
}
.tbt-cart-hero__desc {
    color: #94a3b8;
    font-family: 'Barlow', sans-serif;
    font-size: .95rem;
    margin: 0;
}

/* ── Wrap ────────────────────────────────────────────────── */
.tbt-cart-wrap {
    max-width: 1380px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

/* ── WooCommerce Cart Blokk alap ─────────────────────────── */

/* alignwide fixálás — ne lógjon ki a containerből */
body.woocommerce-cart .tbt-cart-wrap .wp-block-woocommerce-cart.alignwide,
body.woocommerce-cart .tbt-cart-wrap .wp-block-woocommerce-cart {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    font-family: 'Barlow', sans-serif !important;
}

/* WooCommerce saját sidebar-layout-ja kezeli a 65%/35% oszlopokat */
body.woocommerce-cart .wc-block-components-sidebar-layout {
    margin: 0 !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
}

body.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main {
    padding-right: 2rem !important;
    box-sizing: border-box !important;
}

body.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    width: 35% !important;
    min-width: 320px !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
}

/* ── Bal: termék oszlop (wc-block-cart__main) ────────────── */
body.woocommerce-cart .wc-block-cart__main {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    padding: 0 !important;
}

/* ── Jobb: összesítő oszlop ──────────────────────────────── */
body.woocommerce-cart .wc-block-cart__sidebar {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    padding: 1.5rem !important;
    position: sticky !important;
    top: 90px !important;
}

/* Üres kosár */
body.woocommerce-cart .wc-block-cart__empty-cart__title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.8rem !important;
    color: #0D1F3C !important;
}

/* ── Bal: termékek block (nincs külön kártya szegélye, a __main tartalmazza) */
body.woocommerce-cart .wp-block-woocommerce-cart-items-block {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

/* Termék sorok */
body.woocommerce-cart .wc-block-cart-items,
body.woocommerce-cart table.wc-block-cart-items {
    width: 100% !important;
    border-collapse: collapse !important;
}
body.woocommerce-cart .wc-block-cart-items__header {
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
    padding: .75rem 1.25rem;
}
body.woocommerce-cart .wc-block-cart-items__header span {
    font-family: 'Barlow', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .6px !important;
    color: #64748b !important;
}
body.woocommerce-cart .wc-block-cart-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 1.25rem !important;
}
body.woocommerce-cart .wc-block-cart-item:last-child {
    border-bottom: none;
}

/* Termék kép */
body.woocommerce-cart .wc-block-cart-item__image img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
}

/* Termék név */
body.woocommerce-cart .wc-block-cart-item__product-name,
body.woocommerce-cart .wc-block-cart-item__product-name a {
    font-family: 'Barlow', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #0D1F3C !important;
    text-decoration: none !important;
}
body.woocommerce-cart .wc-block-cart-item__product-name a:hover {
    color: #1B4FA0 !important;
}

/* Termék ár */
body.woocommerce-cart .wc-block-cart-item__total .price,
body.woocommerce-cart .wc-block-cart-item__total ins,
body.woocommerce-cart .wc-block-cart-item .wc-block-components-product-price {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    color: #1B4FA0 !important;
}

/* Mennyiség input */
body.woocommerce-cart .wc-block-components-quantity-selector__input,
body.woocommerce-cart .wc-block-cart-item .quantity input {
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    color: #0D1F3C !important;
    width: 60px !important;
    text-align: center !important;
}

/* Törlés gomb */
body.woocommerce-cart .wc-block-cart-item__remove-link,
body.woocommerce-cart button.wc-block-cart-item__remove-link {
    color: #94a3b8 !important;
    font-size: 12px !important;
}
body.woocommerce-cart .wc-block-cart-item__remove-link:hover {
    color: #dc2626 !important;
}

/* ── Jobb: összesítő ─────────────────────────────────────── */
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block,
body.woocommerce-cart .wc-block-cart__sidebar {
    position: sticky;
    top: 90px;
}

/* Összesítő fejléc */
body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-heading-block .wp-block-heading,
body.woocommerce-cart .wc-block-components-order-summary__title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.3rem !important;
    color: #0D1F3C !important;
    margin: 0 0 1.25rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 2px solid #e2e8f0 !important;
}

/* Összesítő sorok */
body.woocommerce-cart .wc-block-components-totals-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: .6rem 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    color: #475569 !important;
}
body.woocommerce-cart .wc-block-components-totals-item__label {
    font-weight: 500 !important;
}
body.woocommerce-cart .wc-block-components-totals-item__value {
    font-weight: 600 !important;
    color: #0D1F3C !important;
}

/* Végösszeg */
body.woocommerce-cart .wc-block-components-totals-footer-item,
body.woocommerce-cart .wc-block-components-totals-item.is-total {
    border-top: 2px solid #e2e8f0 !important;
    border-bottom: none !important;
    margin-top: .5rem !important;
    padding-top: 1rem !important;
}
body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-weight: 800 !important;
    font-size: 15px !important;
    color: #0D1F3C !important;
}
body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.4rem !important;
    color: #1B4FA0 !important;
}

/* Kupon mező */
body.woocommerce-cart .wc-block-components-totals-coupon__form {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    margin-top: .5rem;
}
body.woocommerce-cart .wc-block-components-totals-coupon .components-text-control__input,
body.woocommerce-cart input#wc-block-components-totals-coupon__input-0 {
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px 0 0 6px !important;
    padding: .65rem .9rem !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
}
body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-button {
    background: #1B4FA0 !important;
    border-radius: 0 6px 6px 0 !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    border: none !important;
}

/* Pénztár gomb */
body.woocommerce-cart .wc-block-cart__submit-button,
body.woocommerce-cart .wc-block-components-checkout-place-order-button,
body.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block a,
body.woocommerce-cart .wc-block-cart__submit .wc-block-components-button {
    display: block !important;
    width: 100% !important;
    background: #1B4FA0 !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: .9rem 2rem !important;
    border-radius: 8px !important;
    border: none !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background .2s !important;
    margin-top: 1.25rem !important;
}
body.woocommerce-cart .wc-block-cart__submit-button:hover,
body.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block a:hover,
body.woocommerce-cart .wc-block-cart__submit .wc-block-components-button:hover {
    background: #0D1F3C !important;
}

/* Szállítási kalkulátor */
body.woocommerce-cart .wc-block-components-shipping-rates-control {
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
}

/* Vásárlás folytatása link */
body.woocommerce-cart .wc-block-cart__empty-cart__ a,
body.woocommerce-cart .wc-block-cart .return-to-shop a,
body.woocommerce-cart .wc-block-cart a.wc-block-cart__submit-container {
    color: #1B4FA0 !important;
}

/* ── Reszponzív ──────────────────────────────────────────── */
@media (max-width: 768px) {
    body.woocommerce-cart .wp-block-woocommerce-filled-cart-block {
        grid-template-columns: 1fr !important;
    }
    body.woocommerce-cart .wp-block-woocommerce-cart-totals-block {
        position: static;
    }
    .tbt-cart-wrap { padding: 2rem 1.25rem 3rem; }
    .tbt-cart-hero { padding: 2.5rem 1.25rem 2rem; }
}

/* =============================================================================
   PÉNZTÁR OLDAL (WooCommerce Checkout Block)
   ============================================================================= */

/* Astra container felülírás */
body.woocommerce-checkout .ast-container,
body.woocommerce-checkout #content,
body.woocommerce-checkout .site-content {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
}

/* ── Oldal wrapper ───────────────────────────────────────── */
.tbt-checkout-page {
    width: 100%;
    display: block;
    background: #f8fafc;
    min-height: 60vh;
}

/* ── Hero ───────────────────────────────────────────────── */
.tbt-checkout-hero {
    background: #0D1F3C;
    padding: 3.5rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
}
.tbt-checkout-hero__grid {
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: linear-gradient(#0ea5e9 1px, transparent 1px),
                      linear-gradient(90deg, #0ea5e9 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.tbt-checkout-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.tbt-checkout-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(14,165,233,.15);
    border: 1px solid rgba(14,165,233,.3);
    border-radius: 4px;
    padding: 5px 12px;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #7dd3fc;
    margin-bottom: 1.25rem;
}
.tbt-checkout-hero__title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: 2.8rem !important;
    line-height: 1.05 !important;
    color: #fff !important;
    margin: 0 0 1rem !important;
    letter-spacing: -.5px !important;
}
.tbt-checkout-hero__desc {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-family: 'Barlow', sans-serif;
}

/* ── Wrap ────────────────────────────────────────────────── */
.tbt-checkout-wrap {
    max-width: 1380px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

/* alignwide negatív margin javítás */
body.woocommerce-checkout .tbt-checkout-wrap .wp-block-woocommerce-checkout.alignwide,
body.woocommerce-checkout .tbt-checkout-wrap .wp-block-woocommerce-checkout {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    font-family: 'Barlow', sans-serif !important;
}

/* ── Layout: sidebar-layout ──────────────────────────────── */
body.woocommerce-checkout .wc-block-components-sidebar-layout {
    margin: 0 !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
}

/* WooCommerce saját 65%/35% arányát meghagyjuk, csak az oszlopok padding-ját igazítjuk */
body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
    padding-right: 2rem !important;
    box-sizing: border-box !important;
}
body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    width: 35% !important;
    min-width: 320px !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
}

/* ── Bal: form oszlop (kártya a belső checkout-fields blokkra) ── */
body.woocommerce-checkout .wc-block-checkout__main {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    padding: 2rem !important;
    overflow: visible !important;
}

/* ── Jobb: összefoglaló oszlop ───────────────────────────── */
body.woocommerce-checkout .wc-block-checkout__sidebar {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    padding: 1.5rem !important;
    position: sticky !important;
    top: 90px !important;
}

/* ── Form szekciók fejlécei ──────────────────────────────── */
body.woocommerce-checkout .wc-block-components-checkout-step__title,
body.woocommerce-checkout .wp-block-heading {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    color: #0D1F3C !important;
    letter-spacing: .2px !important;
}

/* ── Szövegmezők ─────────────────────────────────────────── */
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-select-input select,
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout select {
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    color: #0D1F3C !important;
    background: #fff !important;
    padding: 10px 14px !important;
    transition: border-color .2s !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout input[type="text"]:focus,
body.woocommerce-checkout input[type="email"]:focus,
body.woocommerce-checkout input[type="tel"]:focus {
    border-color: #1B4FA0 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(27,79,160,.1) !important;
}

/* ── Checkbox / rádiógomb ────────────────────────────────── */
body.woocommerce-checkout .wc-block-components-checkbox input[type="checkbox"]:checked,
body.woocommerce-checkout .wc-block-components-radio-control__input:checked {
    background-color: #1B4FA0 !important;
    border-color: #1B4FA0 !important;
}

/* ── Rendelés összefoglaló (jobb oszlop) ─────────────────── */
body.woocommerce-checkout .wc-block-components-order-summary__title,
body.woocommerce-checkout .wc-block-checkout__sidebar .wp-block-heading {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.2rem !important;
    color: #0D1F3C !important;
    margin: 0 0 1.25rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 2px solid #e2e8f0 !important;
}

/* Összesítő sorok */
body.woocommerce-checkout .wc-block-components-totals-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: .65rem 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
}
body.woocommerce-checkout .wc-block-components-totals-item__label {
    color: #64748b !important;
}
body.woocommerce-checkout .wc-block-components-totals-item__value {
    font-weight: 600 !important;
    color: #0D1F3C !important;
}
body.woocommerce-checkout .wc-block-components-totals-footer-item,
body.woocommerce-checkout .wc-block-components-totals-item.is-total {
    border-top: 2px solid #e2e8f0 !important;
    border-bottom: none !important;
    padding-top: 1rem !important;
    margin-top: .5rem !important;
}
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: #0D1F3C !important;
}
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.3rem !important;
    color: #1B4FA0 !important;
}

/* ── Megrendelés gomb ────────────────────────────────────── */
body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
body.woocommerce-checkout button.wc-block-components-checkout-place-order-button {
    background: #0D1F3C !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: .3px !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: background .2s, transform .1s !important;
    margin-top: 1.25rem !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
    background: #1B4FA0 !important;
    transform: translateY(-1px) !important;
}

/* ── Szállítási opciók ───────────────────────────────────── */
body.woocommerce-checkout .wc-block-checkout__shipping-method-option--selected {
    border-color: #1B4FA0 !important;
    background: rgba(27,79,160,.05) !important;
}

/* ── Fizetési módok ──────────────────────────────────────── */
body.woocommerce-checkout .wc-block-components-radio-control-accordion-option--checked {
    border-color: #1B4FA0 !important;
}

/* ── Reszponzív ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .tbt-checkout-wrap { padding: 2rem 1.25rem 3rem; }
    .tbt-checkout-hero { padding: 2.5rem 1.25rem 2rem; }
    body.woocommerce-checkout .wc-block-checkout__main,
    body.woocommerce-checkout .wc-block-components-main {
        padding: 1.25rem !important;
    }
}

/* =============================================================================
   ELÁLLÁS / WITHDRAWAL OLDAL
   ============================================================================= */

/* Astra override */
.page-id-192 .ast-container,
.page-id-193 .ast-container,
.page-id-192 #content,
.page-id-193 #content,
.page-id-192 .site-content,
.page-id-193 .site-content {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
}

.tbt-legal-page {
    width: 100%;
    display: block;
    background: #f8fafc;
    min-height: 60vh;
}

/* ── Hero ────────────────────────────────────────────────── */
.tbt-legal-hero {
    background: #0D1F3C;
    padding: 3.5rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
}
.tbt-legal-hero__grid {
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: linear-gradient(#0ea5e9 1px, transparent 1px),
                      linear-gradient(90deg, #0ea5e9 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.tbt-legal-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.tbt-legal-hero__tag {
    display: inline-flex;
    align-items: center;
    background: rgba(14,165,233,.15);
    border: 1px solid rgba(14,165,233,.3);
    border-radius: 4px;
    padding: 5px 12px;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #7dd3fc;
    margin-bottom: 1.25rem;
}
.tbt-legal-hero__title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: 2.8rem !important;
    line-height: 1.05 !important;
    color: #fff !important;
    margin: 0 0 1rem !important;
    letter-spacing: -.5px !important;
}
.tbt-legal-hero__desc {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-family: 'Barlow', sans-serif;
}

/* ── Wrap ────────────────────────────────────────────────── */
.tbt-legal-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

/* ── Form card wrapper ───────────────────────────────────── */
.tbt-legal-wrap .wrm-wrap {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 100%;
    box-shadow: 0 2px 16px rgba(13,31,60,.06);
}

/* ── Értesítések ─────────────────────────────────────────── */
.wrm-notice--success {
    background: #f0fdf4 !important;
    border-left: 4px solid #16a34a !important;
    border-radius: 8px !important;
    color: #166534 !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
}
.wrm-notice--error {
    background: #fef2f2 !important;
    border-left: 4px solid #dc2626 !important;
    border-radius: 8px !important;
    color: #991b1b !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
}

/* ── Form mezők ──────────────────────────────────────────── */
.wrm-form__label {
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #374151 !important;
    margin-bottom: 6px !important;
    letter-spacing: .2px !important;
    text-transform: uppercase !important;
}
.wrm-form__required {
    color: #1B4FA0 !important;
}
.wrm-form__input,
.wrm-form__textarea {
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    color: #0D1F3C !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 11px 14px !important;
    background: #fff !important;
    transition: border-color .2s, box-shadow .2s !important;
}
.wrm-form__input:focus,
.wrm-form__textarea:focus {
    border-color: #1B4FA0 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(27,79,160,.1) !important;
}
.wrm-form__input[readonly] {
    background: #f8fafc !important;
    color: #64748b !important;
    border-color: #e2e8f0 !important;
}
.wrm-form__hint {
    font-family: 'Barlow', sans-serif !important;
    font-size: 12px !important;
    color: #64748b !important;
    margin-top: 5px !important;
}

/* File input */
.wrm-form__file {
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    color: #374151 !important;
    border: 1px dashed #cbd5e1 !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: #f8fafc !important;
    cursor: pointer !important;
}

/* Checkbox */
.wrm-form__checkbox-label {
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    color: #374151 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    cursor: pointer !important;
    line-height: 1.5 !important;
}
.wrm-form__checkbox-label a {
    color: #1B4FA0 !important;
    text-decoration: underline !important;
}
.wrm-form__checkbox-label input[type="checkbox"] {
    margin-top: 2px !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    accent-color: #1B4FA0 !important;
}

/* ── Beküldés gomb ───────────────────────────────────────── */
.wrm-form__submit {
    background: #0D1F3C !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 32px !important;
    cursor: pointer !important;
    transition: background .2s, transform .1s !important;
    letter-spacing: .3px !important;
}
.wrm-form__submit:hover {
    background: #1B4FA0 !important;
    transform: translateY(-1px) !important;
}
.wrm-form__required-note {
    font-family: 'Barlow', sans-serif !important;
    font-size: 12px !important;
    color: #94a3b8 !important;
    margin-top: 8px !important;
}

/* ── Reszponzív ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .tbt-legal-wrap { padding: 2rem 1.25rem 3rem; }
    .tbt-legal-hero { padding: 2.5rem 1.25rem 2rem; }
    .tbt-legal-wrap .wrm-wrap { padding: 1.5rem; }
    .tbt-legal-hero__title { font-size: 2rem !important; }
}

/* =============================================================================
   18. FEJLEC - BEJELENTKEZES/REGISZTRACIO IKON
   ============================================================================= */
.tbt-account-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--2bt-border);
    color: var(--2bt-brand);
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.tbt-account-icon-link:hover {
    background: var(--2bt-bg-sec);
    border-color: var(--2bt-brand);
}

/* Kosár / Ajánlatkérés ikon darabszám-jelző */
.tbt-icon-with-badge {
    position: relative;
}
.tbt-icon-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--2bt-cyan);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

/* Fejléc – ikonok + Ajánlatkérés gomb csoportja felül ragadt, mert a
   csoport flex-konténere nem toltotta ki/kozepitette a widgeteket
   fuggolegesen. Kozepre igazitjuk oket a sorban (HU es EN fejlecen is,
   mivel az ".elementor-location-header" osztaly mindket nyelven azonos). */
.elementor-location-header .e-con.e-child {
    align-items: center !important;
}

/* Mobil nézetben az ikon+Ajánlatkérés-gomb csoport konténere csak
   ~77px szélesre méreteződött, ezért a 4 elem (kívánságlista/kosár
   ikon, fiók ikon, Ajánlatkérés gomb) egymás alá, 1 oszlopba
   torlódott, és a teljes fejléc ~206px magas lett. Engedjük, hogy
   2 elem kerüljön egy sorba, így a fejléc kompaktabb és a gombok
   jobban elférnek.
   FONTOS: a HU (post 85) és EN (post 86) fejléc külön-külön épített
   Elementor tartalom, ezért eltérő elementor-element ID-kkel – mindkét
   ID-készletet fel kell sorolni, hogy a javítás mindkét nyelven
   érvényesüljön. HU: an0dq3g/hu7kxan/v8lybo1/9mzcp2f,
   EN: u7kxan0/1er4hu7/fs5iv8l/t6jw9mz. */
@media (max-width: 768px) {
    /* Kevesebb padding/gap a fejléc 3 oszlopa (logó / hamburger / ikonok)
       között, hogy mindegyiknek jusson elég hely és senki ne torzuljon. */
    .elementor-location-header .elementor-element-an0dq3g,
    .elementor-location-header .elementor-element-u7kxan0 {
        padding-left: 16px !important;
        padding-right: 16px !important;
        gap: 10px !important;
    }
    /* Logó: fix minimális szélesség, hogy a "2B" ikon soha ne torzuljon
       (korábban a szűk konténer miatt a 40x40px-es ikon 28px szélesre
       nyomódott össze, ovális/torz megjelenést okozva). */
    .elementor-location-header .elementor-element-hu7kxan,
    .elementor-location-header .elementor-element-1er4hu7 {
        min-width: 120px !important;
        width: auto !important;
    }
    /* Ikonok + Ajánlatkérés gomb csoportja: max 2 elem soronként,
       így a fejléc kompakt marad az eredeti ~206px helyett. */
    .elementor-location-header .elementor-element-9mzcp2f,
    .elementor-location-header .elementor-element-t6jw9mz {
        width: auto !important;
        max-width: 170px !important;
        min-width: 84px !important;
        flex-grow: 0 !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-content: center !important;
        align-items: center !important;
        column-gap: 8px !important;
        row-gap: 8px !important;
        height: auto !important;
    }
    .elementor-location-header .elementor-element-9mzcp2f .elementor-button.elementor-size-sm,
    .elementor-location-header .elementor-element-t6jw9mz .elementor-button.elementor-size-sm {
        padding: 6px 14px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
    }
}

/* =============================================================================
   19. REGISZTRACIOS FIGYELMEZTETES
   ============================================================================= */
.tbt-reg-notice {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    padding: 10px 14px;
    border-radius: var(--2bt-radius-sm);
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

/* =============================================================================
   20. "SIMA" OLDALAK (KOSAR / PENZTAR / FIOKOM / AJANLATKERES / stb.)
       - ALAPERTELMEZETT FEHER HATTER + KOZEPRE IGAZITOTT KONTENER
   ============================================================================= */
/* A ".tbt-plain-page" osztalyt a functions.php adja hozza automatikusan
   minden nem-Elementorral epitett oldalhoz (lasd "15b" szekcio) - igy ez
   a szabaly minden JOVOBENI hasonlo oldalra is ervenyes lesz, nem csak a
   jelenleg mar felsorolt oldal-ID-kra. */
body.tbt-plain-page #page,
body.tbt-plain-page .site {
    background: #fff !important;
}
body.tbt-plain-page .ast-woocommerce-container,
body.tbt-plain-page #content,
body.tbt-plain-page .ast-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    background: #fff !important;
}

/* =============================================================================
   29. FOOLDAL "SZAKMAI BLOG" SZEKCIO - KEP ARANY JAVITASA
   ============================================================================= */
/* A fooldali hirek-widget (Elementor "Posts" widget, id: 6d09d20, HU es EN
   fejlecen is azonos ID-val) kepei tul "szeles" (0.66 magassag/szelesseg
   arannyal) vagtak korul, ezert a kepek "szethuzottnak" tuntek. Az
   Elementor sajat "Image Ratio" beallitasa makacsul nem frissult
   (belso gyorsitotar), ezert kozvetlen CSS-felulirassal allitjuk
   magasabbra (0.85) az aranyt - igy a kepek arnyaltabban, kevesbe
   "panorama-szeruen" vannak levagva. */
.elementor-element-6d09d20 .elementor-posts-container .elementor-post__thumbnail {
    padding-bottom: calc( 0.85 * 100% ) !important;
}

/* Maga a hircsempe (<article class="elementor-post">) is tul szeles volt
   (a racs-oszlop teljes szelesseget kitoltotte), emiatt a kep meg a
   levagasi arany javitasa utan is "szethuzottnak" tunt. Korlatozzuk a
   csempe sajat szelesseget, es kozepre igazitjuk a racs-oszlopon belul. */
.elementor-element-6d09d20 .elementor-posts-container .elementor-post {
    max-width: 280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
