:root {
  --asz-blue: #0072CE;
  --asz-blue-dark: #004C8C;
  --asz-gold: #C8A45D;
  --asz-text: #222222;
  --asz-muted: #5f6772;
  --asz-bg: #ffffff;
  --asz-soft: #f5f6f8;
  --asz-dark: #1e1e1e;
  --asz-radius: 18px;
  --asz-shadow: 0 18px 55px rgba(18, 32, 54, 0.10);
}

.asz-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.asz-section {
  padding: 76px 0;
  color: var(--asz-text);
}

.asz-hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.50), rgba(0,0,0,.08)),
    linear-gradient(135deg, #1e1e1e 0%, #38485a 55%, #f5f6f8 100%);
  background-position: center;
  background-size: cover;
  color: #fff;
  position: relative;
}

.asz-hero__inner {
  width: 100%;
}

.asz-hero__content {
  max-width: 680px;
}

.asz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--asz-gold);
}

.asz-eyebrow--blue {
  color: var(--asz-blue);
}

.asz-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: #fff;
  font-weight: 750;
}

.asz-hero__subtitle {
  margin: 22px 0 0;
  max-width: 620px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255,255,255,.94);
}

.asz-hero__note {
  margin: 18px 0 30px;
  color: rgba(255,255,255,.82);
  font-weight: 600;
}

.asz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--asz-blue);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(0,114,206,.28);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.asz-button:hover {
  background: var(--asz-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0,76,140,.32);
}

.asz-button--light {
  background: #fff;
  color: var(--asz-dark) !important;
  box-shadow: none;
}

.asz-button--light:hover {
  background: var(--asz-soft);
  color: var(--asz-dark) !important;
}

.asz-grid {
  display: grid;
  gap: 24px;
}

.asz-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.asz-card {
  background: #fff;
  border: 1px solid rgba(16, 31, 46, .08);
  border-radius: var(--asz-radius);
  padding: 28px;
  box-shadow: 0 12px 32px rgba(18, 32, 54, .055);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.asz-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--asz-shadow);
  border-color: rgba(0,114,206,.22);
}

.asz-benefits {
  background: var(--asz-bg);
  margin-top: -58px;
  position: relative;
  z-index: 4;
  padding-top: 0;
}

.asz-benefit-card {
  min-height: 240px;
}

.asz-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--asz-blue);
  background: rgba(0,114,206,.08);
  border-radius: 16px;
  margin-bottom: 20px;
}

.asz-icon svg {
  width: 34px;
  height: 34px;
}

.asz-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--asz-text);
}

.asz-card p {
  margin: 0;
  color: var(--asz-muted);
  line-height: 1.62;
}

.asz-categories {
  background: var(--asz-soft);
}

.asz-section-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.asz-section-head--left {
  margin-left: 0;
  text-align: left;
}

.asz-section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  color: var(--asz-text);
}

.asz-section-head p {
  margin: 16px 0 0;
  color: var(--asz-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.asz-category-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.asz-category-card--featured {
  border-color: rgba(200,164,93,.46);
  box-shadow: 0 18px 50px rgba(200,164,93,.14);
}

.asz-category-card__tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(200,164,93,.16);
  color: #7a5a18;
  font-size: .78rem;
  font-weight: 700;
}

.asz-text-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--asz-blue) !important;
  text-decoration: none !important;
  font-weight: 750;
}

.asz-process {
  background: #fff;
}

.asz-process__list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.asz-process__item {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: var(--asz-radius);
  background: var(--asz-soft);
}

.asz-process__item > span {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--asz-blue);
  color: #fff;
  font-weight: 800;
}

.asz-process__item h3 {
  margin: 0 0 8px;
  font-size: 1.13rem;
}

.asz-process__item p {
  margin: 0;
  color: var(--asz-muted);
  line-height: 1.62;
}

.asz-showroom {
  background: var(--asz-dark);
  color: #fff;
}

.asz-showroom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.asz-showroom h2 {
  margin: 0;
  max-width: 720px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}

.asz-showroom p {
  margin: 16px 0 0;
  max-width: 720px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .asz-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .asz-hero {
    min-height: 620px;
  }
}

@media (max-width: 767px) {
  .asz-container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .asz-section {
    padding: 56px 0;
  }
  .asz-hero {
    min-height: 640px;
    text-align: center;
    background-position: center;
  }
  .asz-hero__content {
    margin: 0 auto;
  }
  .asz-hero__note {
    font-size: .95rem;
  }
  .asz-benefits {
    margin-top: 0;
    padding-top: 56px;
  }
  .asz-grid--4,
  .asz-process__list {
    grid-template-columns: 1fr;
  }
  .asz-card {
    padding: 24px;
  }
  .asz-showroom__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Futó hírsáv / aktuális hír */
.asz-newsbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 31, 46, .08);
  color: var(--asz-text);
}

.asz-newsbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.asz-newsbar__label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(200,164,93,.18);
  color: #73520f;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.asz-newsbar__track {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.asz-newsbar__content {
  display: inline-flex;
  gap: 48px;
  min-width: max-content;
  animation: asz-newsbar-scroll 26s linear infinite;
  font-size: .98rem;
  color: var(--asz-muted);
}

.asz-newsbar:hover .asz-newsbar__content {
  animation-play-state: paused;
}

.asz-newsbar__link {
  flex: 0 0 auto;
  color: var(--asz-blue) !important;
  text-decoration: none !important;
  font-weight: 800;
  font-size: .92rem;
}

.asz-newsbar__link:hover {
  color: var(--asz-blue-dark) !important;
}

@keyframes asz-newsbar-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .asz-newsbar__content {
    animation: none;
  }
}

@media (max-width: 767px) {
  .asz-newsbar__inner {
    padding: 10px 18px;
    gap: 10px;
  }
  .asz-newsbar__label {
    display: none;
  }
  .asz-newsbar__link {
    font-size: .86rem;
  }
}


/* v0.3: főoldal WordPress oldalkeretének finomítása */
body.home .entry-header,
body.home .entry-hero,
body.home .entry-hero-container,
body.home .page-title {
  display: none !important;
}

body.home .site-content,
body.home .content-area,
body.home .site-main,
body.home main,
body.home article,
body.home .entry-content,
body.home .page-content {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

body.home .entry-content > * {
  max-width: none !important;
}

/* v0.3: hírsáv statikus, egysoros prémium megjelenítés */
.asz-newsbar {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(16, 31, 46, 0.12) !important;
}

.asz-newsbar__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  gap: 18px !important;
  min-height: 44px !important;
  padding-top: 9px !important;
  padding-bottom: 9px !important;
}

.asz-newsbar__track {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.asz-newsbar__content {
  display: block !important;
  animation: none !important;
  transform: none !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  color: #222222 !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}

.asz-newsbar__content span {
  display: none !important;
}

.asz-newsbar__content span:first-child {
  display: inline !important;
}

.asz-newsbar__label {
  flex: 0 0 auto !important;
  background: #f3ead8 !important;
  color: #7a5516 !important;
  font-weight: 800 !important;
}

.asz-newsbar__link {
  flex: 0 0 auto !important;
  color: #0072CE !important;
  font-weight: 800 !important;
}

/* v0.4: adminból feltölthető képek megjelenítése */
.asz-category-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: -10px -10px 20px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--asz-soft);
}

.asz-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

.asz-category-card:hover .asz-category-card__image img {
  transform: scale(1.035);
}

.asz-showroom__content {
  max-width: 680px;
}

.asz-showroom__content .asz-button {
  margin-top: 28px;
}

.asz-showroom__image {
  flex: 0 0 360px;
  max-width: 360px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.asz-showroom__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .asz-showroom__image {
    flex-basis: auto;
    max-width: 100%;
    width: 100%;
  }
  .asz-showroom__image img {
    height: 220px;
  }
}

/* v0.5: hero váltakozó képek / lassú prémium átúszás */
.asz-hero {
  overflow: hidden;
}

.asz-hero--has-image {
  background: linear-gradient(135deg, #1e1e1e 0%, #38485a 55%, #f5f6f8 100%);
}

.asz-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.asz-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
}

.asz-hero--slides-1 .asz-hero__slide {
  opacity: 1;
  transform: none;
}

.asz-hero--slides-2 .asz-hero__slide {
  animation: asz-hero-fade-2 12s ease-in-out infinite;
}

.asz-hero--slides-2 .asz-hero__slide:nth-child(2) {
  animation-delay: 6s;
}

.asz-hero--slides-3 .asz-hero__slide {
  animation: asz-hero-fade-3 18s ease-in-out infinite;
}

.asz-hero--slides-3 .asz-hero__slide:nth-child(2) {
  animation-delay: 6s;
}

.asz-hero--slides-3 .asz-hero__slide:nth-child(3) {
  animation-delay: 12s;
}

.asz-hero__inner {
  position: relative;
  z-index: 2;
}

@keyframes asz-hero-fade-2 {
  0%, 45%, 100% { opacity: 1; }
  50%, 95% { opacity: 0; }
}

@keyframes asz-hero-fade-3 {
  0%, 30%, 100% { opacity: 1; }
  34%, 96% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .asz-hero__slide {
    animation: none !important;
  }
  .asz-hero__slide:first-child {
    opacity: 1 !important;
  }
}

/* v0.5: előnykártyák középre rendezése */
.asz-benefit-card {
  text-align: center;
}

.asz-benefit-card .asz-icon {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.asz-benefit-card h3,
.asz-benefit-card p {
  text-align: center;
}

/* v0.7: kategóriacímkék eltávolítva, szövegek közelebb a képekhez */
.asz-category-card__tag {
  display: none !important;
}

.asz-category-card__image {
  margin-bottom: 16px !important;
}

.asz-category-card h3 {
  margin-top: 0 !important;
}


/* v0.9: Inspirációk / referenciák blokk a bemutatóterem után */
.asz-inspirations {
  background: #ffffff;
}

.asz-inspirations__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 220px 220px;
  gap: 22px;
  margin-top: 36px;
}

.asz-inspirations__item {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--asz-soft);
  box-shadow: 0 18px 50px rgba(18, 32, 54, .08);
}

.asz-inspirations__item--1 {
  grid-row: 1 / span 2;
}

.asz-inspirations__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .28s ease;
}

.asz-inspirations__item:hover img {
  transform: scale(1.035);
}

.asz-inspirations__empty {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.asz-inspirations__empty span {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #f5f6f8, #ffffff);
  border: 1px solid rgba(16, 31, 46, .08);
  color: var(--asz-muted);
  font-weight: 800;
}

.asz-inspirations__cta {
  margin-top: 34px;
  text-align: center;
}

@media (max-width: 767px) {
  .asz-inspirations__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .asz-inspirations__item,
  .asz-inspirations__item--1 {
    grid-row: auto;
    min-height: 220px;
  }
  .asz-inspirations__empty {
    grid-template-columns: 1fr;
  }
}

/* v1.0: Referenciák oldal galériás verzió */
.asz-reference-page {
  background: #f5f6f8;
  color: var(--asz-text);
}

.asz-reference-hero {
  padding: 86px 0 42px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
  text-align: center;
}

.asz-reference-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -.045em;
  color: #08083c;
}

.asz-reference-hero__intro {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--asz-muted);
}

.asz-reference-hero__text {
  max-width: 820px;
  margin: 12px auto 0;
  line-height: 1.7;
  color: var(--asz-muted);
}

.asz-reference-gallery {
  padding: 34px 0 84px;
}

.asz-reference-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 22px;
}

.asz-reference-gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(18, 32, 54, .10);
  min-height: 210px;
}

.asz-reference-gallery__item--1,
.asz-reference-gallery__item--4 {
  grid-column: span 7;
  grid-row: span 2;
}

.asz-reference-gallery__item--2,
.asz-reference-gallery__item--3,
.asz-reference-gallery__item--5,
.asz-reference-gallery__item--6 {
  grid-column: span 5;
}

.asz-reference-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .32s ease;
}

.asz-reference-gallery__item:hover img {
  transform: scale(1.04);
}

.asz-reference-gallery__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.62));
  pointer-events: none;
}

.asz-reference-gallery__item figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
}

.asz-reference-gallery__item figcaption span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #7c5f25;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.asz-reference-gallery__item figcaption strong {
  display: block;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.22;
}

.asz-reference-gallery__placeholder {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #fff;
  color: var(--asz-muted);
  box-shadow: 0 12px 32px rgba(18, 32, 54, .055);
}

.asz-reference-cta {
  padding: 0 0 88px;
}

.asz-reference-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  border-radius: 28px;
  background: #1e1e1e;
  color: #fff;
}

.asz-reference-cta__inner h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1.1;
  color: #fff;
}

.asz-reference-cta__inner p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .asz-reference-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }
  .asz-reference-gallery__item,
  .asz-reference-gallery__item--1,
  .asz-reference-gallery__item--2,
  .asz-reference-gallery__item--3,
  .asz-reference-gallery__item--4,
  .asz-reference-gallery__item--5,
  .asz-reference-gallery__item--6 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .asz-reference-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .asz-reference-hero {
    padding: 58px 0 28px;
  }
  .asz-reference-gallery {
    padding-bottom: 58px;
  }
  .asz-reference-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
    gap: 18px;
  }
  .asz-reference-cta__inner {
    padding: 32px 24px;
    border-radius: 22px;
  }
}


/* v1.1 – Referenciák oldal alsó CTA gomb javítása */
.asz-reference-cta__inner .asz-button {
  flex: 0 0 auto;
  min-width: max-content;
  padding-left: 34px;
  padding-right: 34px;
  white-space: nowrap;
}

.asz-reference-cta__inner {
  overflow: hidden;
}

@media (max-width: 900px) {
  .asz-reference-cta__inner .asz-button {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .asz-reference-cta__inner .asz-button {
    width: 100%;
    min-width: 0;
  }
}

/* v1.2: Hírsáv Részletek - jobbról beúszó panel */
.asz-newsbar__details-trigger {
  border: 0 !important;
  background: transparent !important;
  cursor: pointer !important;
  font-family: inherit !important;
  padding: 0 !important;
}

.asz-news-drawer {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  visibility: hidden;
}

.asz-news-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.asz-news-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 24, 0.42);
  opacity: 0;
  transition: opacity .24s ease;
}

.asz-news-drawer.is-open .asz-news-drawer__backdrop {
  opacity: 1;
}

.asz-news-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, calc(100vw - 28px));
  height: 100%;
  overflow-y: auto;
  background: #ffffff;
  color: var(--asz-text);
  box-shadow: -24px 0 70px rgba(18, 32, 54, .22);
  transform: translateX(104%);
  transition: transform .28s ease;
  padding: 52px 46px;
  outline: none;
}

.asz-news-drawer.is-open .asz-news-drawer__panel {
  transform: translateX(0);
}

.asz-news-drawer__close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(16,31,46,.10);
  background: var(--asz-soft);
  color: var(--asz-text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}

.asz-news-drawer__close:hover {
  background: #ffffff;
  transform: rotate(90deg);
}

.asz-news-drawer__eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--asz-gold);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.asz-news-drawer h2 {
  margin: 0 0 22px;
  color: var(--asz-text);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.asz-news-drawer__body {
  margin-bottom: 30px;
  color: var(--asz-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.asz-news-drawer__body p {
  margin: 0 0 16px;
}

body.asz-news-drawer-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .asz-news-drawer__panel {
    width: min(92vw, 420px);
    padding: 48px 26px 34px;
  }

  .asz-news-drawer h2 {
    font-size: 2rem;
  }
}

/* Felület- és színminták */
.asz-swatch-section {
  padding: 22px 0;
}
.asz-swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.asz-swatch-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.11);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.asz-swatch-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 114, 206, 0.22);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.10);
}
.asz-swatch-thumb {
  height: 142px;
  padding: 14px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: #f3f5f8;
  background-image:
    linear-gradient(45deg, rgba(15, 23, 42, .035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(15, 23, 42, .035) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(15, 23, 42, .035) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(15, 23, 42, .035) 75%);
  background-size: 18px 18px;
  background-position: 0 0, 0 9px, 9px -9px, -9px 0;
}
.asz-swatch-sample {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 96px;
  border-radius: 12px;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(15, 23, 42, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.65),
    0 8px 18px rgba(15, 23, 42, 0.08);
}
.asz-swatch-meta {
  padding: 12px 14px 14px;
}
.asz-swatch-meta strong {
  display: block;
  color: #071044;
  font-size: 15px;
  line-height: 1.3;
}
.asz-swatch-meta span {
  display: block;
  margin-top: 4px;
  color: #7b8496;
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .asz-swatch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .asz-swatch-grid {
    grid-template-columns: 1fr;
  }
  .asz-swatch-thumb {
    height: 132px;
  }
}


/* WooCommerce kategóriaoldali színminta blokk */
.asz-cat-swatches {
  max-width: 1120px;
  margin: 0 auto 34px;
  padding: 34px 28px 38px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
}
.asz-cat-swatches .asz-kicker {
  margin: 0 0 10px;
  color: #0072ce;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.asz-cat-swatches h2 {
  margin: 0;
  color: #071044;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
}
.asz-cat-swatches__lead {
  max-width: 760px;
  margin: 14px 0 4px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
}
.asz-cat-swatches .asz-swatch-section {
  padding: 24px 0 0;
}
@media (max-width: 768px) {
  .asz-cat-swatches {
    margin: 0 16px 28px;
    padding: 26px 18px 30px;
    border-radius: 18px;
  }
}

/* v1.8: Kompakt felület- és színminta kártyák + nagyító nézet */
.asz-swatch-grid {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)) !important;
  gap: 14px !important;
}

.asz-swatch-card {
  border-radius: 14px !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055) !important;
}

.asz-swatch-open {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  color: inherit;
}

.asz-swatch-open:focus-visible {
  outline: 3px solid rgba(0, 114, 206, 0.32);
  outline-offset: 4px;
  border-radius: 14px;
}

.asz-swatch-thumb {
  height: 104px !important;
  padding: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.asz-swatch-thumb img,
.asz-swatch-sample {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  border: 1px solid rgba(15, 23, 42, 0.18) !important;
  background: #fff !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6), 0 6px 14px rgba(15, 23, 42, .07) !important;
}

.asz-swatch-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px dashed rgba(15, 23, 42, 0.24);
  color: #9aa3b2;
  font-size: 12px;
}

.asz-swatch-meta {
  padding: 10px 12px 12px !important;
}

.asz-swatch-meta strong {
  font-size: 14px !important;
}

.asz-swatch-meta span {
  font-size: 12px !important;
}

.asz-swatch-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}

.asz-swatch-lightbox.is-open {
  display: block;
}

.asz-swatch-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 14, 24, 0.58);
}

.asz-swatch-lightbox__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(620px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0,0,0,.32);
  overflow: hidden;
}

.asz-swatch-lightbox__close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #071044;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .14);
}

.asz-swatch-lightbox__image-wrap {
  min-height: 320px;
  padding: 28px;
  background-color: #f3f5f8;
  background-image:
    linear-gradient(45deg, rgba(15, 23, 42, .045) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(15, 23, 42, .045) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(15, 23, 42, .045) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(15, 23, 42, .045) 75%);
  background-size: 22px 22px;
  background-position: 0 0, 0 11px, 11px -11px, -11px 0;
}

.asz-swatch-lightbox__image-wrap img {
  width: 100%;
  max-height: 460px;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, .18);
  background: #fff;
}

.asz-swatch-lightbox__meta {
  padding: 20px 28px 26px;
}

.asz-swatch-lightbox__meta h3 {
  margin: 0;
  color: #071044;
  font-size: 24px;
  line-height: 1.2;
}

.asz-swatch-lightbox__meta p {
  margin: 8px 0 0;
  color: #7b8496;
  font-size: 14px;
}

body.asz-swatch-lightbox-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .asz-swatch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .asz-swatch-thumb {
    height: 92px !important;
  }
  .asz-swatch-lightbox__image-wrap {
    min-height: 240px;
    padding: 22px;
  }
}


/* v1.9: Színminta nagyító prémium finomítás – nagy kép megtartva */
.asz-swatch-lightbox__panel {
  width: min(820px, calc(100vw - 36px)) !important;
  max-height: calc(100vh - 36px) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
}

.asz-swatch-lightbox__close {
  right: 16px !important;
  top: 16px !important;
  width: 32px !important;
  height: 32px !important;
  font-size: 18px !important;
  line-height: 32px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16) !important;
}

.asz-swatch-lightbox__image-wrap {
  min-height: 420px !important;
  padding: 26px !important;
  background-color: #f7f8fb !important;
  background-image: linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%) !important;
  background-size: auto !important;
  background-position: center !important;
}

.asz-swatch-lightbox__image-wrap img {
  max-height: min(68vh, 640px) !important;
  width: 100% !important;
  object-fit: contain !important;
  border-radius: 14px !important;
  border: 1px solid rgba(15, 23, 42, 0.16) !important;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.10) !important;
}

.asz-swatch-lightbox__meta {
  padding: 18px 26px 24px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.06) !important;
}

@media (max-width: 520px) {
  .asz-swatch-lightbox__panel {
    width: calc(100vw - 22px) !important;
    max-height: calc(100vh - 22px) !important;
    border-radius: 18px !important;
  }

  .asz-swatch-lightbox__image-wrap {
    min-height: 330px !important;
    padding: 18px !important;
  }

  .asz-swatch-lightbox__image-wrap img {
    max-height: 64vh !important;
  }
}


/* v2.0: Színminta nagyító bezáró gomb láthatóság javítása */
.asz-swatch-lightbox__close {
  right: 16px !important;
  top: 16px !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  background: #071044 !important;
  border: 2px solid rgba(255, 255, 255, 0.95) !important;
  color: #ffffff !important;
  opacity: 1 !important;
  box-shadow: 0 12px 28px rgba(7, 16, 68, 0.28) !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

.asz-swatch-lightbox__close::before {
  content: "×" !important;
  display: block !important;
  color: #ffffff !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 30px !important;
  text-align: center !important;
  transform: translateY(-1px) !important;
}

.asz-swatch-lightbox__close:hover,
.asz-swatch-lightbox__close:focus {
  background: #0072CE !important;
  color: #ffffff !important;
  outline: none !important;
}

/* Termékoldali felület- és színminták */
.asz-product-swatches {
  margin: 34px 0 24px;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  clear: both;
}

.asz-product-swatches h3 {
  margin: 0 0 10px;
  color: #020331;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.2;
}

.asz-product-swatches__lead {
  max-width: 680px;
  margin: 0 0 18px;
  color: #6b7280;
  line-height: 1.7;
}

.asz-product-swatches .asz-swatch-section {
  margin: 0;
}

@media (max-width: 768px) {
  .asz-product-swatches {
    padding: 22px 18px;
    border-radius: 18px;
  }
}

/* Termékoldali egységes termékadat-blokk */
.asz-product-data {
  margin: 28px 0 22px;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.075);
  clear: both;
}

.asz-product-data h3 {
  margin: 0 0 16px;
  color: #020331;
  font-size: clamp(1.28rem, 1.8vw, 1.75rem);
  line-height: 1.2;
}

.asz-product-data__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.asz-product-data__item {
  padding: 14px 16px;
  background: #f7f8fb;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
}

.asz-product-data__item span {
  display: block;
  margin-bottom: 5px;
  font-size: .72rem;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #0072CE;
}

.asz-product-data__item strong {
  display: block;
  color: #020331;
  font-size: .98rem;
  line-height: 1.55;
  font-weight: 650;
}

.asz-product-data__item--sizes,
.asz-product-data__item--order_note {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .asz-product-data {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .asz-product-data__grid {
    grid-template-columns: 1fr;
  }
}

/* v2.3: Ajtó összeállító / ajánlatkérő konfigurátor */
.asz-door-configurator {
  margin-top: 28px;
  padding: 30px 28px;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
}

.asz-door-configurator h3 {
  margin: 0 0 12px;
  color: #071044;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15;
}

.asz-door-configurator__lead {
  margin: 0 0 22px;
  max-width: 680px;
  color: #6b7280;
  line-height: 1.7;
}

.asz-door-configurator__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.asz-door-configurator__field {
  padding: 14px;
  background: #f7f8fb;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
}

.asz-door-configurator__field--surface,
.asz-door-configurator__field--textarea {
  grid-column: 1 / -1;
}

.asz-door-configurator__label {
  display: block;
  margin-bottom: 8px;
  color: #0072ce;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.asz-door-configurator select,
.asz-door-configurator input[type="text"],
.asz-door-configurator input[type="number"],
.asz-door-configurator textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 12px;
  background: #fff;
  color: #071044;
  padding: 10px 12px;
  font-size: 15px;
  box-shadow: none;
}

.asz-door-configurator textarea {
  min-height: 92px;
  resize: vertical;
}

.asz-door-configurator__surface-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
  gap: 12px;
}

.asz-door-configurator__surface-choice {
  display: block;
  position: relative;
  cursor: pointer;
}

.asz-door-configurator__surface-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.asz-door-configurator__surface-thumb {
  display: block;
  height: 76px;
  padding: 8px;
  background-color: #f3f5f8;
  background-image:
    linear-gradient(45deg, rgba(15, 23, 42, .035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(15, 23, 42, .035) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(15, 23, 42, .035) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(15, 23, 42, .035) 75%);
  background-size: 16px 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px 14px 0 0;
}

.asz-door-configurator__surface-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: #fff;
}

.asz-door-configurator__surface-name {
  display: block;
  min-height: 44px;
  padding: 9px 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  color: #071044;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.asz-door-configurator__surface-choice input:checked + .asz-door-configurator__surface-thumb,
.asz-door-configurator__surface-choice input:checked ~ .asz-door-configurator__surface-name {
  border-color: rgba(0, 114, 206, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 114, 206, 0.14);
}

.asz-door-configurator__hint {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.asz-door-configurator__button {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  background: #0072ce;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(0, 114, 206, 0.22);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.asz-door-configurator__button:hover,
.asz-door-configurator__button:focus {
  background: #005fae;
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(0, 114, 206, 0.28);
}

.asz-door-configurator__notice {
  margin: 14px 0 0;
  color: #071044;
  font-weight: 700;
}

.asz-door-configurator__notice.is-success {
  color: #0f7a3c;
}

.asz-door-configurator__notice.is-error,
.asz-door-configurator__field.has-error .asz-door-configurator__label {
  color: #b42318;
}

.asz-door-configurator__field.has-error {
  border-color: rgba(180, 35, 24, 0.35);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

@media (max-width: 768px) {
  .asz-door-configurator {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .asz-door-configurator__grid {
    grid-template-columns: 1fr;
  }

  .asz-door-configurator__button {
    width: 100%;
  }
}


/* v2.5: az ajtó-összeállító a termékkép alá kerül, hogy a bal oldali üres teret hasznosítsa */
.single-product div.product .asz-door-configurator {
  clear: left;
  margin: 28px 4% 34px 0;
}

@media (min-width: 1025px) {
  .single-product div.product .asz-door-configurator {
    float: left;
    width: 38%;
    max-width: 430px;
    padding: 26px 24px;
  }

  .single-product div.product .asz-door-configurator__grid {
    grid-template-columns: 1fr;
  }

  .single-product div.product .asz-door-configurator__field--surface,
  .single-product div.product .asz-door-configurator__field--textarea {
    grid-column: auto;
  }
}

@media (max-width: 1024px) {
  .single-product div.product .asz-door-configurator {
    float: none;
    clear: both;
    width: auto;
    max-width: none;
    margin: 28px 0 34px;
  }
}


/* v2.5: az összeállítóban a felület/szín már választólista, nem ismételt képes rács */
.asz-door-configurator__field--surface select {
  font-weight: 650;
}
.asz-door-configurator__field--surface .asz-door-configurator__hint {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
}

/* v2.6: termékcsalád modellváltozatok és jobb termékoldali elrendezés */
.asz-product-variants {
  margin: 22px 0 30px;
  padding: 18px 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
  clear: left;
}

.asz-product-variants h3 {
  margin: 0 0 8px;
  color: #020331;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.2;
}

.asz-product-variants__lead {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: .92rem;
  line-height: 1.55;
}

.asz-product-variants__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 10px;
}

.asz-product-variant {
  appearance: none;
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(15, 23, 42, 0.11);
  border-radius: 14px;
  background: #f8fafc;
  color: #020331;
  cursor: pointer;
  text-align: center;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.asz-product-variant:hover,
.asz-product-variant:focus,
.asz-product-variant.is-active {
  border-color: rgba(0, 114, 206, .55);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 114, 206, .12);
  transform: translateY(-1px);
  outline: none;
}

.asz-product-variant__thumb {
  display: block;
  height: 112px;
  margin-bottom: 8px;
  border-radius: 10px;
  overflow: hidden;
  background: #edf1f6;
  border: 1px solid rgba(15, 23, 42, .08);
}

.asz-product-variant__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.asz-product-variant__title {
  display: block;
  color: #020331;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Az összeállító teljes szélességben, a felső termékrész alatt jelenjen meg */
.single-product div.product .asz-door-configurator {
  float: none !important;
  clear: both !important;
  width: auto !important;
  max-width: 1180px !important;
  margin: 42px auto 38px !important;
  padding: 30px 32px !important;
}

@media (min-width: 1025px) {
  .single-product div.product .asz-door-configurator__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .single-product div.product .asz-door-configurator__field--surface,
  .single-product div.product .asz-door-configurator__field--textarea {
    grid-column: span 3 !important;
  }
}

@media (max-width: 768px) {
  .asz-product-variants {
    padding: 16px 14px;
    border-radius: 18px;
  }

  .asz-product-variants__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asz-product-variant__thumb {
    height: 104px;
  }

  .single-product div.product .asz-door-configurator {
    margin: 30px 0 32px !important;
    padding: 24px 18px !important;
  }
}

/* v2.7: modellválasztó a fő termékkép mellé, a termékleírás/termékadatok vissza a kép mellé */
@media (min-width: 1025px) {
  .single-product div.product div.images.woocommerce-product-gallery,
  .single-product div.product div.images.images {
    width: 52% !important;
    float: left !important;
    clear: none !important;
    margin-right: 4% !important;
    margin-bottom: 34px !important;
  }

  .single-product div.product .summary,
  .single-product div.product div.summary {
    width: 44% !important;
    float: right !important;
    clear: none !important;
    margin-top: 0 !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery {
    display: grid !important;
    grid-template-columns: minmax(280px, 1fr) minmax(138px, 174px);
    gap: 16px;
    align-items: start;
  }

  .single-product div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__wrapper,
  .single-product div.product div.images.woocommerce-product-gallery .flex-viewport {
    grid-column: 1;
    grid-row: 1;
    margin: 0 !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variants {
    grid-column: 2;
    grid-row: 1;
    clear: none !important;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 14px !important;
    max-height: 640px;
    overflow: auto;
    border-radius: 18px !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.075) !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variants .asz-kicker {
    display: none;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variants h3 {
    margin-bottom: 10px !important;
    font-size: .98rem !important;
    line-height: 1.25 !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variants__lead {
    display: none !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variants__grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variant {
    padding: 7px !important;
    border-radius: 13px !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variant__thumb {
    height: 98px !important;
    margin-bottom: 6px !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variant__title {
    font-size: .68rem !important;
    letter-spacing: .03em !important;
  }

  .single-product div.product .asz-door-configurator {
    clear: both !important;
    float: none !important;
  }
}

@media (max-width: 1024px) {
  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variants {
    margin: 18px 0 28px !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variants__grid {
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)) !important;
  }
}

/* v2.7: modellválasztáskor frissített termékadat enyhe kiemelése */
.asz-product-data__item.is-variant-updated {
  border-color: rgba(0, 114, 206, 0.16) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
}

/* v2.8: modellválasztó a fő termékkép alatt, teljes ajtóképes miniatűrökkel */
@media (min-width: 1025px) {
  .single-product div.product div.images.woocommerce-product-gallery,
  .single-product div.product div.images.images {
    width: 44% !important;
    float: left !important;
    clear: none !important;
    margin-right: 5% !important;
    margin-bottom: 34px !important;
    display: block !important;
  }

  .single-product div.product .summary,
  .single-product div.product div.summary {
    width: 51% !important;
    float: right !important;
    clear: none !important;
    margin-top: 0 !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__wrapper,
  .single-product div.product div.images.woocommerce-product-gallery .flex-viewport {
    margin: 0 !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variants {
    clear: both !important;
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 18px 0 0 !important;
    padding: 16px !important;
    max-height: none !important;
    overflow: visible !important;
    border-radius: 18px !important;
    display: block !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.075) !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variants .asz-kicker {
    display: none !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variants h3 {
    margin: 0 0 10px !important;
    font-size: 1rem !important;
    line-height: 1.25 !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variants__lead {
    display: none !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variants__grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr)) !important;
    gap: 10px !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variant {
    padding: 7px !important;
    border-radius: 13px !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variant__thumb {
    height: 132px !important;
    margin-bottom: 6px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variant__thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    padding: 2px !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variant__title {
    font-size: .68rem !important;
    letter-spacing: .03em !important;
  }
}

@media (max-width: 1024px) {
  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variants__grid {
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr)) !important;
  }
  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variant__thumb {
    height: 118px !important;
  }
  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variant__thumb img {
    object-fit: contain !important;
    object-position: center bottom !important;
  }
}

/* v2.9: termékoldal finomítások */
@media (min-width: 1025px) {
  .single-product div.product div.images.woocommerce-product-gallery,
  .single-product div.product div.images.images {
    width: 45% !important;
    margin-right: 4% !important;
  }

  .single-product div.product .summary,
  .single-product div.product div.summary {
    width: 51% !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__wrapper,
  .single-product div.product div.images.woocommerce-product-gallery .flex-viewport,
  .single-product div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__image {
    background: #ffffff !important;
    border-radius: 2px !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__image img,
  .single-product div.product div.images.woocommerce-product-gallery img.wp-post-image {
    width: 100% !important;
    height: auto !important;
    max-height: 720px !important;
    object-fit: contain !important;
    object-position: center center !important;
    cursor: zoom-in !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variant__thumb {
    height: 142px !important;
    background: #ffffff !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variant__thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    padding: 0 !important;
  }

  .single-product div.product .asz-product-swatches {
    clear: both !important;
    float: none !important;
    width: auto !important;
    max-width: 1180px !important;
    margin: 34px auto 34px !important;
    padding: 30px 32px !important;
  }

  .single-product div.product .asz-product-swatches .asz-swatch-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
  }

  .single-product div.product .asz-door-configurator {
    margin-top: 34px !important;
  }

  .single-product div.product .asz-door-configurator__field--surface {
    grid-column: span 3 !important;
  }

  .single-product div.product .asz-door-configurator__field--cfg_tok_szine {
    grid-column: span 1 !important;
  }

  .single-product div.product .asz-door-configurator__field--cfg_tok_tipusa,
  .single-product div.product .asz-door-configurator__field--cfg_tok_szine {
    grid-row: auto !important;
  }
}

@media (max-width: 1024px) {
  .single-product div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__image img,
  .single-product div.product div.images.woocommerce-product-gallery img.wp-post-image {
    cursor: zoom-in !important;
  }

  .single-product div.product div.images.woocommerce-product-gallery .asz-product-variant__thumb img {
    object-fit: cover !important;
    object-position: center center !important;
    padding: 0 !important;
  }
}

.asz-product-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.asz-product-image-lightbox.is-open {
  display: flex;
}

.asz-product-image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .68);
  backdrop-filter: blur(4px);
}

.asz-product-image-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 980px);
  max-height: 92vh;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, .32);
  overflow: hidden;
}

.asz-product-image-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: #0072CE;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 114, 206, .28);
}

.asz-product-image-lightbox__close:hover,
.asz-product-image-lightbox__close:focus {
  background: #004C8C;
  outline: none;
}

.asz-product-image-lightbox__image-wrap {
  width: 100%;
  min-height: 360px;
  max-height: calc(92vh - 92px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 20px;
}

.asz-product-image-lightbox__image-wrap img {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 132px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.asz-product-image-lightbox__meta {
  padding: 18px 24px 22px;
  border-top: 1px solid rgba(15, 23, 42, .08);
}

.asz-product-image-lightbox__meta h3 {
  margin: 0;
  color: #020331;
  font-size: 1.15rem;
  line-height: 1.3;
}

body.asz-product-image-lightbox-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .asz-product-image-lightbox {
    padding: 14px;
  }

  .asz-product-image-lightbox__panel {
    width: 96vw;
    border-radius: 18px;
  }

  .asz-product-image-lightbox__image-wrap {
    min-height: 260px;
    padding: 14px;
  }
}
