/*
Theme Name: Edström Partner
Theme URI: https://systemedstrom.com/
Author: Edström Partner Template
Description: Custom one-pager Theme für Edström Partner mit 3D-Konfigurator, Video und Showcase-Sektionen.
Version: 1.0.0
Text Domain: edstrom-partner
*/

:root {
  color-scheme: light;
  --accent: #2daa4a;
  --accent-strong: #18893a;
  --carbon: #1f1f1f;
  --ink: #0a0a0a;
  --cloud: #f5f5f5;
  --white: #ffffff;
  --muted: #5c5f66;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --font-display: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background-color: var(--cloud);
}

body {
  margin: 0;
  background: radial-gradient(circle at 22% 20%, rgba(45, 170, 74, 0.08), transparent 28%),
    radial-gradient(circle at 82% 6%, rgba(0, 0, 0, 0.06), transparent 24%),
    var(--cloud);
  color: var(--carbon);
  font-family: var(--font-body);
  line-height: 1.65;
  letter-spacing: 0.01em;
  min-height: 100vh;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand img {
  height: 46px;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--accent);
  background: rgba(45, 170, 74, 0.1);
  color: var(--accent-strong);
  padding: 10px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.main-nav .mobile-menu-cta {
  display: none;
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
}

.main-nav a {
  display: inline-flex;
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 600;
  border-radius: 12px;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(45, 170, 74, 0.12);
  color: var(--accent-strong);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--accent);
  color: var(--white);
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid var(--accent);
  box-shadow: var(--shadow);
}

.header-cta:hover {
  background: var(--accent-strong);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(20px, 4.5vw, 56px) 24px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 780px;
  margin-bottom: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.section h2,
.hero h1,
.hero-copy h1 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.section p.lead,
.hero p.lead,
.hero-copy p.lead {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

.page-main {
  min-height: 60vh;
}

.page-section {
  padding-top: clamp(28px, 5vw, 72px);
}

.page-header {
  margin-bottom: 18px;
}

.page-header h1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin: 0;
}

.page-featured-image {
  margin: 0;
  background: #000;
}

.page-featured-image img {
  width: 100%;
  height: clamp(220px, 40vw, 420px);
  object-fit: cover;
  display: block;
}

.page-content-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-content {
  padding: clamp(18px, 3vw, 28px);
  color: var(--carbon);
  line-height: 1.75;
}

.page-content > *:first-child {
  margin-top: 0;
}

.page-content > *:last-child {
  margin-bottom: 0;
}

.page-content h2,
.page-content h3,
.page-content h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.page-content ul,
.page-content ol {
  padding-left: 1.2em;
}

.page-content form input[type="submit"],
.page-content form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--accent);
  font-weight: 700;
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
  cursor: pointer;
}

.page-content form input[type="submit"]:hover,
.page-content form input[type="submit"]:focus-visible,
.page-content form button[type="submit"]:hover,
.page-content form button[type="submit"]:focus-visible {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.post-meta {
  margin: 0 0 .35rem;
  color: var(--muted);
  font-size: .95rem;
}

.post-nav-row {
  margin-top: 1rem;
}

.blog-tiles .tile-body strong a {
  color: inherit;
  text-decoration: none;
}

.blog-tiles .tile-body strong a:hover {
  color: var(--accent);
}

.blog-pagination {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  margin: 0 .2rem;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.shop-header {
  margin-bottom: 14px;
}

.shop-toolbar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.shop-ordering-wrap {
  margin-left: auto;
}

.shop-section .woocommerce .woocommerce-ordering,
.shop-ordering-wrap .woocommerce-ordering {
  margin: 0;
}

.shop-filter-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.shop-search-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex: 1 1 320px;
}

.shop-filter-bar label {
  font-weight: 600;
  color: var(--ink);
}

.shop-search-bar label {
  font-weight: 600;
  color: var(--ink);
}

.shop-section .woocommerce .woocommerce-ordering,
.shop-ordering-wrap .woocommerce-ordering {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.shop-filter-bar select {
  min-width: 220px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #f7f8f9;
  color: var(--carbon);
}

.shop-search-bar input[type="search"] {
  min-width: 220px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #f7f8f9;
  color: var(--carbon);
}

.shop-search-bar button {
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  padding: 9px 12px;
  cursor: pointer;
}

.shop-search-bar button:hover,
.shop-search-bar button:focus-visible {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.shop-section .woocommerce .woocommerce-ordering select,
.shop-ordering-wrap .woocommerce-ordering select {
  min-width: 220px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #f7f8f9;
  color: var(--carbon);
}

.shop-section ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

.shop-section ul.products::before,
.shop-section ul.products::after {
  content: none !important;
  display: none !important;
}

.shop-section ul.products li.product {
  width: 100%;
  float: none !important;
  clear: none !important;
  margin: 0;
  padding: 14px !important;
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  overflow: visible;
  box-shadow: var(--shadow) !important;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  align-content: start;
  height: 100%;
}

.shop-section ul.products li.product.first,
.shop-section ul.products li.product.last {
  clear: none !important;
}

.shop-section ul.products li.product a.woocommerce-LoopProduct-link {
  display: grid;
  grid-template-rows: minmax(220px, 220px) minmax(0, 1fr) auto;
  gap: 10px;
  height: 100%;
}

.shop-section ul.products li.product img {
  margin: 0;
  width: 100%;
  height: 220px !important;
  min-height: 220px;
  max-height: 220px;
  object-fit: contain !important;
  background: var(--white) !important;
  border-radius: 12px;
  padding: 10px;
  display: block;
}

.shop-section ul.products li.product .woocommerce-loop-product__title,
.shop-section ul.products li.product .price,
.shop-section ul.products li.product .star-rating,
.shop-section ul.products li.product .button {
  margin-left: 14px;
  margin-right: 14px;
}

.shop-section ul.products li.product .woocommerce-loop-product__title {
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 1.15rem;
  color: var(--ink);
}

.shop-section ul.products li.product .price {
  margin-top: 6px;
  align-self: end;
  color: var(--accent-strong) !important;
  font-weight: 700 !important;
}

.shop-section ul.products li.product .price .amount,
.shop-section ul.products li.product .price bdi,
.shop-section ul.products li.product .price .woocommerce-Price-currencySymbol {
  color: var(--accent-strong) !important;
  font-weight: 700 !important;
}

.shop-section ul.products li.product .button,
.shop-main .woocommerce .single_add_to_cart_button.button {
  border-radius: 14px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  margin-top: 0;
}

.shop-section ul.products li.product .button:hover,
.shop-main .woocommerce .single_add_to_cart_button.button:hover {
  background: var(--accent-strong);
  color: var(--white);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order,
.woocommerce-checkout button#place_order.button.alt {
  border-radius: 14px !important;
  border: 1px solid var(--accent) !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus-visible,
.woocommerce-checkout #place_order:hover,
.woocommerce-checkout #place_order:focus-visible,
.woocommerce-checkout button#place_order.button.alt:hover,
.woocommerce-checkout button#place_order.button.alt:focus-visible {
  background: var(--accent-strong) !important;
  border-color: var(--accent-strong) !important;
  color: var(--white) !important;
}

.shop-main .woocommerce div.product {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.shop-main .woocommerce div.product .woocommerce-product-gallery img {
  border-radius: 12px;
}

.shop-section .woocommerce-notices-wrapper {
  margin-bottom: 18px;
}

.shop-section .woocommerce-notices-wrapper .woocommerce-message,
.shop-section .woocommerce-notices-wrapper .woocommerce-info,
.shop-section .woocommerce-notices-wrapper .woocommerce-error {
  margin: 0;
  padding: 14px 16px;
  background: var(--white);
  color: var(--carbon);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-section .woocommerce-notices-wrapper .woocommerce-message::before,
.shop-section .woocommerce-notices-wrapper .woocommerce-info::before,
.shop-section .woocommerce-notices-wrapper .woocommerce-error::before {
  color: var(--accent-strong);
  position: static;
  margin-right: 2px;
}

.shop-section .woocommerce-notices-wrapper .woocommerce-info {
  border-left-color: var(--accent-strong);
}

.shop-section .woocommerce-notices-wrapper .woocommerce-error {
  border-left-color: var(--carbon);
}

.shop-section .woocommerce-notices-wrapper .woocommerce-error::before {
  color: var(--carbon);
}

.shop-section .woocommerce-notices-wrapper .woocommerce-message .wc-forward,
.shop-section .woocommerce-notices-wrapper .woocommerce-info .wc-forward,
.shop-section .woocommerce-notices-wrapper .woocommerce-error .wc-forward {
  order: 2;
  margin-left: auto;
  float: none;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  padding: 10px 14px;
}

.shop-section .woocommerce-notices-wrapper .woocommerce-message .wc-forward:hover,
.shop-section .woocommerce-notices-wrapper .woocommerce-message .wc-forward:focus-visible,
.shop-section .woocommerce-notices-wrapper .woocommerce-info .wc-forward:hover,
.shop-section .woocommerce-notices-wrapper .woocommerce-info .wc-forward:focus-visible,
.shop-section .woocommerce-notices-wrapper .woocommerce-error .wc-forward:hover,
.shop-section .woocommerce-notices-wrapper .woocommerce-error .wc-forward:focus-visible {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: var(--white);
}

.single-product-section div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.single-product-section div.product::before,
.single-product-section div.product::after {
  content: none;
  display: none;
}

.single-product-section div.product div.images,
.single-product-section div.product div.summary {
  width: 100% !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(14px, 2.2vw, 20px);
}

.single-product-section .woocommerce-product-gallery__image > a {
  pointer-events: auto;
  cursor: zoom-in;
}

.single-product-section div.product div.summary .product_title {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: var(--font-display);
  color: var(--ink);
}

.single-product-section div.product p.price,
.single-product-section div.product span.price {
  color: var(--accent-strong);
  font-weight: 700;
}

.single-product-section div.product form.cart {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.single-product-section .quantity .qty {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f7f8f9;
  color: var(--carbon);
}

.single-product-section div.product form.cart .button,
.single-product-section div.product .single_add_to_cart_button.button {
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid var(--accent) !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.single-product-section div.product form.cart .button:hover,
.single-product-section div.product .single_add_to_cart_button.button:hover {
  background: var(--accent-strong) !important;
  border-color: var(--accent-strong) !important;
}

.single-product-section div.product .product_meta {
  margin-top: 16px;
  color: var(--muted);
}

.single-product-section div.product .product_meta > span {
  display: block;
  margin-bottom: 4px;
}

.single-product-section div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: clamp(14px, 2.4vw, 28px);
}

.single-product-section div.product .woocommerce-tabs ul.tabs {
  margin: 0 0 14px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single-product-section div.product .woocommerce-tabs ul.tabs::before,
.single-product-section div.product .woocommerce-tabs ul.tabs::after {
  content: none;
  display: none;
}

.single-product-section div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  background: transparent !important;
  margin: 0;
  padding: 0 !important;
  border-radius: 999px;
  overflow: hidden;
}

.single-product-section div.product .woocommerce-tabs ul.tabs li::before,
.single-product-section div.product .woocommerce-tabs ul.tabs li::after {
  content: none;
  display: none;
}

.single-product-section div.product .woocommerce-tabs ul.tabs li a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 700;
}

.single-product-section div.product .woocommerce-tabs ul.tabs li.active a {
  background: rgba(45, 170, 74, 0.12);
  border-color: var(--accent);
  color: var(--accent-strong);
}

.single-product-section div.product .woocommerce-tabs ul.tabs li.active {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.single-product-section div.product .woocommerce-tabs ul.tabs li.active::before,
.single-product-section div.product .woocommerce-tabs ul.tabs li.active::after {
  content: none !important;
  display: none !important;
}

.single-product-section div.product .woocommerce-Tabs-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 32px) !important;
}

.single-product-section div.product .woocommerce-Tabs-panel > *:first-child {
  margin-top: 0;
}

.single-product-section div.product .woocommerce-Tabs-panel > *:last-child {
  margin-bottom: 0;
}

.single-product-section #reviews #comments,
.single-product-section #reviews #review_form_wrapper {
  margin: 12px 0;
  padding-inline: 4px;
}

.single-product-section #reviews .comment-form {
  display: grid;
  gap: 12px;
}

.single-product-section #reviews .comment-form textarea,
.single-product-section #reviews .comment-form input[type="text"],
.single-product-section #reviews .comment-form input[type="email"],
.single-product-section #reviews .comment-form input[type="url"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  background: #f7f8f9;
}

.single-product-section div.product .shop_attributes {
  border-collapse: collapse;
  width: 100%;
}

.single-product-section div.product .shop_attributes th,
.single-product-section div.product .shop_attributes td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  background: #fafbfb;
}

.single-product-section #reviews #comments ol.commentlist li .comment-text {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fafbfb;
  padding: 12px 14px;
}

.single-product-section div.product .related.products {
  grid-column: 1 / -1;
  margin-top: clamp(14px, 2.4vw, 26px);
}

.single-product-section div.product .related.products ul.products li.product a img,
.shop-section ul.products li.product a img {
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
  width: 100% !important;
  object-fit: contain !important;
}

@media (max-width: 900px) {
  .single-product-section div.product {
    grid-template-columns: 1fr;
  }

  .single-product-section div.product .woocommerce-tabs,
  .single-product-section div.product .related.products {
    grid-column: auto;
  }
}

.shop-section nav.woocommerce-pagination {
  margin-top: clamp(22px, 3.2vw, 40px);
  display: flex;
  justify-content: center;
}

.shop-section nav.woocommerce-pagination ul.page-numbers {
  border: 0 !important;
  margin: 0;
  padding: 8px;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.shop-section nav.woocommerce-pagination ul.page-numbers li {
  border: 0 !important;
  margin: 0;
  float: none !important;
  list-style: none;
}

.shop-section nav.woocommerce-pagination ul.page-numbers li a,
.shop-section nav.woocommerce-pagination ul.page-numbers li span {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-strong);
  background: var(--white);
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.shop-section nav.woocommerce-pagination ul.page-numbers li a:hover,
.shop-section nav.woocommerce-pagination ul.page-numbers li a:focus-visible {
  border-color: var(--accent);
  background: rgba(45, 170, 74, 0.12);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.shop-section nav.woocommerce-pagination ul.page-numbers li span.current {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.shop-section nav.woocommerce-pagination ul.page-numbers li span.dots {
  border-color: transparent;
  min-width: 32px;
  background: transparent;
}

@media (max-width: 560px) {
  .shop-toolbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }

  .shop-ordering-wrap {
    margin-left: 0;
    width: 100%;
  }

  .shop-filter-bar {
    width: 100%;
    display: grid;
    gap: 6px;
  }

  .shop-search-bar {
    width: 100%;
    display: grid;
    gap: 6px;
  }

  .shop-section .woocommerce .woocommerce-ordering,
  .shop-ordering-wrap .woocommerce-ordering {
    width: 100% !important;
  }

  .shop-filter-bar select {
    min-width: 0;
    width: 100%;
  }

  .shop-search-bar input[type="search"],
  .shop-search-bar button {
    min-width: 0;
    width: 100%;
  }

  .shop-section .woocommerce .woocommerce-ordering select,
  .shop-ordering-wrap .woocommerce-ordering select {
    min-width: 0;
    width: 100% !important;
  }

  .shop-section ul.products {
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  .shop-section ul.products li.product {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .shop-section ul.products li.product a.woocommerce-LoopProduct-link {
    width: 100%;
  }

  .shop-section nav.woocommerce-pagination {
    margin-top: 24px;
  }

  .shop-section nav.woocommerce-pagination ul.page-numbers {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 18px;
  }

  .shop-section nav.woocommerce-pagination ul.page-numbers li a,
  .shop-section nav.woocommerce-pagination ul.page-numbers li span {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
  }

  .shop-section .woocommerce-notices-wrapper .woocommerce-message,
  .shop-section .woocommerce-notices-wrapper .woocommerce-info,
  .shop-section .woocommerce-notices-wrapper .woocommerce-error {
    align-items: flex-start;
    gap: 10px;
  }

  .shop-section .woocommerce-notices-wrapper .woocommerce-message .wc-forward,
  .shop-section .woocommerce-notices-wrapper .woocommerce-info .wc-forward,
  .shop-section .woocommerce-notices-wrapper .woocommerce-error .wc-forward {
    margin-left: 0;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 775px) {
  .shop-toolbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .shop-filter-bar,
  .shop-search-bar,
  .shop-ordering-wrap,
  .shop-ordering-wrap .woocommerce-ordering {
    width: 100%;
  }

  .shop-filter-bar select,
  .shop-search-bar input[type="search"],
  .shop-search-bar button,
  .shop-ordering-wrap .woocommerce-ordering select {
    width: 100%;
    min-width: 0;
  }

  .shop-section ul.products {
    grid-template-columns: 1fr !important;
  }

  .shop-section ul.products li.product {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
}

.video-hero {
  position: relative;
  min-height: 520px;
  max-height: 760px;
  overflow: hidden;
  background: #000;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28));
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 960px;
  padding: clamp(32px, 8vw, 120px);
  color: var(--white);
  display: grid;
  gap: 12px;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 72px);
}

.hero-copy p.lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero .kpi-row,
.hero-copy .kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin: 12px 0 6px;
}

.hero .kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin: 20px 0 8px;
}

.kpi {
  background: rgba(31, 31, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  color: rgba(255, 255, 255, 0.9);
}

.kpi strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--accent);
  font-weight: 700;
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.btn.secondary {
  background: var(--white);
  color: var(--accent-strong);
}

.hero-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(140deg, rgba(45, 170, 74, 0.24), rgba(0, 0, 0, 0.14));
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  max-width: 240px;
  box-shadow: var(--shadow);
}

.hero-badge strong {
  display: block;
  color: var(--accent-strong);
  margin-bottom: 4px;
}

.icon-grid {
  --carousel-side-padding: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 25px var(--carousel-side-padding) 50px var(--carousel-side-padding);
}

.icon-grid::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.icon-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 14px;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.26), 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 160ms ease;
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 210px;
}

.icon-grid.is-carousel {
  display: grid;
  grid-auto-flow: column;
  --carousel-visible-cards: 4;
  grid-auto-columns: calc((100% - (var(--carousel-visible-cards) - 1) * 16px) / var(--carousel-visible-cards));
  grid-template-columns: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--carousel-side-padding);
}

.icon-grid.is-carousel .icon-card {
  scroll-snap-align: start;
}

.icon-grid.is-carousel .icon-card.is-out-of-view {
  box-shadow: none;
}

.icon-card img {
  width: 64px;
  height: 64px;
}

#vorteile .icon-card {
  justify-items: center;
  text-align: center;
}

#vorteile .icon-card p,
#vorteile .icon-card strong {
  margin-left: auto;
  margin-right: auto;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.tile {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  min-height: 280px;
  grid-template-rows: 1fr auto;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-body {
  padding: 16px;
  display: grid;
  gap: 8px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  background: rgba(45, 170, 74, 0.12);
  color: var(--accent-strong);
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.config-frame {
  position: relative;
}

.config-frame iframe {
  width: 100%;
  height: 720px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #000;
  pointer-events: none;
}

.config-frame.is-active iframe {
  pointer-events: auto;
}

.config-activate {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.config-frame.is-active .config-activate {
  opacity: 0;
  pointer-events: none;
}

.config-fullscreen {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}

.config-fullscreen svg {
  width: 18px;
  height: 18px;
}

.config-fullscreen svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.config-fullscreen-label {
  display: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.config-frame.is-pseudo-fullscreen .config-fullscreen,
.config-frame.is-native-fullscreen .config-fullscreen {
  width: auto;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  gap: 6px;
  border-radius: 999px;
}

.config-frame.is-pseudo-fullscreen .config-fullscreen-label,
.config-frame.is-native-fullscreen .config-fullscreen-label {
  display: inline;
}

.config-frame.is-pseudo-fullscreen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 90;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.94);
  padding: 0;
}

.config-frame.is-pseudo-fullscreen iframe {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  border-radius: 0;
  border: 0;
  pointer-events: auto;
}

.config-frame.is-pseudo-fullscreen .config-activate {
  display: none;
}

.config-frame.is-pseudo-fullscreen .config-fullscreen {
  top: 14px;
  right: 14px;
  z-index: 95;
}

.config-frame:fullscreen,
.config-frame:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #000;
  padding: 0;
  border-radius: 0;
}

.config-frame:fullscreen iframe,
.config-frame:-webkit-full-screen iframe {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  border-radius: 0;
  border: 0;
}

.video-shell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.video-shell video {
  width: 100%;
  display: block;
  background: #000;
}

.process {
  position: relative;
  --process-item-width: clamp(240px, 22vw, 320px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 16px;
}

.process .process-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}

.process-flow-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 7 7;
  marker-end: url(#processFlowArrow);
  opacity: 0.9;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.08));
}

.step {
  position: relative;
  flex: 0 1 var(--process-item-width);
  width: var(--process-item-width);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  overflow: visible;
  z-index: 2;
  min-height: 190px;
}

.step strong {
  color: var(--accent-strong);
}

.gallery {
  --gallery-visible-count: 1;
  --gallery-gap: 14px;
  position: relative;
  display: grid;
  gap: 14px;
}

.gallery-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-track {
  display: flex;
  gap: var(--gallery-gap);
  transition: transform 380ms ease;
  will-change: transform;
}

.reference-slide {
  min-width: 100%;
  width: 100%;
}

.references-feed {
  display: grid;
  gap: 12px;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.reference-item {
  min-width: 0;
}

.references-grid .reference-trigger img {
  height: clamp(220px, 26vw, 330px);
}

.references-sentinel {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.references-sentinel.is-hidden {
  display: none;
}

.reference-trigger {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.reference-trigger img {
  width: 100%;
  height: clamp(260px, 45vw, 520px);
  object-fit: cover;
  display: block;
}

.reference-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.78) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  text-align: left;
}

.reference-trigger:hover .reference-overlay,
.reference-trigger:focus-visible .reference-overlay {
  opacity: 1;
  transform: translateY(0);
}

.reference-overlay strong {
  font-size: 18px;
  line-height: 1.2;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gallery-nav {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--accent-strong);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.gallery-dot.is-active {
  background: var(--accent);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  z-index: 70;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 28px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-figure {
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.gallery-lightbox-figure img {
  max-width: min(92vw, 1200px);
  max-height: 76vh;
  border-radius: 14px;
  object-fit: contain;
  background: #000;
}

.gallery-lightbox-figure figcaption {
  color: var(--white);
  text-align: center;
  display: grid;
  gap: 4px;
  max-width: min(92vw, 860px);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: start;
}

.contact-card {
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fbfbfb;
  font-family: var(--font-body);
}

form textarea {
  resize: vertical;
  min-height: 140px;
}

.alert {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(45, 170, 74, 0.12);
  color: var(--accent-strong);
  border: 1px solid var(--accent);
}

.site-footer {
  background: var(--carbon);
  color: var(--white);
  padding: 26px 24px;
  margin-top: 32px;
}

.footer-widgets {
  max-width: 1200px;
  margin: 0 auto 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-widgets-inner {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-widget-item {
  color: rgba(255, 255, 255, 0.92);
}

.footer-widget-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
}

.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.footer-partner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-partner img {
  height: 32px;
  width: auto;
}

.footer-partner span {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.site-footer a {
  color: var(--white);
}

.footer-nav .footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-nav a {
  opacity: 0.92;
  color: var(--white);
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-nav .footer-nav-list li + li::before {
  content: "|";
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  opacity: 1;
  color: var(--accent);
}

.footer-copy {
  width: 100%;
  display: block;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.footer-top-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: rgba(45, 170, 74, 0.14);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-top-link svg {
  width: 18px;
  height: 18px;
}

.footer-top-link svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-top-link:hover,
.footer-top-link:focus-visible {
  color: var(--white);
  background: var(--accent);
  transform: translateY(-1px);
}

.whatsapp-float {
  --wa-base-bottom: 18px;
  --wa-footer-offset: 0px;
  position: fixed;
  right: 18px;
  bottom: calc(var(--wa-base-bottom) + var(--wa-footer-offset));
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, bottom 220ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.whatsapp-float svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.cart-float {
  --cart-base-bottom: 18px;
  --cart-footer-offset: 0px;
  position: fixed;
  left: 18px;
  bottom: calc(var(--cart-base-bottom) + var(--cart-footer-offset));
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--white);
  color: var(--accent-strong);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, bottom 220ms ease, color 180ms ease;
}

.cart-float:hover,
.cart-float:focus-visible {
  background: rgba(45, 170, 74, 0.12);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.cart-float svg {
  width: 18px;
  height: 18px;
}

.cart-float svg path,
.cart-float svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-float-count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

@media (max-width: 840px) {
  .header-inner {
    grid-template-columns: auto auto;
    grid-template-areas:
      "logo cta"
      "nav nav";
    align-items: center;
  }

  .nav-toggle {
    grid-area: cta;
    justify-self: end;
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    grid-area: nav;
    width: 100%;
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 6px 0 12px;
  }

  .main-nav .mobile-menu-cta {
    display: inline-flex;
    margin-top: 10px;
    margin-bottom: 8px;
    color: var(--white);
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: var(--shadow);
  }

  .main-nav .mobile-menu-cta:hover,
  .main-nav .mobile-menu-cta:focus-visible {
    color: var(--white);
    background: var(--accent-strong);
  }

  .config-frame iframe {
    height: 540px;
  }

  .video-hero {
    min-height: 0;
    height: auto;
    max-height: none;
  }

  .video-hero .hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-overlay {
    position: relative;
    z-index: 1;
    min-height: 100%;
    align-items: flex-start;
  }

  .hero-copy {
    height: auto;
    padding: 20px 18px 18px;
    gap: 8px;
    align-content: start;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8.4vw, 42px);
    line-height: 1.08;
    margin: 0;
  }

  .hero-copy p.lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
  }

  .hero-copy .kpi-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 8px 0 0;
  }

  .hero-copy .kpi {
    padding: 10px 12px;
  }

  .hero-copy .kpi strong {
    font-size: 17px;
  }

  .icon-grid.is-carousel {
    --carousel-visible-cards: 3;
  }

  #leistungen .tile {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  #leistungen .tile img {
    width: 100%;
    height: clamp(180px, 44vw, 300px);
    object-fit: cover;
    display: block;
    flex: 0 0 auto;
  }

  #leistungen .tile-body {
    background: var(--white);
    position: relative;
    z-index: 1;
  }

  .whatsapp-float {
    --wa-base-bottom: 14px;
    right: 14px;
    padding: 10px 12px;
  }

  .cart-float {
    --cart-base-bottom: 14px;
    left: 14px;
    padding: 10px 12px;
  }

}

@media (max-width: 560px) {
  .video-hero {
    min-height: 0;
    height: auto;
  }

  .hero-copy {
    padding: 14px 12px 12px;
    gap: 6px;
  }

  .hero-copy h1 {
    font-size: clamp(24px, 8.6vw, 32px);
    line-height: 1.08;
  }

  .hero-copy p.lead {
    font-size: 14px;
    line-height: 1.3;
  }

  .hero-copy .kpi-row {
    gap: 8px;
  }

  .hero-copy .kpi {
    padding: 8px 10px;
  }

  .hero-copy .kpi strong {
    font-size: 15px;
  }

  .icon-grid.is-carousel {
    --carousel-visible-cards: 1;
  }

  .gallery {
    --gallery-visible-count: 1;
  }

  .reference-trigger img {
    height: 250px;
  }

  .reference-overlay {
    opacity: 1;
    transform: translateY(0);
    font-size: 14px;
  }

  .gallery-lightbox {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 54px 12px 20px;
  }

  .gallery-lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .whatsapp-float {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .cart-float {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    gap: 0;
  }

  .cart-float span {
    display: none;
  }

  .cart-float-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    font-size: 11px;
  }
}
