/********** Template CSS **********/

html {
    font-size: 85%;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    background: rgba(0, 0, 0, .7);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    /* A slide legyen rugalmas magasságú */
    .carousel .carousel-item {
        min-height: auto;
        max-height: none;
        padding: 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* A képek arányosan jelenjenek meg, középre igazítva */
    .carousel .carousel-item img {
        position: static !important;
        width: 90% !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: center !important;
        margin: 0 auto;
        display: block;
    }
}


@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown { 
    0% { 
        top: -25px;
    }
    50% { 
        top: -45px;
    }
    100% { 
        top: -25px;
    } 
}


/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url(../img/carousel-1.jpg) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}


/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) left center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Appoinment ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}

/* ====== Klíma árlista blokk (sötét narancs dizájnnal, egyedi classokkal) ====== */
.klimaBox-unik {
    background: linear-gradient(135deg, rgba(30,30,30,0.9), rgba(10,10,10,0.95));
    border: 2px solid #ff6600;
    border-radius: 16px;
    padding: 35px;
    margin-top: 40px;
    color: #fff;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.klimaBox-unik::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,102,0,0.15) 0%, transparent 70%);
    animation: klimaPulse 6s infinite linear;
    z-index: 0;
}

@keyframes klimaPulse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.klimaBox-unik:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0px 8px 28px rgba(255,102,0,0.4);
}

.klimaTitle-unik {
    font-size: 30px;
    font-weight: 900;
    color: #ff6600;
    margin-bottom: 24px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.klimaList-unik {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.klimaList-unik li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 15.5px;
    line-height: 1.7;
    display: flex;
    align-items: center;
    gap: 10px;
}

.klimaList-unik li::before {
    content: "❯";
    color: #ff6600;
    font-weight: bold;
    font-size: 14px;
}

.klimaList-unik li:last-child {
    border-bottom: none;
}

.klimaPrice-unik {
    font-size: 27px;
    font-weight: 800;
    color: #ffc107;
    text-align: center;
    margin: 24px 0;
    position: relative;
    z-index: 1;
    text-shadow: 0px 0px 8px rgba(255, 193, 7, 0.5);
}

.klimaNote-unik {
    font-size: 14px;
    color: #ddd;
    margin-top: 16px;
    font-style: italic;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Offer - narancs kerettel */
.offer-title {
    font-size: 42px;
    font-weight: 900;
    color: #CE9233;
    margin: 0;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: popInSmooth 900ms cubic-bezier(.2,.9,.3,1) both;
    text-shadow: 0 3px 18px rgba(206,146,51,0.12);
    will-change: transform, opacity;

    /* új: keret */
    border: 3px solid #CE9233;
    border-radius: 12px;
    padding: 15px 25px;
    display: inline-block;
    box-shadow: 0 0 16px rgba(206,146,51,0.25);
}


.offer-sub {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #B57F2B;               /* sötétebb árnyalat a kontraszthoz */
    margin-top: 8px;
    animation: floatSmooth 4000ms ease-in-out 600ms infinite;
    will-change: transform, text-shadow;
}

/* finom, „pop in” belépés */
@keyframes popInSmooth {
    0%   { transform: translateY(18px) scale(.975); opacity: 0; filter: blur(6px); }
    55%  { transform: translateY(-6px) scale(1.015); opacity: 1; filter: blur(0); }
    100% { transform: translateY(0) scale(1); opacity: 1; filter: blur(0); }
}

/* lassú, sima lebegés (apró translate + pulzálás árnyékkal) */
@keyframes floatSmooth {
    0%   { transform: translateY(0); text-shadow: 0 0 0 rgba(181,127,43,0.00); }
    25%  { transform: translateY(-4px); text-shadow: 0 8px 28px rgba(181,127,43,0.08); }
    50%  { transform: translateY(0);  text-shadow: 0 6px 20px rgba(181,127,43,0.06); }
    75%  { transform: translateY(-3px); text-shadow: 0 8px 28px rgba(181,127,43,0.08); }
    100% { transform: translateY(0);  text-shadow: 0 0 0 rgba(181,127,43,0.00); }
}

/* reszponzív méretek (változatlan logika) */
@media (min-width: 1200px) {
    .offer-title { font-size: 56px; }
    .offer-sub   { font-size: 34px; }
}

@media (max-width: 768px) {
    .offer-title { font-size: 28px; }
    .offer-sub   { font-size: 18px; }
}

/* Barna kiemelés áraknál */
.highlight-offer {
    color: #CE9233;
    font-weight: 700;
}

/* Klíma ár táblázat – modern stílus */
.table-container {
    max-width: 700px;        /* táblázat maximális szélessége */
    margin: 30px auto;       /* középre igazítás */
    padding: 15px;
    background: #fff;
    border-radius: 12px;     /* lekerekített sarkok */
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

#klima-arak {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    overflow: hidden;
    border-radius: 12px;
}

#klima-arak thead th {
    background: linear-gradient(135deg, #ff6600, #ff944d); /* szép átmenet */
    color: #fff;
    font-weight: 600;
    padding: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

#klima-arak td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

/* Sávos háttér */
#klima-arak tbody tr:nth-child(odd) {
    background-color: #fdfdfd;
}

#klima-arak tbody tr:nth-child(even) {
    background-color: #f7f9fc;
}

/* Hover effekt */
#klima-arak tbody tr:hover {
    background-color: #ffe6cc;
    transform: scale(1.01);
}

/* Alapár kiemelés (1-3 m) */
#klima-arak tbody tr:nth-child(-n+3) td {
    font-weight: bold;
    color: #d35400;
}

/* Ár oszlop kiemelése */
#klima-arak td.ar {
    font-weight: 600;
    color: #333;
}

/* Általános gomb stílus */
.kalkulator-btn {
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

/* Asztali nézet (normál jobb oldali elhelyezés) */
@media (min-width: 992px) {
    .kalkulator-btn {
        margin-left: auto;
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* Mobil nézet: a jobb szélre helyezett, kisebb gomb */
@media (max-width: 991px) {
    .kalkulator-btn {
        position: absolute;
        top: 12px;
        right: 60px; /* hely a hamburger ikon mellett */
        padding: 6px 12px;
        font-size: 14px;
        z-index: 1050;
    }

    /* Kis árnyék és fix pozíció, hogy ne csússzon el görgetéskor */
    .sticky-top .kalkulator-btn {
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }
}

/* Hover effekt */
.kalkulator-btn:hover {
    background-color: #d35402;
    text-decoration: none;
    transform: scale(1.03);
}

:root{ --x-brand:#d35400; }

/* a szolgáltatás-kártya konténer maradhat ahogy van, csak itt pozicionálunk/flexelünk */
.price-host { position: relative; }

/* kártya alsó sora: balra (opcionális) távirányító, jobbra az ár */
.x-card-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-top:1px dashed rgba(0,0,0,.15);
  margin: 0 24px;
  padding-top:12px;
}

/* távirányító kis ikon (ha van) */
.x-remote-thumb{
  width:44px;
  height:auto;
  display:block;
  border-radius:6px;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}

/* kockás (szelvény) bruttó ár – monospaced, jól olvasható */
.x-price-chip{
  margin-left:auto;               /* ha nincs remote, húzódjon jobb szélre */
  background:#fff;
  border:2px solid var(--x-brand);
  border-radius:10px;
  padding:6px 10px;
  box-shadow:0 8px 18px rgba(13,110,253,.12);
  font-family:"Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight:600;
  line-height:1.1;
  font-variant-numeric:tabular-nums;
  transform:translateY(6px);
  opacity:0;
  animation:xIn .45s ease-out forwards;
}
@keyframes xIn { to{ transform:translateY(0); opacity:1; } }

.x-price-chip small{
  display:block;
  font-size:11px;
  color:var(--x-brand);
  letter-spacing:.3px;
  margin-bottom:2px;
}

.x-price-chip .x-price-value{
  font-size:17px;
  letter-spacing:.2px;
  white-space:nowrap;
}

/* Fix, nem görgethető, hivatalosabb nagy popup */
.support-badge {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 99999;

    opacity: 0;
    transform: translateY(30px) scale(0.96);
    pointer-events: none;
    transition:
        opacity 0.35s ease-out,
        transform 0.35s ease-out;
}

.support-badge--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    animation: supportBadgePopIn 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.2);
}

.support-badge--closing {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
}

/* Tartalom */
.support-badge__content {
    display: flex;
    align-items: center;
    gap: 16px;

    max-width: 460px;
    padding: 18px 22px;

    background: #0f172a;
    color: #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(59, 130, 246, 0.55);

    font-family: "Poppins", system-ui, sans-serif;
}

/* Ikon */
.support-badge__icon {
    flex-shrink: 0;
}

.support-badge__icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;
    border-radius: 999px;

    background: radial-gradient(circle at 30% 20%, #60a5fa, #1d4ed8);
    color: #ffffff;
    font-size: 1.25rem;

    box-shadow: 0 0 0 1px rgba(191, 219, 254, 0.6);
}

/* Szöveg */
.support-badge__text {
    flex: 1;
    min-width: 0;
}

.support-badge__title {
    font-size: 1rem;
    font-weight: 600;
    color: #f9fafb;
    margin-bottom: 3px;
}

.support-badge__title strong {
    font-weight: 700;
}

.support-badge__subtitle {
    font-size: 0.82rem;
    color: #cbd5f5;
}

/* Bezáró gomb */
.support-badge__close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    margin-left: 6px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition:
        color 0.15s ease,
        transform 0.15s ease,
        background 0.15s ease;
    border-radius: 999px;
    width: 32px;
    height: 32px;
}

.support-badge__close:hover {
    color: #fff;
    background: rgba(55, 65, 81, 0.6);
    transform: scale(1.07);
}

/* Beugró animáció */
@keyframes supportBadgePopIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.88);
    }
    55% {
        opacity: 1;
        transform: translateY(-6px) scale(1.06);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobil */
@media (max-width: 576px) {
    .support-badge {
        right: 12px;
        left: 12px;
        bottom: 18px;
    }

    .support-badge__content {
        max-width: 100%;
        padding: 16px 18px;
    }

    .support-badge__title {
        font-size: 0.95rem;
    }
}

/* ==== Főoldali nagy kép igazítása desktopon ==== */
@media (min-width: 992px) {

  /* A slide magassága ne legyen óriási */
  .carousel .carousel-item {
      height: 80vh;          /* kb. a képernyő 80%-a */
      min-height: 500px;
  }



  /* A felirat kerüljön FELJEBB */
  .carousel .carousel-caption {
      justify-content: flex-start;  /* ne középen legyen függőlegesen */
      padding-top: 6rem;           /* feljebb húzzuk a szöveget */
  }
}

/* ---------- KALKULÁTOR – SZÁMOLÓGÉP STÍLUS ---------- */

.calc-shell {
    max-width: 760px;
    margin: 0 auto;
    background: radial-gradient(circle at top, #151d30 0%, #050814 70%);
    border-radius: 24px;
    padding: 20px 20px 26px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

/* Fejléc + LED kijelző */
.calc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    position: sticky;
    top: 80px;              /* ha a felső menü magasabb, állíthatod */
    z-index: 5;
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(5,8,20,0.98), rgba(10,18,35,0.98));
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
}

.calc-title {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f4f4f4;
    opacity: 0.7;
}

.calc-display {
    min-width: 190px;
    text-align: right;
    padding: 10px 14px;
    border-radius: 14px;
    background: #041005;
    box-shadow: inset 0 0 12px rgba(0,255,0,0.25);
}

.calc-display span {
    font-family: "Courier New", monospace;
    font-size: 1.2rem;
    color: #b9ff6b;
    text-shadow: 0 0 10px rgba(165, 255, 120, 0.9);
}

/* Form belső része */
.calc-body {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-block {
    background: rgba(0,0,0,0.18);
    border-radius: 16px;
    padding: 10px 14px 14px;
    border: 1px solid rgba(255,255,255,0.04);
}

/* Cím + kapcsoló egy sorban */
.calc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.calc-label {
    color: #f9f9f9;
    font-size: 0.9rem;
}

.calc-small {
    font-size: 0.8rem;
    color: #cfd3ff;
    margin-left: 4px;
}

/* Szép csúszkák – rövidebbek, középen */
.calc-range {
    width: 100%;
    max-width: 420px;
    margin: 4px auto 0;
    accent-color: #ff8a24;
}

.calc-range::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff8a24, #ffc45c);
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #fff;
    border: 2px solid #ff8a24;
    margin-top: -6px;
    box-shadow: 0 0 8px rgba(255,138,36,0.7);
}

.calc-range::-moz-range-track {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff8a24, #ffc45c);
}

.calc-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #fff;
    border: 2px solid #ff8a24;
    box-shadow: 0 0 8px rgba(255,138,36,0.7);
}

/* Select – sötét, modern */
.calc-select {
    background-color: #050814;
    color: #f0f0f0;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.9rem;
}

/* ON/OFF kapcsolók – pill stílus */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #222a3b;
    transition: .3s;
    border-radius: 100px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: #fff;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.switch input:checked + .slider {
    background: linear-gradient(135deg, #ff8a24, #ffc45c);
    box-shadow: 0 0 12px rgba(255,138,36,0.7);
}

.switch input:checked + .slider:before {
    transform: translateX(18px);
}

/* Responsív finomhangolás */
@media (max-width: 768px) {
    .calc-shell {
        padding: 16px 14px 20px;
    }
    .calc-header {
        flex-direction: column;
        align-items: flex-start;
        top: 70px;
    }
    .calc-display {
        width: 100%;
    }
}

/* --- Két soros cím + ár beállítás --- */

.calc-label {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.calc-line {
    font-size: 1rem;
    font-weight: 500;
    color: #ddd;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.calc-line-small {
    font-size: 0.9rem;
    color: #7fc8ff;
    margin-top: 4px;
}

/* További szépítés */
.calc-block {
    padding: 18px;
    background: rgba(189, 189, 189, 0.55);
    border-radius: 14px;
    margin-bottom: 18px;
}

.calc-range {
    margin-top: 10px;
}

/* --- Kalkulátor: klíma kártyák --- */
.calc-products {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.calc-product {
    position: relative;
    cursor: pointer;
    flex: 1 1 180px;
    max-width: 220px;
}

.calc-product input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calc-product-inner {
    border-radius: 12px;
    background: #050b18;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.75rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    transition: all 0.2s ease;
}

.calc-product-img {
    width: 56px;
    height: 32px;
    object-fit: cover;
    border-radius: 6px;
}

.calc-product-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.8rem;
}

.calc-product-name {
    color: #ffffff;
    font-weight: 600;
}

.calc-product-power {
    color: #ffdd99;
    font-size: 0.7rem;
}

.calc-product-price {
    color: #9fdc7a;
    font-weight: 600;
    font-size: 0.75rem;
}

/* kijelölt állapot */
.calc-product input[type="radio"]:checked + .calc-product-inner {
    border-color: #ff9b2a;
    box-shadow: 0 0 0 1px rgba(255,155,42,0.5);
    transform: translateY(-1px);
}

/* két soros label segédosztályok */
.calc-line,
.calc-row-top {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.calc-line-small,
.calc-row-bottom {
    margin-top: 0.15rem;
    font-size: 0.8rem;
    color: #9fb3d1;
}

.calc-sub {
    font-size: 0.8rem;
    color: #9fb3d1;
    margin-top: 0.15rem;
}

/* ===== WINTER HERO – EGYEDI FEJLÉC ===== */

.hero-winter-wrapper {
    position: relative;
    background: linear-gradient(135deg, #071827 0%, #102a3d 45%, #0a1824 100%);
    overflow: hidden;
}

/* -------------------------
   REALISZTIKUS RANDOM HÓESÉS
-------------------------- */

.hero-winter-snow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    top: -10px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, white 0%, rgba(255,255,255,0.2) 70%);
    border-radius: 50%;
    opacity: 0.9;
    animation-name: fallSnow;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Eső animáció */
@keyframes fallSnow {
    0% {
        transform: translateY(-10vh) translateX(0);
    }
    100% {
        transform: translateY(110vh) translateX(30px);
    }
}

.hero-winter-snow {
    animation: winterSnow 18s linear infinite;
}

.hero-winter-snow::before {
    animation-duration: 26s;
}

.hero-winter-snow::after {
    animation-duration: 40s;
}


/* Belső tartalom */
.hero-winter-inner {
    position: relative;
    z-index: 1;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Kis “badge” felül */
.hero-winter-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 155, 42, 0.15);
    border: 1px solid #ff9b2a;
    color: #ffcf8a;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Címsor */
.hero-winter-title {
    font-size: 2.4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-winter-title span {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffdfaa;
}

/* Alcím */
.hero-winter-lead {
    color: #e2ecf7;
    max-width: 520px;
    margin-bottom: 18px;
    font-size: 1rem;
}

/* Gombok */
.hero-winter-cta .btn-primary {
    background-color: #ff9b2a;
    border-color: #ff9b2a;
    font-weight: 600;
}

.hero-winter-cta .btn-primary:hover {
    background-color: #ffb756;
    border-color: #ffb756;
}

.hero-winter-cta .btn-outline-light {
    border-width: 2px;
    font-weight: 600;
}

/* Kis megjegyzés */
.hero-winter-note {
    margin-top: 10px;
    color: #c9d7e5;
    font-size: 0.9rem;
}

.hero-winter-image-frame {
    padding: 12px;                     /* kisebb keret */
    background: #1fa43e;               /* zöld karácsonyi keret */
    border-radius: 16px;
    display: inline-block;
    max-width: 100%;
    width: fit-content;                /* igazodik a képhez */
    box-shadow: 0 0 28px rgba(0,0,0,0.25);
}

.hero-winter-image-inner {
    border-radius: 12px;
    overflow: hidden;                  /* NE vágja le túl nagy területet */
}

.hero-winter-img {
    width: 100%;
    height: auto;                      /* így sosem torzul */
    display: block;
    object-fit: contain;               /* biztosan nem vágja le a széleket */
}

/* RESPONSIVE – telefonra optimalizálás */
@media (max-width: 991.98px) {
    .hero-winter-inner {
        min-height: auto;
        padding-top: 32px;
        padding-bottom: 32px;
        text-align: center;
    }

    .hero-winter-title {
        font-size: 1.9rem;
    }

    .hero-winter-title span {
        font-size: 1.2rem;
    }

    .hero-winter-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-winter-cta .btn {
        width: 100%;
    }

    .hero-winter-image-frame {
        margin-top: 16px;
    }
}

@media (max-width: 575.98px) {
    .hero-winter-title {
        font-size: 1.6rem;
    }

    .hero-winter-title span {
        font-size: 1.05rem;
    }

    .hero-winter-lead {
        font-size: 0.95rem;
    }
}







