/* ===== PREVENT PHONE NUMBER DUPLICATION ===== */
/* Thermador header: prevent global .btn-call::after phone duplication */
body.page-thermador header .btn-call::after {
  content: none !important;
}

/* Prevent phone duplication in all CALL buttons on the page */
body.page-thermador .btn-call::after {
  content: none !important;
}

/* ===== WHITE BACKGROUND FOR TOP SECTION ===== */
body.page-thermador {
  background: #fff;
}

body.page-thermador .top-strip {
  background: #fff;
}

body.page-thermador .brand-crumbs {
  background: #fff;
}

body.page-thermador .sub-hero {
  background: #fff;
}

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 768px) {
  body.page-thermador .header-right {
    gap: 16px;
  }
  
  body.page-thermador .btn-book,
  body.page-thermador .btn-call {
    font-size: 0.9rem;
    padding: 5px 10px;
  }
  
  body.page-thermador .header-slogan {
    font-size: 0.95rem;
  }
}

/* iPhone optimization (match monogram) */
@media (max-width: 650px) {
  body.page-thermador .header-nav {
    display: none !important;
  }
  
  body.page-thermador .header-right .btn-book {
    display: none !important;
  }
}

@media (max-width: 600px) {
  body.page-thermador .header-slogan {
    display: none;
  }
  
  body.page-thermador .nav-link {
    display: none;
  }
  
  body.page-thermador .header-right {
    gap: 12px;
  }
}

/* ===== TOP STRIP STYLES ===== */
body.page-thermador .top-strip {
  position: sticky;
  top: calc(64px + env(safe-area-inset-top)) !important;
  z-index: 90;
  background: linear-gradient(90deg, #1E90FF, #007BFF);
  color: #fff;
}

body.page-thermador .top-strip .container {
  padding: 1px 24px !important;
  text-align: center;
}

body.page-thermador .top-strip-text {
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Top strip: prevent duplicated text (match monogram) */
body.page-thermador .top-strip .top-strip-text--full {
  display: inline-block;
}

body.page-thermador .top-strip .top-strip-text--short {
  display: none;
}

@media (max-width: 640px) {
  body.page-thermador .top-strip .top-strip-text--full {
    display: none !important;
  }
  
  body.page-thermador .top-strip .top-strip-text--short {
    display: inline-block !important;
  }
}

/* ===== BREADCRUMBS (1:1 colors/sizing with monogram) ===== */
body.page-thermador .brand-crumbs {
  max-width: 1200px;
  margin: 12px auto 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  color: #6b7280;
  position: relative;
  z-index: 10;
  overflow: visible;
}

body.page-thermador .brand-crumbs .home-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FF6600;
  text-decoration: none;
  font-weight: 700;
}

body.page-thermador .brand-crumbs .home-link:hover {
  text-decoration: underline;
}

body.page-thermador .brand-crumbs .crumb-back {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  stroke: currentColor;
  fill: none;
}

body.page-thermador .brand-crumbs .crumb-sep {
  opacity: 0.35;
  margin: 0 4px;
}

body.page-thermador .brand-crumbs .crumb-current {
  color: #6b7280;
  font-weight: 600;
}

@media (max-width: 480px) {
  body.page-thermador .brand-crumbs {
    font-size: 14px;
  }
  
  body.page-thermador .brand-crumbs .crumb-back {
    width: 12px;
    height: 12px;
  }
  
  body.page-thermador .brand-crumbs .crumb-sep {
    margin: 0 8px; /* Увеличиваем отступ вокруг слеша */
  }
}

@media (max-width: 375px) {
  body.page-thermador .brand-crumbs .crumb-sep {
    margin: 0 10px;
  }
}

@media (max-width: 320px) {
  body.page-thermador .brand-crumbs .crumb-sep {
    margin: 0 12px;
  }
}

/* ===== PORTFOLIO SECTION (1:1 с monogram) ===== */
body.page-thermador .portfolio-block {
  padding: 60px 0;
  background: #fff;
  position: relative;
}

body.page-thermador .portfolio-block::before,
body.page-thermador .portfolio-block::after {
  content: none !important;
  display: none !important;
}

body.page-thermador .portfolio-block > .container,
body.page-thermador .portfolio-block .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

body.page-thermador .portfolio-block .section-title {
  font-size: clamp(28px, 3.2vw, 40px) !important;
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
  color: #1a1a1a;
  font-weight: 800;
}

body.page-thermador .portfolio-block {
  margin-top: 0 !important;
}

/* Portfolio carousel styles */
body.page-thermador .portfolio-carousel {
  margin-top: 48px;
  margin-bottom: 24px;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

body.page-thermador .carousel-track {
  display: flex;
  animation: carousel-smooth 40s linear infinite;
}

body.page-thermador .carousel-slide {
  flex: 0 0 300px;
  margin-right: 24px;
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-thermador .carousel-slide:last-child {
  margin-right: 0;
}

body.page-thermador .carousel-slide:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

body.page-thermador .carousel-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

body.page-thermador .slide-info {
  padding: 12px 12px 14px;
}

body.page-thermador .slide-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

body.page-thermador .slide-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Carousel animation */
@keyframes carousel-smooth {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-5 * (300px + 24px)));
  }
}

/* Pause animation on hover */
body.page-thermador .portfolio-carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body.page-thermador .portfolio-block {
    padding: 40px 0;
  }
  
  body.page-thermador .carousel-slide {
    flex: 0 0 280px;
  }
  
  @keyframes carousel-smooth {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-5 * (280px + 24px)));
    }
  }
}

@media (max-width: 480px) {
  body.page-thermador .portfolio-block {
    padding: 32px 0;
  }
  
  body.page-thermador .carousel-slide {
    flex: 0 0 260px;
  }
  
  @keyframes carousel-smooth {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-5 * (260px + 24px)));
    }
  }
}

/* Большой логотип Thermador - адаптивный для iPhone */
body.page-thermador .brand-logo-large {
  width: 420px;
  max-width: 92vw;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .12));
  margin: 0 auto 8px;
  display: block;
  object-fit: contain;
  object-position: center;
  overflow: hidden;
  line-height: 0;
}

body.page-thermador .brand-logo-large svg {
  display: block;
  width: 100%;
  height: auto;
  margin: -20px;
  padding: 0;
}

/* Стили только для сертификатов (1:1 с monogram) */
body.page-thermador .license-minimal {
  margin: 2px 0 0 !important;
}

body.page-thermador .license-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 2px 0 0 !important;
}

body.page-thermador .license-item {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #111;
  font-size: 1rem;
  text-transform: uppercase;
}

body.page-thermador .license-item:not(:last-child)::after {
  content: '\2022';
  display: inline-block;
  width: 1.2em;
  text-align: center;
  margin: 0 12px;
  color: #9aa3af;
}

/* Мобильная адаптация */
@media (max-width: 480px) {
  body.page-thermador .license-line {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  
  body.page-thermador .license-item {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }
  
  body.page-thermador .license-item:not(:last-child)::after {
    width: 1em;
    margin: 0 6px;
  }
}

/* ===== CTA КНОПКА (1:1 с monogram) ===== */
body.page-thermador .sub-hero .cta-button,
body.page-thermador .sub-hero #main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 16px 28px;
  font-size: 16px;
  background: linear-gradient(90deg, #FF6600, #FF9900);
  color: #fff;
  border: none;
  border-radius: 28px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: none !important;
  filter: none !important;
}

/* No shadow on hover as well */
body.page-thermador .sub-hero .cta-button:hover,
body.page-thermador .sub-hero #main-cta:hover {
  box-shadow: none !important;
  filter: none !important;
}

/* reduce white band under the CTA shadow (desktop as before) */
body.page-thermador .sub-hero .cta-button {
  margin-bottom: 6px;
}

@media (max-width: 640px) {
  body.page-thermador .sub-hero .cta-button {
    max-width: 300px !important;
    padding: 14px 22px !important;
    font-size: 15px !important;
    margin-left: auto;
    margin-right: auto;
  }
}

/* iPhone-only: extra guard to ensure no gap under CTA */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 430px) {
    body.page-thermador .sub-hero {
      padding-bottom: 0 !important;
    }
    
    body.page-thermador .sub-hero .cta-button {
      margin-bottom: 0 !important;
    }
  }
}

body.page-thermador .sub-hero .cta-button::before,
body.page-thermador .sub-hero .cta-button::after {
  content: none !important;
}

/* ===== WHY CHOOSE WOLFIX SECTION (1:1 с monogram) ===== */
body.page-thermador .features-block {
  padding: 60px 0;
  background: #fff;
}

body.page-thermador .features-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800 !important;
  font-size: clamp(32px, 4vw, 48px) !important;
  color: #1a1a1a !important;
  text-align: center !important;
  margin-bottom: 48px !important;
  line-height: 1.1 !important;
}

body.page-thermador .features-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1024px) {
  body.page-thermador .features-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  body.page-thermador .features-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

body.page-thermador .why-card {
  position: relative;
  background: #fff;
  border: none;
  border-radius: 14px;
  padding: 18px 18px 16px;
  text-align: left;
  box-shadow: 0 6px 16px rgba(20, 32, 50, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.page-thermador .why-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  background: linear-gradient(90deg, #1E90FF, #FF6600);
}

body.page-thermador .why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(20, 32, 50, 0.12);
}

body.page-thermador .why-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

body.page-thermador .why-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E90FF 0%, #007BFF 60%);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(30, 144, 255, 0.22);
}

body.page-thermador .why-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

body.page-thermador .why-title {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0f172a;
}

body.page-thermador .why-text {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.35;
}

@media (max-width: 480px) {
  body.page-thermador .features-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  body.page-thermador .features-title {
    font-size: clamp(28px, 3.2vw, 40px) !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    text-align: center !important;
    line-height: 1.1 !important;
    margin: 8px 0 16px !important;
  }
  
  body.page-thermador .why-card {
    padding: 14px 10px;
    text-align: center;
  }
  
  body.page-thermador .why-card::before {
    content: none;
  }
  
  body.page-thermador .why-head {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
  }
  
  body.page-thermador .why-icon {
    width: 48px;
    height: 48px;
  }
  
  body.page-thermador .why-title {
    font-size: 0.95rem;
  }
  
  body.page-thermador .why-text {
    display: none;
  }
}

/* Адаптивность для iPhone */
@media (max-width: 480px) {
  body.page-thermador .brand-logo-large {
    width: 100%;
    max-width: 85vw;
    margin: 0 auto 6px;
  }
  
  body.page-thermador .brand-logo-large svg {
    margin: -10px;
  }
  
  /* Увеличиваем отступ от breadcrumbs до логотипа на мобильных */
  body.page-thermador .sub-hero {
    margin-top: 20px;
  }
}

@media (max-width: 375px) {
  body.page-thermador .brand-logo-large {
    max-width: 80vw;
  }
  
  body.page-thermador .sub-hero {
    margin-top: 24px;
  }
}

@media (max-width: 320px) {
  body.page-thermador .brand-logo-large {
    max-width: 75vw;
  }
  
  body.page-thermador .sub-hero {
    margin-top: 28px;
  }
}

/* ===== IPHONE OPTIMIZATION ===== */
@media (max-width: 650px) {
  /* iPhone: скрываем навигацию и кнопку BOOK */
  body.page-thermador .header-nav {
    display: none !important;
  }
  
  body.page-thermador .header-right .btn-book {
    display: none !important;
  }
  
  /* iPhone: оптимизируем header */
  body.page-thermador header .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  
  body.page-thermador .header-logo-small {
    height: 100px;
  }
  
  body.page-thermador .header-slogan {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* iPhone: безопасные зоны и отступы */
  body.page-thermador .brand-crumbs {
    margin: 16px auto 0;
    padding: 0 20px;
  }
  
  body.page-thermador .sub-hero {
    margin-top: 20px;
    padding: 8px 0 6px;
  }
  
  body.page-thermador .brand-logo-large {
    width: 100%;
    max-width: 85vw;
    margin: 0 auto 6px;
  }
  
  body.page-thermador .brand-logo-large svg {
    margin: -10px;
  }
}

@media (max-width: 375px) {
  body.page-thermador .brand-logo-large {
    max-width: 80vw;
  }
  
  body.page-thermador .sub-hero {
    margin-top: 24px;
  }
  
  body.page-thermador .brand-crumbs {
    margin: 20px auto 0;
    padding: 0 24px;
  }
}

@media (max-width: 320px) {
  body.page-thermador .brand-logo-large {
    max-width: 75vw;
  }
  
  body.page-thermador .sub-hero {
    margin-top: 28px;
  }
  
  body.page-thermador .brand-crumbs {
    margin: 24px auto 0;
    padding: 0 28px;
  }
}

/* ===== REVIEWS SECTION (1:1 с monogram) ===== */
body.page-thermador .reviews-block {
  padding: 60px 0;
  background: #fff;
  position: relative;
}

/* Remove grey separators like monogram */
body.page-thermador main::before,
body.page-thermador .features-block::before,
body.page-thermador .features-block::after,
body.page-thermador .portfolio-block::before,
body.page-thermador .portfolio-block::after,
body.page-thermador .reviews-block::before,
body.page-thermador .reviews-block::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Aggressive reset to remove any grey separators */
body.page-thermador main,
body.page-thermador section,
body.page-thermador .portfolio-block,
body.page-thermador .reviews-block {
  background: #fff !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

body.page-thermador .section-divider,
body.page-thermador .section-divider::before,
body.page-thermador .section-divider::after {
  display: none !important;
  content: none !important;
}

/* Kill separators specifically between portfolio and reviews */
body.page-thermador .portfolio-block + .reviews-block {
  border-top: 0 !important;
  box-shadow: none !important;
  background: #fff !important;
}

body.page-thermador .portfolio-block + .reviews-block::before,
body.page-thermador .portfolio-block + .reviews-block::after {
  content: none !important;
  display: none !important;
}

body.page-thermador .reviews-block > .container,
body.page-thermador .reviews-block .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

body.page-thermador .reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

body.page-thermador .reviews-subtitle {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 0;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* Reviews carousel styles */
body.page-thermador .reviews-carousel {
  overflow: hidden;
  position: relative;
  margin-top: 32px;
}

body.page-thermador .reviews-carousel-track {
  display: flex;
  animation: reviews-carousel-move 35s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

body.page-thermador .review-carousel-slide {
  flex: 0 0 350px;
  max-width: 350px;
  margin-right: 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.page-thermador .review-carousel-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

body.page-thermador .review-carousel-rating {
  color: #FFB400;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

body.page-thermador .review-carousel-text {
  margin: 0 0 10px 0;
  color: #333;
  line-height: 1.45;
  font-style: italic;
}

body.page-thermador .review-carousel-author {
  color: #555;
  font-size: 0.95rem;
}

/* Reviews animation */
@keyframes reviews-carousel-move {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-5 * (350px + 20px)), 0, 0);
  }
}

/* Pause animation on hover */
body.page-thermador .reviews-carousel:hover .reviews-carousel-track {
  animation-play-state: paused;
}

/* Responsive adjustments for reviews */
@media (max-width: 768px) {
  body.page-thermador .reviews-block {
    padding: 40px 0;
  }
  
  body.page-thermador #reviews-thermador .reviews-carousel-track {
    animation: reviews-carousel-move 14s linear infinite !important;
  }
}

@media (max-width: 480px) {
  body.page-thermador .reviews-block {
    padding: 32px 0;
  }
  
  body.page-thermador #reviews-thermador .reviews-carousel-track {
    animation: reviews-carousel-move 10s linear infinite !important;
  }
}

/* ===== ISSUES SECTION ===== */
body.page-thermador .issues-section {
  padding: 60px 0;
  background: #fff;
}

body.page-thermador .issues-header {
  text-align: center;
  margin-bottom: 48px;
}

body.page-thermador .issues-subtitle {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

body.page-thermador .issue-category {
  margin-bottom: 48px;
}

body.page-thermador .category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  text-align: left;
}

body.page-thermador .category-title svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #2f6bff;
  stroke: currentColor;
}

body.page-thermador .issues-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  body.page-thermador .issues-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1200px) {
  body.page-thermador .issues-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

body.page-thermador .issue-card {
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
  cursor: pointer;
}

body.page-thermador .issue-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  border-color: #2f6bff;
}

body.page-thermador .issue-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

body.page-thermador .issue-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

body.page-thermador .issue-card p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

/* Issues CTA styles */
body.page-thermador .issues-cta {
  text-align: center;
  margin-top: 48px;
  padding: 40px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

body.page-thermador .issues-cta p {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  font-weight: 600;
  line-height: 1.4;
}

body.page-thermador .issues-cta .btn-book {
  display: inline-block;
  background: linear-gradient(90deg, #FF6600, #FF9900);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 25px;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

body.page-thermador .issues-cta .btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
  background: linear-gradient(90deg, #FF5500, #FF8800);
}

/* ===== HOW THE REPAIR WORKS ===== */
body.page-thermador .wf-how {
  margin: 24px 0 48px;
}

body.page-thermador .wf-how .section-title {
  margin: 0 0 28px;
  text-align: center;
  line-height: 1.1;
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 46px);
  color: #1a1a1a;
}

body.page-thermador .wf-how .how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: clamp(14px, 2.2vw, 24px);
}

body.page-thermador .wf-how .how-item {
  background: #fff;
  border-radius: 18px;
  padding: clamp(18px, 1.8vw, 24px);
  box-shadow: 0 12px 32px rgba(23, 41, 80, 0.08);
}

body.page-thermador .wf-how .how-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

body.page-thermador .wf-how .how-num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 800 18px/1 "Montserrat", system-ui, -apple-system, sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #FF6600 0%, #FF9900 100%);
  box-shadow: 0 8px 18px rgba(255, 102, 0, 0.3);
}

body.page-thermador .wf-how .how-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.2;
  color: #111827;
}

body.page-thermador .wf-how .how-text {
  margin: 8px 0 0;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.45;
  color: #374151;
}

@media (max-width: 840px) {
  body.page-thermador .wf-how .how-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ Styling (wf-faq) ===== */
body.page-thermador .wf-faq {
    margin: clamp(40px, 6vh, 72px) 0;
}

body.page-thermador .wf-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

body.page-thermador .wf-title {
    font-size: clamp(32px, 4vw, 48px) !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    text-align: center !important;
    margin-bottom: 16px !important;
    line-height: 1.1 !important;
    font-family: 'Montserrat', sans-serif;
}

body.page-thermador .wf-grid {
    display: grid;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

body.page-thermador .wf-item {
    background: #ffffff;
    border: 1px solid #eef1f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

body.page-thermador .wf-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #2f6bff;
}

body.page-thermador .wf-btn {
    width: 100%;
    padding: 16px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1a1a1a;
    line-height: 1.3;
    transition: all 0.2s ease;
    min-height: 60px;
}

body.page-thermador .wf-btn:hover {
    background: #ffffff;
    color: #2f6bff;
}

body.page-thermador .wf-btn span {
    flex: 1;
    margin-right: 16px;
    padding-right: 8px;
}

body.page-thermador .wf-chev {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}



body.page-thermador .wf-item.is-open .wf-chev {
    transform: rotate(180deg);
}

body.page-thermador .wf-panel {
    padding: 0 24px 20px;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

body.page-thermador .wf-item.is-open .wf-panel {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Desktop: two-column FAQ layout */
@media (min-width: 992px) {
    body.page-thermador .wf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ===== Service Area Section (match monogram) ===== */
body.page-thermador .service-area-section {
    margin: clamp(40px, 6vh, 72px) 0;
    padding: 40px 0;
}

body.page-thermador .service-area-header {
    text-align: center;
    margin-bottom: 40px;
}

body.page-thermador .service-area-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 32px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

body.page-thermador .service-area-content {
    max-width: 1000px;
    margin: 0 auto;
}

body.page-thermador .service-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

body.page-thermador .service-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef1f5;
    transition: all 0.2s ease;
}

body.page-thermador .service-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #2f6bff;
}

body.page-thermador .feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 4px;
}

body.page-thermador .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-family: 'Montserrat', sans-serif;
}

body.page-thermador .feature-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

body.page-thermador .service-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef1f5;
}

body.page-thermador .cta-content {
    max-width: 500px;
    margin: 0 auto;
}

body.page-thermador .service-cta .cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

body.page-thermador .service-cta .cta-subtitle {
    color: #666;
    margin: 0 0 32px 0;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.5;
}

body.page-thermador .service-cta .btn-book {
    display: inline-block;
    background: linear-gradient(90deg, #FF6600, #FF9900);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    padding: 18px 36px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.page-thermador .service-cta .btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    background: linear-gradient(90deg, #FF5500, #FF8800);
}

/* Responsive design */
@media (max-width: 1200px) {
    body.page-thermador .service-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    body.page-thermador .service-area-section {
        margin: 32px 16px;
        padding: 32px 20px;
    }
    
    body.page-thermador .service-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    body.page-thermador .service-feature {
        padding: 20px;
    }
    
    body.page-thermador .service-cta {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    body.page-thermador .service-cta .cta-title {
        font-size: 1.6rem;
    }
    
    body.page-thermador .service-cta .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    
    body.page-thermador .service-cta .btn-book {
        font-size: 1.1rem;
        padding: 16px 28px;
    }
}

/* ===== Footer (match monogram) ===== */
body.page-thermador .site-footer {
    background: #ffffff;
    color: #1a1a1a;
    padding: 20px 0 15px;
    margin-top: 40px;
    text-align: center;
}

body.page-thermador .footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
    text-align: center;
}

body.page-thermador .footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

body.page-thermador .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

body.page-thermador .footer-phone {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

body.page-thermador .footer-phone:hover {
    color: #FF6600;
    transform: translateY(-2px);
}

body.page-thermador .footer-email {
    color: #666;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

body.page-thermador .footer-email:hover {
    color: #FF6600;
    transform: translateY(-2px);
}

body.page-thermador .footer-copy {
    padding-top: 15px;
}

body.page-thermador .footer-copy p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    body.page-thermador .site-footer {
        padding: 30px 0 20px;
        margin-top: 60px;
    }
    
    body.page-thermador .footer-main {
        gap: 25px;
    }
    
    body.page-thermador .footer-phone {
        font-size: 1.2rem;
    }
    
    body.page-thermador .footer-email {
        font-size: 1rem;
    }
    
    body.page-thermador .footer-contact-info {
        gap: 14px;
    }
}

/* ===== Sticky CTA (match monogram) ===== */
body.page-thermador .sticky-cta {
    display: none;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 1000;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.2px;
    padding: 14px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #FF7A1A 0%, #FF6600 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(255, 102, 0, 0.28);
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    body.page-thermador .sticky-cta {
        display: none;
    }
    
    body.page-thermador .sticky-cta.is-visible {
        display: block;
    }
}

body.page-thermador.modal-open .sticky-cta {
    display: none !important;
}
