.work-hours-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Two grid items per row */
    gap: 10px; /* Adjust as needed */
}

.work-hours-item {
    display: grid;
	grid-template-columns: 40% 60%;
    /*grid-template-columns: repeat(2, 1fr); *//* Two grid items per row */
    gap: 5px; /* Adjust as needed */
}


.work-hours {

}
.work-days
 {

}




h1.klima-title { 
font-size: 2.5rem;
	font-weight: 600;
}

.klima-typ { 
color:#97979f;
}

/* IMAGE */
/* Fade */
.klima-variation-image {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.klima-variation-image.fade-active {
    opacity: 1;
}

/* Name */
.klima-variation-name {
    font-size: 16px;
    font-weight: 500;
	color:#000;
}

/* Swatches */
.klima-variation-select {
    display: flex;
    gap: 12px;
}
.klima-variation-swatch {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
}
.klima-variation-swatch.active {
    border-color: #262626;
}


.klima-leistungsdaten ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.klima-leistungsdaten li {
   display: flex;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 1.1rem;
    justify-content: space-between;
    border-top: 1px solid #e5e5e5;
    /* border-bottom: 1px solid #e5e5e5; */
    padding: 10px;
    align-items: center;

}

.klima-leistungsdaten strong {
    min-width: 200px;
}


.klima-marke-logo img {
    max-height: 30px;
    width: auto;
    display: block;
}










/* Button */
.product-anfrage-button {
    padding: 1rem 2rem;
    background-color: #e69637;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
	border-radius: .5rem;
	    display: inline-block;
	    font-weight: 600;
	width: 100%;
	margin-top:20px;
}

/* Overlay */
.product-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;

    z-index: 2147483647;
}

/* Modal */
.product-modal {
    background: #fff;
    padding: 24px;
    width: 90%;
    max-width: 600px;

    /* 🔑 WICHTIG FÜR MOBILE */
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    position: relative;
    border-radius: 8px;
}

/* Close Button */
.product-modal-close {
    position: sticky; /* bleibt sichtbar beim Scrollen */
    top: 0;
    margin-left: auto;
    display: block;

    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* Scroll Lock für Hintergrund */
body.modal-open {
    overflow: hidden;
}

.klima-variation-image img { 
border-radius:0.5rem;
}


.klima-kurz-beschreibung { 
font-size:18px;
	margin-top:30px;
	line-height:1.7em;
	font-weight: 300;
}


.klima-leistungsdaten h2 { 
font-weight:700;
}






.info-step {
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
}

.info-step-number {
    width: 64px;
    height: 64px;
    background-color: #e69637;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 16px;
}

.info-step-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.info-step-text {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}




.hero-gradient-produkt {
    position: relative;
    overflow: hidden;

    /* BASE GRADIENT – pixel sampled */
    background:
        radial-gradient(
            120% 80% at 50% 0%,
            rgba(255, 255, 255, 0.75) 0%,
            rgba(255, 255, 255, 0.35) 30%,
            rgba(255, 255, 255, 0.0) 55%
        ),
        linear-gradient(
            180deg,
            #99c5d9 0%,
            #acceda 25%,
            #ffffff 50%,
            #efefef 75%,
            #eba371 100%
        );
}


.info-step-title  { 
font-weight:700;
}


.taxonomy-term-description, .brand-additional-text { 
font-size:18px;
	margin-top:30px;
	line-height:1.7em;
	font-weight: 300;
}

h1.taxonomy-term-title { 
font-size: 2.5rem;
    font-weight: 700;
}

.taxonomy-term-image img { 
max-height:30px;
}






/* Beratung Badge */
.beratung-badge {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background-color: #8f9da3; /* grey-blue tone like image */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.beratung-badge-inner {
    color: #ffffff;
    font-family: inherit;
    line-height: 1.2;
}

/* Top text */
.beratung-badge-top {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 14px;
}

/* Price */
.beratung-badge-price {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Bottom text */
.beratung-badge-bottom {
    font-size: 14px;
    opacity: 0.9;
}


@media (max-width: 768px) {
    .beratung-badge {
        width: 200px;
        height: 200px;
    }

    .beratung-badge-price {
        font-size: 32px;
    }
}



/* Floating animation */
@keyframes beratungFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

.beratung-badge {
    animation: beratungFloat 4s ease-in-out infinite;
    transition: background-color 0.4s ease, transform 0.3s ease;
}


/* Hover effect */
.beratung-badge:hover {
    background-color: #e69637;
    transform: translateY(-10px);
}

.beratung-badge {
    cursor: pointer;
}
























