/* =================== Variablen =================== */
:root {
  --color-bg: #000; /* Hintergrundfarbe */
  --color-text: #fff; /* Standard Schriftfarbe */
  --color-accent: #f39200; /* Messingfarbe für Links & Hover */
  --font-primary: 'Audiowide', sans-serif; /* Hauptschrift */
  --font-size-base: 16px;
  --header-height: 90px; /* Standardhöhe Header */
  --header-scroll-height: 70px; /* Header Höhe beim Scrollen */
}

/* =================== Schriftart laden =================== */
@font-face {
  font-family: 'Audiowide';
  src: url('fonts/Audiowide-Regular.woff2') format('woff2'),
       url('fonts/Audiowide-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* =================== Grundlayout =================== */
html, body {
  margin: 0;
  padding: 0;
  padding-top: 40px; /*damit header slider nicht verdeckt */
  box-sizing: border-box;
  width: 100%;
  
  overflow-x: hidden;
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-bg);
}

body {
  display: flex;
  flex-direction: column;
  
}


h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  font-family: var(--font-primary);
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s;
}

p {
  font-family: var(--font-secondary, sans-serif);
}

a:hover {
  color: var(--color-accent);
}

/* =================== Container =================== */
.container {
  width: 100%;
  max-width: 1400px; /*Breite für den Hauptbereich*/
  min-height: 85vh;
  flex: 1; /* nimmt den verfügbaren Platz ein */
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  
  .container {
    max-width: 100%;          /* volle Breite */
    padding: 0 0.5rem;        /* kleiner horizontaler Rand */
  }
}

/* =================== Spacer =================== */
.spacer {
  height: 80px;
}


/* =================== Header =================== */
header {
  position: fixed; /* fixed für zuverlässig oben */
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg);
  z-index: 9999; /* immer über Content */
  transition: height 0.3s, padding 0.3s;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;          /* ⭐ DAS fehlt */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  height: var(--header-height);
  box-sizing: border-box;
  transition: height 0.3s;
}

/* Shrink beim Scrollen */
header.shrink .header-container {
  height: var(--header-scroll-height);
}
header .logo img {
  max-height: 80px;
  transition: max-height 0.3s;
}
header.shrink .logo img {
  max-height: 60px;
}

/* Desktop Navigation */
.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-desktop a {
  color: var(--color-text);
  transition: color 0.3s;
}
.nav-desktop a:hover {
  color: var(--color-accent);
}

/* Burger Menü */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
.burger span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  display: block;
  transition: all 0.3s;
}

/* Sprachswitch */
.language-switch {
  display: flex;
  gap: 0.5rem;
}

#lang-de.active,
#lang-en.active {
  opacity: 1;
  font-weight: bold;
  color: var(--color-accent);
}
/* =================== ANIMATION =================== */
/* =================== ANIMATION =================== */
/* =================== ANIMATION =================== */

/* =================== INDEX ANIMATIONEN =================== */

/* Basis */
.animate {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

/* LEFT */
.animate.left {
  transform: translateX(-150px);
}

/* RIGHT */
.animate.right {
  transform: translateX(150px);
}

/* TITLE */
.animate.title {
  transform: translateY(-30px);
}

/* TEXT */
.animate.text {
  transform: translateY(-20px);
}

/* VISIBLE */
.animate.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Titel */
.product h2.animate {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s ease-out;
}

/* Beschreibung */
.product p.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

/* sichtbar */
.product h2.animate.show,
.product p.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Button Startzustand */
.product button.animate {
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.4s ease-out;
}

/* Button sichtbar */
.product button.animate.show {
  opacity: 1;
  transform: scale(1);
}


/* =================== ABOUT ANIMATIONEN =================== */


/* Basis */
.a-animate {
  opacity: 0;
  transition: all 0.8s ease-out;
  will-change: transform, opacity;
}

/* von links */
.a-left {
  transform: translateX(-120px);
}

/* von rechts */
.a-right {
  transform: translateX(120px);
}

/* fade only */
.a-fade {
  transform: translateY(20px);
}

/* sichtbar */
.a-show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* =================== SKILLS ANIMATION =================== */

.skill-img,
.skill h3,
.skill p {
  opacity: 0;
}

/* Bild Zoom Start */
.skill-img {
  transform: scale(1.2);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* Titel */
.skill h3 {
  transform: translateY(-20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Text */
.skill p {
  transform: translateY(-15px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* ACTIVE STATE */
.skill.show .skill-img,
.skill.show h3,
.skill.show p {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Bild bleibt Zoom-Effekt */
.skill.show .skill-img {
  transform: scale(1);
}

/* =================== CTA ANIMATION =================== */

.about-cta h2,
.about-cta .cta-button {
  opacity: 0;
  transform: scale(0.7);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* aktiv */
.about-cta.show h2 {
  opacity: 1;
  transform: scale(1);
}

.about-cta.show .cta-button {
  opacity: 1;
  transform: scale(1);
}

/* Button leicht später */
.about-cta .cta-button {
  transition-delay: 0.4s;
}

/* =================== Detailseiten ANIMATION =================== */
/* =================== Detailseiten ANIMATION =================== */


/* =================== HIGHLIGHTS ANIMATION =================== */

.product-highlights h2,
.highlight img,
.highlight p {
  opacity: 0;
}

/* Titel */
.product-highlights h2 {
  transform: translateY(-20px);
  transition: transform 0.7s ease, opacity 0.7s ease;
}

/* Icon */
.highlight img {
  transform: scale(0.5);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Text */
.highlight p {
  transform: translateY(15px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* ACTIVE STATE */
.product-highlights.show h2 {
  opacity: 1;
  transform: translateY(0);
}

.highlight.show img {
  opacity: 1;
  transform: scale(1);
}

.highlight.show p {
  opacity: 1;
  transform: translateY(0);
}

/* =================== GALLERY FADE =================== */

.photogallery {
  opacity: 0;
  transition: opacity 4s ease;
  will-change: opacity;
}

.photogallery.show {
  opacity: 1;
}




/*-----------------------------------------------------------*/
/*--------------------- INDEX -------------------------------*/
/*-----------------------------------------------------------*/




/* =================== Slider =================== */
.slider {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

/* Motion Blur */
.slides.moving {
    filter: blur(3px);
}

.slide {
    position: relative;
    flex: 0 0 100%;
    height: 50vh;
    overflow: hidden;
}

/* Background Zoom */
.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: slowZoom 10s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Content Layer */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: var(--color-text);
}

/* TEXT (nur 1 System!) */
.slide-content h2 {
    font-size: 2rem;
    text-transform: uppercase;
    background: rgba(0,0,0,0.3);
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* Mobile */
@media (max-width: 768px) {
    .slider {
        height: 30vh;
    }
}

/* =================== Title & Description Section =================== */
.section-title-desc {
  padding: 3rem 1rem;           /* Abstand oben/unten, Seitenpadding */
  text-align: center;            /* Überschrift & Text zentrieren */
  background-color: var(--color-bg); /* optional: gleiche Hintergrundfarbe */
}

.section-title-desc h1 {
  text-transform: uppercase;     /* wie alle Überschriften */
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-title-desc p {
  font-size: 1rem;
  max-width: 800px;              /* Lesbarkeit auf Desktop */
  margin: 0 auto;
  line-height: 1.4;
}

/* Desktop: Mobile-Variante ausblenden */
.title-mobile { display: none; }

/* Mobile: Desktop-Variante ausblenden, Mobile-Variante zeigen */
@media (max-width: 768px) {
  .title-desktop { display: none; }
  .title-mobile { display: block; }

  .section-title-desc h1 {
    font-size: 1.5rem;       /* kleinere Überschrift */
    line-height: 1.3;        /* engerer Zeilenabstand */
    word-break: break-word;   /* lange Wörter umbrechen */
    padding: 0 0.5rem;       /* kleiner horizontaler Abstand */
  }

  .section-title-desc p {
    font-size: 1rem;          /* kleinere Textgröße */
    padding: 0 0.5rem;        /* Rand anpassen */
    line-height: 1.4;
   
  }
}

/* =================== Produktgrid =================== */
.product-grid {
  display: grid;
  gap: 2rem;
  padding: 2rem;
}
.product {
  text-align: center;
}
.product-img {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.product h2 {
  color: var(--color-text);
}
.product p {
  color: var(--color-text);
}

/* Produktbild quadratisch */
.product-img {
  width: 100%;
  padding-top: 100%; /* Quadrat */
  background-size: cover;
  background-position: center;
  cursor: pointer;
  
}

.product-360 {
    width: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}


.product button {
  background-color: var(--color-accent);
  border: none;
  color: var(--color-bg);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.product button:hover {
  background-color: #a37b4e;
}

/* =================== About Us =================== */

/* =================== ABOUT HERO =================== */
.about-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.about-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;

  opacity: 0 !important;   /* erzwingt hidden */
  z-index: 1;
  transform: scale(1);
}

/* nur der aktive sichtbar */
.about-slide.active {
  opacity: 1 !important;
  z-index: 2;
  animation: aboutZoom 10s ease-in-out infinite alternate;
}

/* GANZ WICHTIG: KEINE transition mehr */
.about-slide {
  transition: none !important;
}

/* Smooth Zoom IN + OUT */
@keyframes aboutZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* =================== Hero BLACK FADE OVERLAY =================== */
.about-fade {
  position: absolute;
  inset: 0;
  background: black;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.8s ease;
}

.about-fade.active {
  opacity: 1;
}



/* =================== ABOUT Beschreibung =================== */
.about-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 2.5rem;
  color: white;
  background: rgba(0,0,0,0.3);
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
}

/* Mobile */
@media (max-width: 768px) {
  .about-hero { height: 40vh; }
  .about-hero-content h1 { font-size: 1.8rem; }
}


.about-person {
  padding: 3rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-image {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
}

/* =================== SKILLS =================== */

.skills {
  padding: 3rem 0;
  text-align: center;
}

.skills h2 {
  margin-bottom: 2rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.skill {
  text-align: center;
}

.skill-img {
  width: 100%;
  padding-top: 75%;
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {

  .about-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    height: 40vh;
  }
}

/* =================== ABOUT GRID =================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 3rem 1rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 0.5rem;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* =================== SKILLS =================== */
.skills-section {
  padding: 3rem 1rem;
  text-align: center;
}

.skills-section h2 {
  margin-bottom: 2rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.skill img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.skill h3 {
  margin-bottom: 0.5rem;
}

.skill p {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* =================== CTA =================== */
.about-cta {
  text-align: center;
  padding: 3rem 1rem;
}

.about-cta h2 {
  margin-bottom: 2rem;
}

/* =================== MOBILE =================== */
@media (max-width: 768px) {

  .about-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

}

/* =================== Footer =================== */
footer {
  display: flex;                         /* Desktop: horizontal */
  justify-content: space-between;        /* links, mitte, rechts */
  align-items: center;
  padding: 1rem;
}

/* Links: Impressum & Datenschutz */
footer .footer-links {
  display: flex;
  gap: 1rem;
}

/* Rechts: Follow Us */
footer .footer-follow {
  display: flex;
  gap: 1rem;
}

/* Mitte: Copyright */
footer .footer-copy {
  text-align: center;
  flex: 1;                               /* nimmt verfügbaren Platz ein */
  white-space: nowrap;                    /* verhindert Umbruch */
  overflow: hidden;                       /* optional: falls Text zu lang */
  text-overflow: ellipsis;                /* optional: Überlauf mit ... */
}

/* Links hover */
footer a:hover {
  color: var(--color-accent);
}

/* =================== Mobile Footer =================== */
@media (max-width: 768px) {
  footer {
    flex-direction: column;              /* vertikal anordnen */
    align-items: center;                 /* zentriert */
    gap: 0.5rem;                         /* Abstand zwischen Elementen */
  }

  footer .footer-follow,
  footer .footer-links,
  footer .footer-copy {
    width: auto;                         /* natürliche Breite */
    justify-content: center;
    text-align: center;
    flex: none;                           /* nicht wachsen */
    white-space: normal;                  /* Umbruch wieder erlaubt */
  }

  footer .footer-follow { order: 1; }    /* zuerst Follow Us */
  footer .footer-links { order: 2; }     /* danach Impressum/Datenschutz */
  footer .footer-copy { order: 3; }      /* zuletzt Copyright */
}



/* =================== Responsiveness =================== */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--color-bg);
    flex-direction: column;
    z-index: 9998;
    padding: 1rem 0;
  }
  .nav-desktop.active {
    display: flex;
  }
  .nav-desktop ul {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 0;
  }
  .burger {
    display: flex;
  }
  .slider .slide {
    height: 30vh;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .slider + .container h1,
  .slider + .container p {
    padding: 0 1rem;
  }
}
@media (min-width: 769px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ====================================== */
/* Produkt Detailseiten */
/* ====================================== */


/* =================== HERO =================== */
.product-hero {
  position: relative;
  width: 100%;
  height: 50vh;            /* Desktop-Höhe */
  overflow: hidden;
}

.product-hero video.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* füllt Container, beschneidet falls nötig */
  object-position: center center;
  z-index: 1;
}

.product-hero .hero-content {
  position: absolute;      /* über Video */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-text);
}

/* Mobile */
@@media (max-width: 768px) {
  .product-hero {
    height: 100vh !important; /* volle Bildschirmhöhe */
  }
  .product-hero .hero-content h1 {
    font-size: 1.8rem; /* Titel anpassen */
  }
  .product-hero .hero-content button {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}

/* =================== LIGHTBOX =================== */
.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:black;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.video-lightbox.active {
  display: flex;
}

.video-wrapper {
  position: relative;
  width: 80%;
}

.video-wrapper video {
  width: 100%;
}

.close-video {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  cursor: pointer;
}

/* =================== HIGHLIGHTS =================== */
.product-highlights {
  padding: 3rem 1rem;
  text-align: center;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.highlight img {
  width: 60px;
  margin-bottom: 1rem;
}

.highlight p {
 font: var(--font-primary); 
}

/* =================== Galerie =================== */
.gallery {
  width: 100%;
  margin: 2rem 0;
  box-sizing: border-box;
}

/* ------------------- Desktop ------------------- */
.gallery-desktop {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 16 / 9; /* immer 16:9 */
  overflow: hidden;
  border-radius: 0.5rem;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Bild füllt Container ohne Verzerrung */
  display: block;
  border-radius: 0.5rem;
}

.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-thumbs img {
  width: 80px;           
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 0.3rem;
  transition: border 0.3s ease;
}

.gallery-thumbs img.active-thumb {
  border: 2px solid var(--color-accent);
}

/* ------------------- Mobile ------------------- */
.gallery-mobile {
  display: none; 
  flex-direction: column;
  gap: 0.5rem;
}

.gallery-mobile img {
  width: 100%;
  display: block;
  border-radius: 0.5rem;
  aspect-ratio: 16 / 9; /* auch mobil proportional */
  object-fit: cover;
}

/* ------------------- Media Queries ------------------- */
@media (max-width: 768px) {
  .gallery-desktop { display: none; }
  .gallery-mobile { display: flex; }
}

/*----------------------------------*/
/* =================== FEATURES =================== */

.features {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.features h2 {
  text-align: center;
  width: 100%;
  margin: 0 auto 2rem auto;
}

.feature {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.8rem;
  row-gap: 0.3rem;

  margin-bottom: 1.5rem; /* ← DAS ist dein Leerraum */
}

/* Icon links */
.feature-icon {
  
  grid-column: 1;
  grid-row: 1;

  background-image: url("../media/icons/gear.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  width: 24px;
  height: 24px;
   align-self: center;  /* <-- vertikal perfekt zentriert */

  position: relative;

  /* Animation */
  transform: translateX(900px) rotate(0deg);
  opacity: 0;
  transition: transform 1000ms ease, opacity 300ms ease;
  
}

.feature-icon.icon-animate {
  transform: translateX(0) rotate(-360deg);
  opacity: 1;
}

/* h3 rechts neben Icon */
.feature h3 {
  grid-column: 2;
  grid-row: 1;

  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;

  /* Animation */
  opacity: 0;
  transform: translateX(-10px);
  transition: all 400ms ease;

}

.feature h3.title-animate {
  opacity: 1;
  transform: translateX(0);
}

/* p unter h2, volle Breite (wichtig!) */
.feature p {
  grid-column: 2; /* gleiche Linie wie h3 */
  grid-row: 2;

  margin: 0;
  font-size: 1rem;
  line-height: 1.5;

  /* Animation */
  opacity: 0;
  transform: translateY(-8px);
  transition: all 400ms ease;
}

.feature p.text-animate {
  opacity: 1;
  transform: translateY(0);
}

/* =================== CTA =================== */
.product-cta {
  text-align: center;
  padding: 3rem;
}
/* =================== CTA Buttons =================== */
.cta-buttons {
  display: flex;
  justify-content: center;  /* zentrieren */
  gap: 2rem;               /* Abstand zwischen den Buttons */
  margin-top: 2rem;        /* Abstand nach oben */
  flex-wrap: wrap;          /* falls auf Mobile, Buttons umbrechen */
}

.cta-buttons .cta-button {
  font-size: 1.25rem;       /* größere Schrift */
  padding: 1rem 2rem;       /* mehr Fläche */
  border-radius: 0.5rem;    /* sanfte Ecken */
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-buttons .cta-button:hover {
  transform: scale(1.05);   /* leichter Hover-Effekt */
}

/* =================== MOBILE =================== */
@media (max-width: 768px) {

  .product-hero { height: 40vh; }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    flex-direction: column;
  }

  .gallery-thumbs {
    display: none;
  }
}