* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-family: "Roboto", sans-serif;
  scroll-padding-top: 120px;
}

body {
  overflow-x: hidden;
}

li {
  list-style: none;
}

h1 {
  font-size: 2.2rem;
  color: var(--textColor);
  margin-bottom: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1rem;
  color: var(--textColor);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.impressum-content h2,
.datenschutz-content h2 {
  margin-top: 3.2rem;
}

h3 {
  font-size: 0.88rem;
  color: var(--textColor);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

a {
  text-decoration: none;
}

.nav-logo {
  transition: all 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo-img {
  width: 50px;
  transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 0.2rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: var(--whiteBackground);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

:root {
  --textColor: #282828;
  --grayColor: #cccccc;
  --whiteColor: #f5f5dc;
  --whiteBackground: #fff;
  --orangeColor: #a66326;
  --lightBrownColor: #6f4e37;
  --darkBrownColor: #653b10;
  --secondary--color-1: #32271f;

  /* Spacing Scale */
  --spacing-xs: 0.4rem;
  --spacing-sm: 0.6rem;
  --spacing-md: 0.8rem;
  --spacing-lg: 1.2rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 2.4rem;
  --spacing-3xl: 3.2rem;
  --spacing-4xl: 4rem;

  /* Typography Scale */
  --font-h1: 2.8rem;
  --font-h2: 1.4rem;
  --font-h3: 1.2rem;
  --font-body: 0.88rem;
  --font-small: 0.72rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: var(--spacing-xl);
  margin-right: var(--spacing-xl);
  padding-bottom: var(--spacing-md);
  padding-top: var(--spacing-md);
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition:
    transform 0.24s ease,
    opacity 0.18s ease;
  transition:
    transform 0.24s ease,
    opacity 0.18s ease;
  transform-origin: center;
  will-change: transform, opacity;
  backface-visibility: hidden;
  background-color: var(--textColor);
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 1rem;
}

.nav-item {
  margin-left: 0;
}

.nav-actions {
  margin-left: auto;
}

.nav-mobile-only {
  display: none;
}

.nav-link {
  font-family:
    DM Sans,
    sans-serif;
  font-size: 0.8rem;
  font-weight: 550;
  color: var(--textColor);
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--orangeColor);
  transform: translateY(-2px);
}

@media only screen and (max-width: 768px) {
  .nav-link,
  .nav-link:hover,
  .nav-link:active {
    transform: none;
  }

  .nav-link::after,
  .nav-link:hover::after,
  .nav-link:active::after {
    width: 0;
  }

  .button1,
  .button1:hover,
  .button1:active {
    transform: none;
  }

  .nav-link,
  .button1 {
    touch-action: manipulation;
  }

  .nav-menu {
    position: fixed;
    left: 0;
    top: 3.5rem;
    z-index: 30;
    flex-direction: column;
    background-color: var(--whiteBackground);
    transform: translate3d(-105%, 0, 0);
    will-change: transform;
    pointer-events: none;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
    transition: transform 0.28s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-link {
    color: var(--textColor);
  }

  .nav-menu.active {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .nav-item {
    margin: 1rem 0;
  }

  .nav-actions {
    display: none;
  }

  .nav-mobile-only {
    display: list-item;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.button1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  padding: 0.48rem 1.2rem;
  font-size: 0.8rem;
  border-radius: 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: none;
  background-color: transparent;
  color: var(--secondary--color-1);
  border: 2px solid var(--secondary--color-1);
}

.nav-mobile-only .button1 {
  background-color: transparent;
  color: var(--secondary--color-1);
  border: 2px solid var(--secondary--color-1);
}

.nav-mobile-only .button1:hover {
  background-color: var(--secondary--color-1);
  color: var(--whiteBackground);
  opacity: 1;
}

.button1:hover {
  transform: none;
  opacity: 0.85;
}

.button1 .material-symbols-outlined {
  font-size: 0.56rem;
  line-height: 1;
  vertical-align: middle;
}

.container {
  width: 100%;
  border-radius: 0.2rem;
  margin-top: 0;
  margin-bottom: 2.4rem;
  padding-bottom: 0;
}
.kleinspeicherofen-section,
.speicheröfen-kachelöfen-section,
.cheminée-section,
.kleinspeicherofen-section,
.backofen-feuerstelle-section,
.kochherd-speicherherd-section {
  background-color: var(--secondary--color-1);
  color: var(--whiteColor);
  padding: 3.2rem 1rem;
  display: flex;
  flex-direction: column;
}
.kleinspeicherofen-section p,
.speicheröfen-kachelöfen-content p,
.cheminée-content p,
.backofen-feuerstelle-content p,
.kochherd-speicherherd-content p {
  color: var(--whiteColor);
  text-align: left;
  max-width: 16rem;
  font-size: 0.8rem;
  margin: 0 auto;
  line-height: 1.6;
  padding: 0;
}
.kleinspeicherofen-section p {
  margin-top: 1.6rem;
}

.kleinspeicherofen-section li {
  text-align: left;
  width: 100%;
  max-width: 16rem;
  margin: 0 auto;
}

.kleinspeicherofen-content {
  width: 100%;
  max-width: 16rem;
  margin: 0 auto;
  text-align: left;
}

.kleinspeicherofen-content h2 {
  text-align: center;
}

.kleinspeicherofen-data {
  width: 100%;
  max-width: 16rem;
  margin: 1.6rem auto 0;
}

.kleinspeicherofen-data h3 {
  color: var(--whiteColor);
  text-align: left;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.kleinspeicherofen-data ul {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.kleinspeicherofen-data li {
  color: var(--whiteColor);
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.kleinspeicherofen-section,
.speicheröfen-kachelöfen-content,
.cheminée-content,
.backofen-feuerstelle-content,
.kochherd-speicherherd-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h2 {
  color: var(--textColor);
  font-size: 1.4rem;
  margin-bottom: 0rem;
}

.gallery-section {
  padding: 2rem 0;
  background-color: var(--whiteBackground);
}

.gallery-section h2 {
  text-align: center;
  font-size: 1.6rem;
  color: var(--textColor);
  margin-bottom: 1.2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.8rem;
  padding: 0 1.2rem;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: auto;
  max-width: 250px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.kleinspeicherofen-section h2 {
  margin-bottom: 1.4rem;
}

.divider {
  display: block;
  width: 100%;
  max-width: 16rem;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.4);
  margin: 1.2rem auto;
}

.light-section .divider {
  background-color: rgba(0, 0, 0, 0.4);
}

.dark-section .divider {
  background-color: rgba(255, 255, 255, 0.4);
}

.gallery-section .divider {
  margin: 1.2rem auto;
}

.footer {
  background-color: #ffffff;
  padding: var(--spacing-lg) var(--spacing-sm);
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-left: 2rem;
}

.footer-main {
  width: 100%;
}

.footer-main .container {
  width: 100%;
  padding: 0;
  margin: 0;
}

.footer-divider {
  width: 100%;
  max-width: 16rem;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.3);
}

.footer-grid {
  width: 100%;
  max-width: 16rem;
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  margin: 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.footer-column:last-child {
  padding-bottom: var(--spacing-xl);
  border-bottom: none;
}

.footer-company {
  width: 100%;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: var(--spacing-md);
}

.footer-company h3 {
  font-size: 1.6rem;
  color: #282828;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-company-desc {
  font-size: 0.88rem;
  color: #555555;
  margin: 0;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  font-weight: 400;
  max-width: 16rem;
}

.footer-contact-quick {
  display: none;
}

.footer-column h4 {
  font-size: 0.8rem;
  color: #282828;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-column li {
  font-size: 0.72rem;
  color: #555555;
}

.footer-column a {
  color: #555555;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-column a:hover {
  color: var(--orangeColor);
}

.footer-bottom {
  width: 100%;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}

.footer-bottom p {
  font-size: 0.64rem;
  color: #777777;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 0.96rem;
}

.footer-column li {
  font-size: 0.84rem;
}

.footer-column a {
  font-size: 0.84rem;
}

.contact-section,
.überMich-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.überMich-section img {
  width: 100%;
  height: auto;
}

.contact-content {
  margin-top: 6.8rem;
  padding: 0 0.8rem;
}

.contact-section h2 {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-content ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  margin-top: 1.2rem;
  width: 100%;
  max-width: 600px;
}

.contact-content li {
  font-size: 1rem;
  color: var(--whiteBackground);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
  padding: 0.8rem 1rem;
  width: 100%;
}

.contact-content li:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(12px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.contact-content li svg {
  width: 40px;
  height: 40px;
  min-width: 40px;
  flex-shrink: 0;
}

.contact-content li a {
  text-decoration: none;
  color: var(--whiteBackground);
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-content li a:hover {
  opacity: 1;
  color: var(--whiteColor);
}

.contact-content li .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 0.8rem;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}

iframe {
  margin-top: 2.8rem;
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 0.4rem;
  margin-bottom: 5.6rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Dark Section Styles */
.light-section {
  background-color: var(--whiteBackground);
  color: var(--textColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.32rem;
}

.impressum-section,
.datenschutz-section {
  padding-top: 4rem;
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section p {
  color: var(--whiteColor);
}

.dark-section {
  background-color: var(--secondary--color-1);
  background: linear-gradient(
    135deg,
    var(--secondary--color-1) 0%,
    #3d2817 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dark-section .button1 {
  background-color: transparent;
  color: var(--whiteColor);
  border: 2px solid var(--whiteColor);
}

.dark-section .button1:hover {
  background-color: var(--whiteColor);
  color: var(--secondary--color-1);
  opacity: 1;
}

.light-section .button1 {
  background-color: transparent;
  color: var(--secondary--color-1);
  border: 2px solid var(--secondary--color-1);
}

.light-section .button1:hover {
  background-color: var(--secondary--color-1);
  color: var(--whiteBackground);
  opacity: 1;
}

.light-section .divider {
  background-color: rgba(0, 0, 0, 0.4);
}

.dark-section .divider {
  background-color: rgba(255, 255, 255, 0.3);
}

/* ===== LOADING BAR ===== */
.loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--orangeColor),
    var(--lightBrownColor),
    var(--orangeColor)
  );
  animation: loadingBarAnimation 2s ease-in-out;
  z-index: 999;
  box-shadow: 0 0 10px rgba(166, 99, 38, 0.5);
}

@keyframes loadingBarAnimation {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

/* ===== LIGHTBOX STYLES ===== */

.gallery-image {
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-image:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(4px);
}

.lightbox-modal.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lightbox-image {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  animation: slideUpFade 0.4s ease;
  border-radius: 0.4rem;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 1001;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--orangeColor);
  transform: scale(1.2);
}

.lightbox-nav {
  position: absolute;
  bottom: 30px;
  display: flex;
  gap: 2rem;
  z-index: 1001;
}

.lightbox-prev,
.lightbox-next {
  padding: 12px 18px;
  font-size: 24px;
  color: #f1f1f1;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid #f1f1f1;
  cursor: pointer;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: var(--orangeColor);
  border-color: var(--orangeColor);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(166, 99, 38, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Lightbox */
@media only screen and (max-width: 768px) {
  .dark-section,
  .speicheröfen-kachelöfen-section,
  .cheminée-section,
  .kleinspeicherofen-section,
  .backofen-feuerstelle-section,
  .kochherd-speicherherd-section {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 30px;
  }

  .lightbox-image {
    max-width: 95%;
    max-height: 80vh;
  }

  .lightbox-nav {
    bottom: 20px;
    gap: 1rem;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 10px 15px;
    font-size: 20px;
  }
}

/* ============================================================= */
/* PRODUCT PAGES: DESKTOP & TABLET RESPONSIVE DESIGN */
/* ============================================================= */

/* ===== TABLET: 768px ===== */
@media only screen and (min-width: 768px) {
  :root {
    --spacing-container-v: clamp(3.75rem, 8vw, 6.25rem);
    --spacing-container-h: clamp(1.25rem, 3vw, 2.5rem);
    --container-gap: clamp(3rem, 6vw, 4rem);
  }

  .navbar {
    margin-left: var(--spacing-container-h);
    margin-right: var(--spacing-container-h);
    padding-bottom: clamp(0.4rem, 0.6vw, 0.6rem);
    padding-top: clamp(0.4rem, 0.6vw, 0.6rem);
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
  }

  .nav-link {
    font-size: clamp(0.75rem, 0.9vw, 0.85rem);
  }

  .nav-logo-img {
    width: clamp(40px, 8vw, 45px);
  }

  .button1 {
    padding: clamp(0.35rem, 0.5vw, 0.45rem) clamp(0.9rem, 1.5vw, 1rem);
    font-size: clamp(0.72rem, 0.85vw, 0.78rem);
  }

  /* Product Section Header */
  .speicheröfen-kachelöfen-section,
  .cheminée-section,
  .kleinspeicherofen-section,
  .backofen-feuerstelle-section,
  .kochherd-speicherherd-section {
    padding-left: var(--spacing-container-h);
    padding-right: var(--spacing-container-h);
    padding-top: clamp(3.75rem, 8vw, 6rem);
    padding-bottom: clamp(3.75rem, 8vw, 6rem);
  }

  /* Product Content */
  .speicheröfen-kachelöfen-content,
  .cheminée-content,
  .backofen-feuerstelle-content,
  .kochherd-speicherherd-content {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }

  .speicheröfen-kachelöfen-section h2,
  .cheminée-section h2,
  .kleinspeicherofen-section h2,
  .backofen-feuerstelle-section h2,
  .kochherd-speicherherd-section h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  }

  .speicheröfen-kachelöfen-content p,
  .cheminée-content p,
  .backofen-feuerstelle-content p,
  .kochherd-speicherherd-content p {
    max-width: 100%;
    font-size: clamp(0.88rem, 1vh, 1rem);
    font-weight: 400;
    line-height: 1.8;
  }

  /* Gallery Section */
  .gallery-section {
    padding: clamp(3rem, 6vw, 4rem) var(--spacing-container-h);
  }

  .gallery-section h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: clamp(1.5rem, 2vw, 2rem);
  }

  /* Gallery Grid */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 2vw, 2rem);
    padding: 0 var(--spacing-container-h);
    max-width: 1280px;
    margin: 0 auto;
  }

  .gallery img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 0.6rem;
  }
}

/* ===== DESKTOP: 1024px ===== */
@media only screen and (min-width: 1024px) {
  :root {
    --spacing-container-v: clamp(4rem, 9vw, 6.25rem);
    --spacing-container-h: clamp(2rem, 4vw, 3rem);
    --container-gap: clamp(3.5rem, 7vw, 4.5rem);
  }

  .navbar {
    margin-left: 1.2rem;
    margin-right: 0.8rem;
    padding-bottom: 0.8rem;
    padding-top: 0.6rem;
    gap: 0;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .nav-logo-img {
    width: 50px;
  }

  .button1 {
    padding: 0.48rem 1.2rem;
    font-size: 0.8rem;
  }

  /* Product Section - Hero Layout */
  .speicheröfen-kachelöfen-section,
  .cheminée-section,
  .kleinspeicherofen-section,
  .backofen-feuerstelle-section,
  .kochherd-speicherherd-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: clamp(3.5rem, 8vw, 5.5rem);
    padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
  }

  /* Alternate layout for even sections */
  .backofen-feuerstelle-section,
  .kochherd-speicherherd-section {
    direction: rtl;
  }

  .backofen-feuerstelle-section > *,
  .kochherd-speicherherd-section > * {
    direction: ltr;
  }

  /* Product Heading */
  .speicheröfen-kachelöfen-section h2,
  .cheminée-section h2,
  .kleinspeicherofen-section h2,
  .backofen-feuerstelle-section h2,
  .kochherd-speicherherd-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  }

  /* Product Content */
  .speicheröfen-kachelöfen-content,
  .cheminée-content,
  .backofen-feuerstelle-content,
  .kochherd-speicherherd-content {
    text-align: left;
    max-width: 600px;
  }

  .speicheröfen-kachelöfen-section p,
  .cheminée-section p,
  .kleinspeicherofen-section p,
  .backofen-feuerstelle-section p,
  .kochherd-speicherherd-section p {
    max-width: 100%;
    text-align: left;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.9;
  }

  .kleinspeicherofen-section p {
    max-width: 600px;
    width: 100%;
    margin-top: 0;
  }

  .kleinspeicherofen-section li {
    max-width: 600px;
  }

  .kleinspeicherofen-content {
    max-width: 600px;
  }

  .kleinspeicherofen-data {
    max-width: 600px;
  }

  .kleinspeicherofen-data h3 {
    font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  }

  .kleinspeicherofen-data li {
    font-size: clamp(0.98rem, 1.1vw, 1.1rem);
    line-height: 1.9;
  }

  /* Product Image */
  .speicheröfen-kachelöfen-section img,
  .cheminée-section img,
  .kleinspeicherofen-section img,
  .backofen-feuerstelle-section img,
  .kochherd-speicherherd-section img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 0.8rem;
  }

  /* Gallery - 3 Column Layout */
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(2rem, 3vw, 2.5rem);
    padding: 0 clamp(2rem, 4vw, 4rem);
    max-width: 1280px;
  }

  .gallery img {
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 0.8rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  }

  /* Gallery Section */
  .gallery-section {
    padding: clamp(4rem, 9vw, 6rem) var(--spacing-container-h);
  }

  .gallery-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: clamp(2rem, 3vw, 3rem);
  }

  /* Dividers */
  .divider {
    margin: clamp(1.5rem, 2.5vw, 2rem) auto;
  }

  .gallery-section .divider {
    margin-bottom: clamp(2rem, 3vw, 3rem);
  }

  /* Footer Responsive Grid */
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    gap: clamp(2rem, 4vw, 4rem);
  }

  .footer-company {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-column {
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: clamp(1.5rem, 2vw, 2rem);
    padding-top: clamp(1.5rem, 2vw, 2rem);
  }

  .footer-column:last-child {
    border-right: none;
  }
}

@media only screen and (min-width: 1440px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: clamp(2.5rem, 4vw, 3rem);
  }

  .speicheröfen-kachelöfen-section,
  .cheminée-section,
  .kleinspeicherofen-section,
  .backofen-feuerstelle-section,
  .kochherd-speicherherd-section {
    gap: clamp(4rem, 6vw, 6rem);
  }
}
