﻿:root {
  --red: #c70012;
  --dark: #141414;
  --text: #252525;
  --muted: #686868;
  --cream: #f3eee7;
  --soft: #faf7f3;
  --line: rgba(20,20,20,0.10);
  --shadow: 0 22px 70px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
}

a { color: inherit; }

.wide-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.site-header {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
}

.brand-main {
  color: var(--red);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brand-main::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 34px;
  background: var(--red);
  margin-right: 14px;
  transform: translateY(5px);
}

.brand-sub {
  color: #555;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 17px;
  margin-top: 8px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

nav a {
  text-decoration: none;
}

.nav-button {
  background: var(--red);
  color: white;
  padding: 14px 22px;
  box-shadow: 0 16px 34px rgba(199,0,18,0.20);
}

.hero {
  padding: 96px 54px;
  background:
    linear-gradient(90deg, rgba(243,238,231,0.98), rgba(243,238,231,0.84)),
    radial-gradient(circle at 86% 20%, rgba(199,0,18,0.12), transparent 34%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

h1 span {
  display: block;
  color: var(--red);
}

h2 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -0.065em;
  margin-bottom: 0;
}

.hero-copy p,
.section-head p,
.center-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-decoration: none;
  background: white;
  border: 2px solid var(--dark);
}

.button.primary {
  background: var(--red);
  border-color: var(--red);
  color: white;
  box-shadow: 0 18px 36px rgba(199,0,18,0.20);
}

.hero-visual {
  min-height: 470px;
  background:
    linear-gradient(135deg, rgba(20,20,20,0.92), rgba(20,20,20,0.78)),
    radial-gradient(circle at 75% 25%, rgba(199,0,18,0.38), transparent 36%);
  display: flex;
  align-items: end;
  padding: 34px;
  box-shadow: var(--shadow);
}

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: white;
  padding: 30px;
  max-width: 430px;
}

.hero-card span {
  color: #ffb4b8;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero-card strong {
  display: block;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 14px 0;
}

.hero-card p {
  color: #d4d4d4;
  margin: 0;
}

.trust-row {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 54px;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-inner div {
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

.trust-inner strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-inner span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 92px 54px;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
}

.service-image {
  height: 190px;
  background: #161616;
  position: relative;
}

.service-image::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255,255,255,0.28);
}

.service-equipment {
  background: linear-gradient(135deg, #151515, #321015);
}

.service-kitchen {
  background: linear-gradient(135deg, #151515, #263126);
}

.service-catering {
  background: linear-gradient(135deg, #151515, #36221a);
}

.service-logistics {
  background: linear-gradient(135deg, #151515, #222838);
}

.service-content {
  padding: 26px;
}

.service-content span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-content h3 {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 12px 0;
}

.service-content p {
  color: var(--muted);
  line-height: 1.55;
}

.service-content a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.product-section {
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 24px;
}

.product-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-image {
  height: 170px;
  display: block;
  overflow: hidden;
  background: #161616;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 24px;
  flex: 1;
}

.product-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 14px;
}

.product-body h3 {
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.product-body p {
  color: var(--muted);
  line-height: 1.55;
}

.product-meta {
  margin: 0 24px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.product-meta span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-meta strong {
  font-size: 17px;
}

.product-button {
  margin: 0 24px 24px;
  background: var(--dark);
  color: white;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
}

.product-button:hover {
  background: var(--red);
}

.process-section {
  background: white;
}

.center-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 52px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid div {
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-grid h3 {
  font-size: 25px;
  letter-spacing: -0.04em;
  margin: 14px 0;
}

.process-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.faq-section {
  background: var(--cream);
}

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

.faq-grid details {
  background: white;
  box-shadow: 0 14px 40px rgba(0,0,0,0.04);
  border: 1px solid var(--line);
}

.faq-grid summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  color: var(--red);
  font-size: 24px;
  top: 17px;
}

.faq-grid details[open] summary::after {
  content: "–";
}

.faq-grid details p {
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.final-cta {
  background: #151515;
  color: white;
  padding: 82px 54px;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
}

.final-cta h2 {
  color: white;
}

.final-cta p {
  color: #d2d2d2;
  font-size: 18px;
  line-height: 1.6;
}

footer {
  background: white;
  border-top: 1px solid var(--line);
  padding: 34px 54px;
  color: #777;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1000px) {
  nav {
    display: none;
  }

  .header-inner,
  .hero,
  .section,
  .trust-row,
  .final-cta,
  footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-grid,
  .section-head,
  .trust-inner,
  .service-grid,
  .process-grid,
  .faq-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 320px;
  }

  h1 {
    font-size: 58px;
  }
}

.service-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image span {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.service-content p {
  min-height: 112px;
}

.service-points {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.service-points li {
  position: relative;
  padding-left: 20px;
  color: #555;
  line-height: 1.45;
  font-size: 14px;
}

.service-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content a {
  margin-top: auto;
}

.faq-section {
  background: linear-gradient(180deg, #f3eee7 0%, #f7f3ee 100%);
}

.faq-grid details {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.faq-grid details:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.07);
}

.faq-grid details[open] {
  border-color: rgba(199,0,18,0.28);
}

.faq-grid details[open] summary {
  color: var(--red);
}

.final-cta {
  background: radial-gradient(circle at 80% 20%, rgba(199,0,18,0.24), transparent 32%), linear-gradient(135deg, #111 0%, #1b1b1b 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
}

.final-cta-inner {
  width: 100%;
}

.final-cta .button.primary {
  min-width: 250px;
  box-shadow: 0 22px 55px rgba(199,0,18,0.28);
}

.site-footer {
  background: #0f0f0f;
  color: white;
  padding: 46px 54px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.site-footer strong {
  display: block;
  color: white;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.site-footer p {
  color: #aaa;
  margin: 0;
  line-height: 1.6;
}

.footer-contact span {
  display: block;
  color: #777;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.footer-contact a {
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cfcfcf;
  text-decoration: none;
  font-weight: 800;
}

.footer-links a:hover {
  color: white;
}

.legal-page {
  padding: 82px 54px;
  background: var(--cream);
  min-height: 70vh;
}

.legal-box {
  background: white;
  padding: 52px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.legal-box h1 {
  font-size: clamp(42px, 5vw, 72px);
  margin-bottom: 32px;
}

.legal-box p {
  color: #555;
  font-size: 17px;
  line-height: 1.75;
  max-width: 900px;
}

@media (max-width: 900px) {
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .legal-page {
    padding-left: 22px;
    padding-right: 22px;
  }

  .legal-box {
    padding: 28px;
  }
}

.inquiry-page {
  padding: 86px 54px;
  background: var(--cream);
  min-height: 72vh;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.inquiry-intro h1 {
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.92;
  margin-bottom: 24px;
}

.inquiry-intro p {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
}

.inquiry-benefits {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.inquiry-benefits div {
  background: white;
  border-left: 4px solid var(--red);
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.05);
}

.inquiry-benefits strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.inquiry-benefits span {
  color: #666;
  line-height: 1.5;
}

.inquiry-card {
  background: white;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.inquiry-card .form-row {
  margin-bottom: 18px;
}

.inquiry-card label {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}

.inquiry-card input,
.inquiry-card textarea,
.inquiry-card select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

.inquiry-card textarea {
  resize: vertical;
}

@media (max-width: 900px) {
  .inquiry-page {
    padding-left: 22px;
    padding-right: 22px;
  }

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

.subpage-hero {
  padding: 96px 54px;
  background: radial-gradient(circle at 88% 15%, rgba(199,0,18,0.13), transparent 34%), linear-gradient(135deg, #f7f3ee 0%, #eee7de 100%);
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.subpage-hero h1 {
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  max-width: 980px;
  margin-bottom: 26px;
}

.subpage-hero p {
  max-width: 780px;
  color: #4d4d4d;
  font-size: 19px;
  line-height: 1.7;
}

.subpage-highlight {
  background: white;
  padding: 38px;
  border-left: 5px solid var(--red);
  box-shadow: var(--shadow);
}

.subpage-highlight.dark {
  background: #151515;
  color: white;
}

.subpage-highlight strong {
  display: block;
  font-size: 28px;
  margin-bottom: 12px;
}

.subpage-highlight span {
  color: #666;
  line-height: 1.6;
}

.subpage-highlight.dark span {
  color: #ccc;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.subpage-section {
  padding: 88px 54px;
  background: white;
}

.subpage-section.cream {
  background: var(--cream);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.section-head p {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

.category-grid,
.feature-list,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-grid div,
.feature-list div,
.process-grid div {
  background: white;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(0,0,0,0.04);
}

.subpage-section:not(.cream) .category-grid div,
.subpage-section:not(.cream) .feature-list div,
.subpage-section:not(.cream) .process-grid div {
  background: #f7f3ee;
}

.category-grid strong,
.feature-list strong,
.process-grid strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}

.category-grid span,
.feature-list span,
.process-grid span {
  color: #666;
  line-height: 1.55;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-grid article {
  background: #151515;
  color: white;
  padding: 34px;
}

.info-grid span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.info-grid h3 {
  font-size: 28px;
  margin: 22px 0 14px;
}

.info-grid p {
  color: #d0d0d0;
  line-height: 1.65;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.listing-card {
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.listing-image {
  height: 190px;
  background: linear-gradient(135deg, #151515, #2c1216);
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-image span {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
}

.listing-content {
  padding: 24px;
}

.listing-category {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.listing-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.listing-content p {
  color: #666;
  line-height: 1.55;
}

.listing-meta {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.listing-content a {
  display: block;
  margin-top: 18px;
  background: #151515;
  color: white;
  text-align: center;
  padding: 13px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .subpage-hero-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .feature-list,
  .process-grid,
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 700px) {
  .subpage-hero,
  .subpage-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .category-grid,
  .feature-list,
  .process-grid,
  .listing-grid {
    grid-template-columns: 1fr;
  }
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.success-box {
  background: #e7f7ed;
  color: #117a37;
  border: 1px solid rgba(17,122,55,0.18);
  padding: 18px 20px;
  margin-bottom: 24px;
}

.success-box strong {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
}

.success-box span {
  display: block;
  color: #2f7d4d;
  line-height: 1.5;
}

.premium-faq {
  background: linear-gradient(180deg, #f7f3ee 0%, #eee7de 100%);
  padding-top: 96px;
  padding-bottom: 96px;
}

.faq-premium-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.faq-intro p {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
}

.faq-note-box {
  margin-top: 34px;
  background: #151515;
  color: white;
  padding: 30px;
  box-shadow: 0 24px 65px rgba(0,0,0,0.12);
  border-left: 5px solid var(--red);
}

.faq-note-box strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}

.faq-note-box span {
  display: block;
  color: #d0d0d0;
  line-height: 1.65;
  margin-bottom: 22px;
}

.faq-note-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: white;
  text-decoration: none;
  font-weight: 900;
  padding: 14px 18px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 48px rgba(0,0,0,0.045);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}

.faq-list details:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 65px rgba(0,0,0,0.08);
}

.faq-list details[open] {
  border-color: rgba(199,0,18,0.28);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.faq-list summary strong {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #f4eee8;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary strong {
  background: var(--red);
  color: white;
}

.faq-list details[open] summary strong::before {
  content: '-';
}

.faq-list details[open] summary strong {
  font-size: 0;
}

.faq-list details[open] summary strong::before {
  font-size: 24px;
}

.faq-list p {
  margin: 0;
  padding: 0 28px 28px;
  color: #555;
  font-size: 16px;
  line-height: 1.75;
  max-width: 780px;
}

@media (max-width: 1000px) {
  .faq-premium-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 700px) {
  .premium-faq {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .faq-list summary {
    padding: 22px;
  }

  .faq-list summary span {
    font-size: 15px;
  }

  .faq-list p {
    padding: 0 22px 24px;
  }
}

/* FINAL VISUAL UPGRADE */
.site-header {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.visual-hero {
  padding: 96px 54px;
  background: linear-gradient(135deg, #f7f3ee 0%, #ffffff 58%, #eee7de 100%);
}

.visual-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 64px;
  align-items: center;
}

.visual-hero h1 {
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin-bottom: 28px;
  max-width: 980px;
}

.visual-hero p {
  color: #4f4f4f;
  font-size: 19px;
  line-height: 1.75;
  max-width: 760px;
}

.visual-hero-image {
  min-height: 460px;
  box-shadow: 0 32px 90px rgba(0,0,0,0.14);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

.visual-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.content-band {
  padding: 72px 54px;
  background: #151515;
  color: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.intro-grid h2 {
  color: white;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.intro-grid p {
  color: #d6d6d6;
  font-size: 18px;
  line-height: 1.8;
}

.premium-categories div {
  min-height: 190px;
  position: relative;
  overflow: hidden;
}

.premium-categories div::after {
  content: '';
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 110px;
  height: 110px;
  background: rgba(199,0,18,0.08);
  border-radius: 999px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.shop-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 55px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 75px rgba(0,0,0,0.10);
}

.shop-card-image {
  height: 210px;
  background: #151515;
  overflow: hidden;
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-card-category {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.shop-card h3 {
  font-size: 25px;
  line-height: 1.08;
  margin-bottom: 12px;
}

.shop-card p {
  color: #5f5f5f;
  line-height: 1.6;
  font-size: 15px;
}

.shop-card-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
}

.shop-card-info span {
  display: block;
  color: #888;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.shop-card-info strong {
  font-size: 14px;
}

.shop-card-button {
  display: block;
  margin-top: 18px;
  background: #151515;
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  padding: 14px;
}

.shop-card-button:hover {
  background: var(--red);
}

.process-grid div {
  min-height: 170px;
}

.final-cta {
  background: radial-gradient(circle at 85% 20%, rgba(199,0,18,0.26), transparent 34%), linear-gradient(135deg, #111 0%, #1b1b1b 100%) !important;
}

@media (max-width: 1200px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .visual-hero-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .visual-hero,
  .content-band {
    padding-left: 22px;
    padding-right: 22px;
  }

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

  .visual-hero-image,
  .visual-hero-image img {
    min-height: 300px;
  }
}

/* HOMEPAGE FULL UPGRADE */
.home-hero-v2 {
  padding: 96px 54px 78px;
  background: linear-gradient(135deg, #f7f3ee 0%, #ffffff 60%, #eee7de 100%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.home-hero-content h1 {
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  margin-bottom: 28px;
}

.home-hero-content p {
  color: #4f4f4f;
  font-size: 20px;
  line-height: 1.75;
  max-width: 800px;
}

.home-hero-visual {
  position: relative;
  min-height: 500px;
  box-shadow: 0 34px 95px rgba(0,0,0,0.16);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

.home-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  background: rgba(255,255,255,0.94);
  padding: 24px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.18);
  border-left: 5px solid var(--red);
}

.hero-floating-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.hero-floating-card span {
  color: #555;
  line-height: 1.55;
}

.hero-mini-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.hero-mini-facts div {
  background: white;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(0,0,0,0.04);
}

.hero-mini-facts strong {
  display: block;
  margin-bottom: 5px;
}

.hero-mini-facts span {
  color: #666;
  font-size: 14px;
}

.home-trust-band {
  background: #151515;
  padding: 34px 54px;
}

.trust-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
}

.trust-grid-v2 div {
  background: #151515;
  color: white;
  padding: 26px;
}

.trust-grid-v2 span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.trust-grid-v2 strong {
  display: block;
  font-size: 20px;
  margin: 14px 0 8px;
}

.trust-grid-v2 p {
  color: #cfcfcf;
  line-height: 1.55;
  margin: 0;
}

.home-services-v2,
.home-products-v2,
.home-process-v2 {
  padding: 92px 54px;
  background: white;
}

.home-products-v2,
.home-process-v2 {
  background: #f7f3ee;
}

.home-section-head {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 52px;
  align-items: end;
  margin-bottom: 46px;
}

.home-section-head h2 {
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.home-section-head p {
  color: #555;
  font-size: 18px;
  line-height: 1.75;
}

.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.service-showcase-grid article {
  background: #f7f3ee;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  min-height: 320px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 55px rgba(0,0,0,0.05);
  overflow: hidden;
}

.service-showcase-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-showcase-grid article div {
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.service-showcase-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-showcase-grid h3 {
  font-size: 30px;
  line-height: 1.08;
  margin-bottom: 14px;
}

.service-showcase-grid p {
  color: #5d5d5d;
  line-height: 1.65;
}

.service-showcase-grid a {
  margin-top: auto;
  color: #151515;
  font-weight: 900;
  text-decoration: none;
}

.home-dark-info {
  padding: 86px 54px;
  background: #151515;
  color: white;
}

.dark-info-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.dark-info-grid h2 {
  color: white;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.dark-info-list {
  display: grid;
  gap: 18px;
}

.dark-info-list div {
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--red);
  padding: 24px;
}

.dark-info-list strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.dark-info-list p {
  color: #d0d0d0;
  line-height: 1.65;
  margin: 0;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.home-product-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 20px 55px rgba(0,0,0,0.06);
  overflow: hidden;
}

.home-product-image {
  height: 200px;
  background: #151515;
}

.home-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-product-body {
  padding: 24px;
}

.home-product-category {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.home-product-body h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.home-product-body p {
  color: #666;
  line-height: 1.55;
}

.home-product-bottom {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.home-product-bottom a {
  background: #151515;
  color: white;
  text-decoration: none;
  font-weight: 900;
  padding: 10px 13px;
}

.process-title-v2 {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 48px;
}

.process-title-v2 h2 {
  font-size: clamp(50px, 6vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}

.process-title-v2 p {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
}

.process-cards-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-cards-v2 article {
  background: white;
  padding: 34px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(0,0,0,0.05);
}

.process-cards-v2 article > span {
  width: 54px;
  height: 54px;
  background: var(--red);
  color: white;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 22px;
}

.process-cards-v2 h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.process-cards-v2 p {
  color: #555;
  line-height: 1.65;
}

.process-cards-v2 ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-cards-v2 li {
  background: #f3eee7;
  padding: 8px 10px;
  font-weight: 800;
  font-size: 13px;
}

@media (max-width: 1150px) {
  .home-hero-grid,
  .home-section-head,
  .dark-info-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid-v2,
  .home-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .home-hero-v2,
  .home-trust-band,
  .home-services-v2,
  .home-products-v2,
  .home-process-v2,
  .home-dark-info {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-mini-facts,
  .trust-grid-v2,
  .home-product-grid,
  .process-cards-v2 {
    grid-template-columns: 1fr;
  }

  .service-showcase-grid article {
    grid-template-columns: 1fr;
  }

  .home-hero-visual,
  .home-hero-visual img {
    min-height: 330px;
  }
}

/* FEIERMIETE SCREENSHOT STYLE */
.clean-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.98) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.clean-header nav a.active {
  color: var(--red);
  border-bottom: 3px solid var(--red);
  padding-bottom: 10px;
}

.fm-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 560px;
  background: #fff;
}

.fm-hero-text {
  padding: 70px 0 48px max(54px, calc((100vw - 1480px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fm-hero-text h1 {
  font-size: clamp(54px, 6.3vw, 96px);
  line-height: .92;
  letter-spacing: -0.075em;
  max-width: 780px;
  margin: 12px 0 22px;
}

.fm-hero-text p {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.65;
  color: #333;
}

.fm-hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 26px;
}

.fm-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
  max-width: 720px;
}

.fm-facts div {
  border-left: 1px solid #ddd;
  padding-left: 18px;
}

.fm-facts div:first-child {
  border-left: 0;
  padding-left: 0;
}

.fm-facts strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.fm-facts span {
  color: #666;
  font-size: 13px;
}

.fm-hero-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.fm-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.fm-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.75) 18%, rgba(255,255,255,0) 45%);
  z-index: 1;
}

.fm-hero-card {
  position: absolute;
  right: 70px;
  bottom: 60px;
  z-index: 2;
  background: rgba(15,15,15,.88);
  color: white;
  padding: 26px 30px;
  max-width: 360px;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
}

.fm-hero-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.fm-hero-card span {
  color: #e6e6e6;
  line-height: 1.55;
}

.fm-service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: white;
}

.fm-service-strip article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 165px;
  border-right: 1px solid #eee;
}

.fm-service-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fm-service-strip div {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fm-service-strip span, .small-red {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fm-service-strip h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.fm-service-strip p {
  color: #555;
  line-height: 1.45;
  font-size: 14px;
}

.fm-products-why {
  display: grid;
  grid-template-columns: .75fr 1.75fr .95fr;
  gap: 34px;
  padding: 62px max(54px, calc((100vw - 1480px) / 2));
  background: #fff;
  align-items: stretch;
}

.fm-products-left h2, .fm-why-box h2 {
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: 18px;
}

.fm-products-left p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 28px;
}

.fm-product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.compact-product {
  background: #fff;
  border: 1px solid #e8e2d8;
  box-shadow: 0 14px 35px rgba(0,0,0,.055);
  overflow: hidden;
}

.compact-product-image {
  height: 150px;
  background: #f4f4f4;
}

.compact-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compact-product-body {
  padding: 18px;
}

.compact-product h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.compact-product p {
  color: #555;
  font-size: 14px;
  line-height: 1.45;
  min-height: 62px;
}

.compact-product-row {
  border-top: 1px solid #eee;
  padding-top: 12px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.compact-product-row a {
  background: #111;
  color: #fff;
  padding: 9px 12px;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
}

.fm-why-box {
  position: relative;
  background: #f7f3ee;
  padding: 34px;
  overflow: hidden;
}

.fm-why-box ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  position: relative;
  z-index: 2;
}

.fm-why-box li {
  margin-bottom: 16px;
  padding-left: 22px;
  position: relative;
}

.fm-why-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.fm-why-box li strong {
  display: block;
  margin-bottom: 4px;
}

.fm-why-box li span {
  color: #555;
  line-height: 1.45;
}

.fm-why-box img {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 240px;
  opacity: .95;
}

.fm-dark-process {
  background: linear-gradient(135deg, #101010, #1c1c1c);
  color: white;
  padding: 42px 54px;
}

.fm-dark-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr auto;
  gap: 32px;
  align-items: center;
}

.fm-dark-grid h2 {
  color: white;
  font-size: 38px;
  line-height: 1;
}

.fm-dark-grid span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}

.fm-dark-grid strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.fm-dark-grid p {
  color: #ccc;
  line-height: 1.45;
  margin: 0;
}

.footer-v2 {
  background: #111;
  color: white;
}

.footer-top-process {
  display: none;
}

.footer-main-grid {
  padding: 44px 54px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
  gap: 34px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-main-grid h4 {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  margin-bottom: 14px;
}

.footer-main-grid p, .footer-main-grid a {
  display: block;
  color: #ccc;
  text-decoration: none;
  line-height: 1.7;
}

.footer-brand strong {
  color: var(--red);
  text-transform: uppercase;
  font-size: 32px;
  letter-spacing: -.04em;
}

.footer-brand span {
  display: block;
  color: #ddd;
}

@media (max-width: 1250px) {
  .fm-hero, .fm-products-why {
    grid-template-columns: 1fr;
  }

  .fm-service-strip, .fm-product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .fm-dark-grid, .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .fm-hero-text, .fm-products-why {
    padding-left: 22px;
    padding-right: 22px;
  }

  .fm-service-strip, .fm-product-list, .fm-facts, .fm-dark-grid, .footer-main-grid {
    grid-template-columns: 1fr;
  }

  .fm-service-strip article {
    grid-template-columns: 1fr;
  }

  .fm-hero-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

/* HOMEPAGE REPAIR + MORE CONTENT */
.fm-hero {
  min-height: auto !important;
  grid-template-columns: 0.9fr 1.1fr !important;
}

.fm-hero-text {
  padding-top: 58px !important;
  padding-bottom: 58px !important;
}

.fm-hero-text h1 {
  font-size: clamp(48px, 5.2vw, 82px) !important;
  line-height: 0.94 !important;
  max-width: 720px !important;
}

.fm-hero-text p {
  max-width: 650px !important;
  font-size: 17px !important;
}

.fm-hero-image,
.fm-hero-image img {
  min-height: 520px !important;
}

.fm-hero-card {
  right: 52px !important;
  bottom: 52px !important;
}

.fm-service-strip {
  grid-template-columns: repeat(4, 1fr) !important;
}

.fm-service-strip article {
  min-height: 190px !important;
}

.fm-service-strip h3 {
  font-size: 21px !important;
  line-height: 1.15 !important;
}

.fm-products-why {
  grid-template-columns: 0.75fr 1.45fr 0.85fr !important;
  gap: 28px !important;
  align-items: start !important;
  overflow: hidden !important;
}

.fm-product-list {
  grid-template-columns: repeat(2, 1fr) !important;
}

.compact-product-image {
  height: 170px !important;
}

.compact-product p {
  min-height: auto !important;
}

.fm-why-box {
  min-height: 560px !important;
}

.fm-why-box h2 {
  font-size: clamp(36px, 3.1vw, 50px) !important;
}

.fm-why-box img {
  width: 210px !important;
  opacity: .55 !important;
}

.fm-detail-section {
  padding: 92px 54px;
  background: #ffffff;
}

.fm-detail-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.fm-detail-grid h2,
.fm-section-center h2,
.fm-faq-grid h2,
.fm-final-grid h2 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: .95;
  letter-spacing: -.065em;
  margin-bottom: 22px;
}

.fm-detail-grid p,
.fm-section-center p,
.fm-faq-grid p,
.fm-final-grid p {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
}

.fm-detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.fm-detail-list div {
  background: #f7f3ee;
  border: 1px solid #e8e2d8;
  padding: 28px;
  min-height: 170px;
}

.fm-detail-list strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}

.fm-detail-list span {
  color: #555;
  line-height: 1.6;
}

.fm-package-section {
  padding: 92px 54px;
  background: #f7f3ee;
}

.fm-section-center {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 48px;
}

.fm-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fm-package-grid article {
  background: white;
  border: 1px solid #e8e2d8;
  padding: 34px;
  box-shadow: 0 20px 55px rgba(0,0,0,.055);
}

.fm-package-grid article > strong {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.fm-package-grid h3 {
  font-size: 32px;
  margin: 18px 0 12px;
}

.fm-package-grid p {
  color: #555;
  line-height: 1.6;
}

.fm-package-grid ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.fm-package-grid li {
  padding: 9px 0 9px 22px;
  border-top: 1px solid #eee;
  position: relative;
  font-weight: 700;
}

.fm-package-grid li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
}

.fm-faq-section {
  padding: 92px 54px;
  background: #ffffff;
}

.fm-faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.fm-faq-list {
  display: grid;
  gap: 14px;
}

.fm-faq-list details {
  background: #f7f3ee;
  border: 1px solid #e8e2d8;
  padding: 0;
}

.fm-faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 28px;
  font-size: 18px;
  font-weight: 900;
}

.fm-faq-list summary::-webkit-details-marker {
  display: none;
}

.fm-faq-list p {
  padding: 0 28px 26px;
  margin: 0;
  color: #555;
  line-height: 1.7;
}

.fm-final-cta {
  padding: 78px 54px;
  background: linear-gradient(135deg, #111, #1d1d1d);
  color: white;
}

.fm-final-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.fm-final-grid h2 {
  color: white;
}

.fm-final-grid p {
  color: #d0d0d0;
  max-width: 760px;
}

.footer-v2 {
  margin-top: 0 !important;
}

@media (max-width: 1250px) {
  .fm-hero,
  .fm-products-why,
  .fm-detail-grid,
  .fm-faq-grid,
  .fm-final-grid {
    grid-template-columns: 1fr !important;
  }

  .fm-service-strip {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .fm-product-list,
  .fm-detail-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 760px) {
  .fm-detail-section,
  .fm-package-section,
  .fm-faq-section,
  .fm-final-cta {
    padding-left: 22px;
    padding-right: 22px;
  }

  .fm-service-strip,
  .fm-product-list,
  .fm-detail-list,
  .fm-package-grid {
    grid-template-columns: 1fr !important;
  }
}

/* FINAL HOMEPAGE PHOTO + LAYOUT FIX */
html, body {
  overflow-x: hidden;
}

.fm-hero {
  grid-template-columns: 0.92fr 1.08fr !important;
  min-height: 610px !important;
  background: #fff !important;
}

.fm-hero-text {
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}

.fm-hero-text h1 {
  font-size: clamp(46px, 4.8vw, 78px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.065em !important;
  max-width: 690px !important;
}

.fm-hero-text p {
  font-size: 17px !important;
  line-height: 1.65 !important;
  max-width: 650px !important;
}

.fm-hero-image,
.fm-hero-image img {
  min-height: 610px !important;
  height: 610px !important;
}

.fm-hero-image img {
  object-fit: cover !important;
  filter: saturate(1.03) contrast(1.02);
}

.fm-hero-image::before {
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.82) 16%, rgba(255,255,255,0) 48%) !important;
}

.fm-hero-card {
  right: 54px !important;
  bottom: 54px !important;
  max-width: 370px !important;
}

.fm-facts {
  margin-top: 28px !important;
}

.fm-service-strip {
  grid-template-columns: repeat(4, 1fr) !important;
  background: #fff !important;
}

.fm-service-strip article {
  grid-template-columns: 1fr !important;
  min-height: 300px !important;
}

.fm-service-strip img {
  height: 150px !important;
  object-fit: cover !important;
}

.fm-service-strip div {
  padding: 24px !important;
}

.fm-service-strip h3 {
  font-size: 22px !important;
  line-height: 1.12 !important;
}

.fm-products-why {
  grid-template-columns: 340px 1fr 380px !important;
  align-items: start !important;
  overflow: visible !important;
  padding-top: 74px !important;
  padding-bottom: 74px !important;
}

.fm-product-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.compact-product {
  overflow: hidden !important;
}

.compact-product-image {
  height: 175px !important;
}

.compact-product-image img {
  object-fit: cover !important;
}

.compact-product-body {
  padding: 20px !important;
}

.compact-product h3 {
  font-size: 22px !important;
  line-height: 1.12 !important;
}

.compact-product p {
  min-height: 64px !important;
  font-size: 14px !important;
}

.fm-why-box {
  min-height: 520px !important;
  overflow: hidden !important;
  padding: 32px !important;
}

.fm-why-box h2 {
  font-size: 42px !important;
  line-height: 0.98 !important;
  letter-spacing: -0.055em !important;
}

.fm-why-box img {
  width: 180px !important;
  opacity: .42 !important;
}

.fm-dark-process {
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}

.fm-detail-section,
.fm-package-section,
.fm-faq-section,
.fm-final-cta {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

.fm-package-section {
  margin-top: 0 !important;
}

.fm-faq-section {
  background: #fff !important;
}

.fm-final-cta {
  background: linear-gradient(135deg, #111 0%, #1c1c1c 100%) !important;
}

@media (max-width: 1250px) {
  .fm-hero,
  .fm-products-why {
    grid-template-columns: 1fr !important;
  }

  .fm-service-strip {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .fm-product-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 760px) {
  .fm-hero-text {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .fm-service-strip,
  .fm-product-list {
    grid-template-columns: 1fr !important;
  }

  .fm-hero-image,
  .fm-hero-image img {
    height: 360px !important;
    min-height: 360px !important;
  }
}

/* PREMIUM PRODUCT SECTION FIX */
.fm-products-premium {
  padding: 86px 54px;
  background: #fff;
}

.fm-products-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: stretch;
  margin-bottom: 36px;
}

.fm-products-top h2 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  margin-bottom: 18px;
  max-width: 620px;
}

.fm-products-top p {
  color: #555;
  font-size: 17px;
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 26px;
}

.fm-why-premium {
  background: #f7f3ee;
  border: 1px solid #e8e2d8;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 34px;
  align-items: start;
}

.fm-why-premium h3 {
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0;
}

.fm-why-premium ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.fm-why-premium li {
  position: relative;
  padding-left: 26px;
}

.fm-why-premium li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}

.fm-why-premium strong {
  display: block;
  font-size: 17px;
  margin-bottom: 5px;
}

.fm-why-premium span {
  color: #555;
  line-height: 1.55;
}

.fm-product-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.fm-products-premium .compact-product {
  min-height: auto !important;
}

.fm-products-premium .compact-product-image {
  height: 160px !important;
}

.fm-products-premium .compact-product-body {
  padding: 20px !important;
}

.fm-products-premium .compact-product h3 {
  font-size: 22px !important;
  line-height: 1.12 !important;
}

.fm-products-premium .compact-product p {
  min-height: 58px !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.fm-products-premium .compact-product-row {
  margin-top: 14px !important;
}

@media (max-width: 1200px) {
  .fm-products-top {
    grid-template-columns: 1fr;
  }

  .fm-product-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .fm-why-premium {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .fm-products-premium {
    padding-left: 22px;
    padding-right: 22px;
  }

  .fm-product-row {
    grid-template-columns: 1fr;
  }
}

.fm-why-box img,
.fm-why-premium img {
  display: none !important;
}

/* SERVICE STRIP CLEANER */
.fm-service-strip {
  border-top: 1px solid #eee !important;
  border-bottom: 1px solid #eee !important;
}

.fm-service-strip article {
  min-height: 270px !important;
  background: #fff !important;
}

.fm-service-strip img {
  height: 135px !important;
}

.fm-service-strip div {
  padding: 22px 24px 26px !important;
}

.fm-service-strip h3 {
  font-size: 21px !important;
}

.fm-service-strip p {
  max-width: 300px;
}

/* SERVICE STRIP CLEANER */
.fm-service-strip {
  border-top: 1px solid #eee !important;
  border-bottom: 1px solid #eee !important;
}

.fm-service-strip article {
  min-height: 270px !important;
  background: #fff !important;
}

.fm-service-strip img {
  height: 135px !important;
}

.fm-service-strip div {
  padding: 22px 24px 26px !important;
}

.fm-service-strip h3 {
  font-size: 21px !important;
}

.fm-service-strip p {
  max-width: 300px;
}

/* PRODUCT BOARD FINAL FIX */
.fm-products-board {
  padding: 72px 54px 82px;
  background: #fff;
}

.fm-products-board-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: stretch;
}

.fm-products-board-intro {
  padding-top: 10px;
}

.fm-products-board-intro h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  margin-bottom: 18px;
}

.fm-products-board-intro p {
  color: #555;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.fm-board-product-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fm-board-product-list .compact-product {
  box-shadow: 0 18px 48px rgba(0,0,0,0.055) !important;
  border: 1px solid #e8e2d8 !important;
  background: #fff !important;
  min-height: auto !important;
}

.fm-board-product-list .compact-product-image {
  height: 145px !important;
}

.fm-board-product-list .compact-product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.fm-board-product-list .compact-product-body {
  padding: 18px !important;
}

.fm-board-product-list .compact-product h3 {
  font-size: 20px !important;
  line-height: 1.12 !important;
  margin-bottom: 8px !important;
}

.fm-board-product-list .compact-product p {
  font-size: 13.5px !important;
  line-height: 1.45 !important;
  min-height: 58px !important;
}

.fm-board-product-list .compact-product-row {
  margin-top: 12px !important;
  padding-top: 12px !important;
}

.fm-board-product-list .compact-product-row strong {
  font-size: 14px !important;
}

.fm-board-product-list .compact-product-row a {
  padding: 9px 11px !important;
  font-size: 13px !important;
}

.fm-board-why {
  background: #f7f3ee;
  border: 1px solid #e8e2d8;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fm-board-why h3 {
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0 0 28px;
}

.fm-board-why ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.fm-board-why li {
  position: relative;
  padding-left: 24px;
}

.fm-board-why li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}

.fm-board-why strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.fm-board-why span {
  color: #555;
  line-height: 1.5;
  font-size: 14px;
}

@media (max-width: 1300px) {
  .fm-products-board-grid {
    grid-template-columns: 1fr;
  }

  .fm-board-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .fm-products-board {
    padding-left: 22px;
    padding-right: 22px;
  }

  .fm-board-product-list {
    grid-template-columns: 1fr;
  }
}

/* FINAL PRODUCT SECTION WIDTH FIX */
.fm-products-board {
  padding: 86px 54px 92px !important;
  background: #fff !important;
}

.fm-products-board-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 42px !important;
  align-items: stretch !important;
}

.fm-products-board-intro {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.fm-products-board-intro h2 {
  font-size: clamp(48px, 5vw, 78px) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.07em !important;
  max-width: 680px !important;
}

.fm-products-board-intro p {
  max-width: 620px !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
}

.fm-board-why {
  grid-column: 2 !important;
  grid-row: 1 !important;
  min-height: auto !important;
  padding: 42px !important;
}

.fm-board-why h3 {
  font-size: clamp(42px, 4.5vw, 68px) !important;
  line-height: 0.95 !important;
  max-width: 620px !important;
}

.fm-board-why ul {
  grid-template-columns: 1fr !important;
}

.fm-board-product-list {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin-top: 18px !important;
}

.fm-board-product-list .compact-product {
  min-height: 420px !important;
  display: flex !important;
  flex-direction: column !important;
}

.fm-board-product-list .compact-product-image {
  height: 190px !important;
  flex: 0 0 190px !important;
}

.fm-board-product-list .compact-product-body {
  padding: 22px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.fm-board-product-list .small-red,
.fm-board-product-list .home-product-category {
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  line-height: 1.25 !important;
}

.fm-board-product-list .compact-product h3 {
  font-size: 25px !important;
  line-height: 1.1 !important;
  margin: 12px 0 10px !important;
}

.fm-board-product-list .compact-product p {
  font-size: 15px !important;
  line-height: 1.55 !important;
  min-height: 70px !important;
}

.fm-board-product-list .compact-product-row {
  margin-top: auto !important;
  padding-top: 16px !important;
}

.fm-board-product-list .compact-product-row strong {
  font-size: 15px !important;
  white-space: nowrap !important;
}

.fm-board-product-list .compact-product-row a {
  padding: 11px 15px !important;
  font-size: 14px !important;
}

@media (max-width: 1250px) {
  .fm-products-board-grid {
    grid-template-columns: 1fr !important;
  }

  .fm-board-why {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .fm-board-product-list {
    grid-column: auto !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .fm-products-board {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .fm-board-product-list {
    grid-template-columns: 1fr !important;
  }
}

/* ACTIVE NAVIGATION */
.site-header nav a.active {
  color: var(--red) !important;
  border-bottom: 3px solid var(--red) !important;
  padding-bottom: 10px !important;
}

.site-header nav a.nav-button.active {
  color: white !important;
  border-bottom: none !important;
  padding-bottom: 14px !important;
  background: var(--red) !important;
}

.site-header nav a:not(.nav-button):hover {
  color: var(--red) !important;
}

/* EQUIPMENT PAGE CATEGORY VISUAL UPGRADE */
.premium-categories {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.premium-categories div {
  background: #fff !important;
  border: 1px solid #e8e2d8 !important;
  min-height: 230px !important;
  padding: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 18px 48px rgba(0,0,0,0.045) !important;
}

.premium-categories div::before {
  content: "" !important;
  display: block !important;
  height: 105px !important;
  background-size: cover !important;
  background-position: center !important;
  margin-bottom: 24px !important;
}

.premium-categories div:nth-child(1)::before {
  background-image: url("/public/images/equipment-photo.jpg") !important;
}

.premium-categories div:nth-child(2)::before {
  background-image: url("/public/images/equipment-photo.jpg") !important;
}

.premium-categories div:nth-child(3)::before {
  background-image: url("/public/images/cutlery-set.jpg") !important;
}

.premium-categories div:nth-child(4)::before {
  background-image: url("/public/images/buffet-table.jpg") !important;
}

.premium-categories div:nth-child(5)::before {
  background-image: url("/public/images/drinks-dispenser.jpg") !important;
}

.premium-categories div:nth-child(6)::before {
  background-image: url("/public/images/gastro-kitchen.jpg") !important;
}

.premium-categories div:nth-child(7)::before {
  background-image: url("/public/images/service-photo.jpg") !important;
}

.premium-categories div:nth-child(8)::before {
  background-image: url("/public/images/hero-event.jpg") !important;
}

.premium-categories div strong {
  display: block !important;
  padding: 0 26px !important;
  font-size: 20px !important;
  line-height: 1.15 !important;
  margin-bottom: 10px !important;
}

.premium-categories div span {
  display: block !important;
  padding: 0 26px 26px !important;
  color: #555 !important;
  line-height: 1.55 !important;
}

.premium-categories div::after {
  display: none !important;
}

/* EQUIPMENT PAGE HERO / INTRO CLEANUP */
.visual-hero {
  padding-top: 86px !important;
  padding-bottom: 86px !important;
}

.visual-hero h1 {
  max-width: 920px !important;
}

.content-band {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.subpage-section.cream {
  padding-top: 76px !important;
  padding-bottom: 76px !important;
}

/* EQUIPMENT PRODUCT GRID CLEANUP */
.shop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.shop-card-image {
  height: 190px !important;
}

.shop-card-body {
  padding: 24px !important;
}

.shop-card h3 {
  font-size: 25px !important;
  line-height: 1.12 !important;
}

.shop-card p {
  min-height: 72px !important;
}

@media (max-width: 1200px) {
  .premium-categories,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .premium-categories,
  .shop-grid {
    grid-template-columns: 1fr !important;
  }
}

/* FEIERMIETE CART */
.fm-cart-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  border: 0;
  background: #111;
  color: white;
  padding: 15px 18px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fm-cart-float strong {
  min-width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fm-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.42);
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}

.fm-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(460px, 92vw);
  height: 100vh;
  background: white;
  z-index: 2200;
  transform: translateX(100%);
  transition: .25s ease;
  box-shadow: -20px 0 70px rgba(0,0,0,.22);
  display: flex;
  flex-direction: column;
}

body.cart-open .fm-cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.cart-open .fm-cart-drawer {
  transform: translateX(0);
}

.fm-cart-head {
  padding: 26px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.fm-cart-head span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fm-cart-head h3 {
  font-size: 34px;
  margin: 6px 0 0;
  line-height: 1;
}

.fm-cart-close {
  border: 0;
  background: #111;
  color: white;
  width: 42px;
  height: 42px;
  font-size: 28px;
  cursor: pointer;
}

.fm-cart-body {
  padding: 20px;
  overflow: auto;
  flex: 1;
}

.fm-cart-empty {
  background: #f7f3ee;
  padding: 22px;
  color: #555;
}

.fm-cart-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  border: 1px solid #eee;
  padding: 12px;
  margin-bottom: 14px;
}

.fm-cart-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.fm-cart-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.fm-cart-item span {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fm-cart-item small {
  display: block;
  margin-top: 4px;
  color: #666;
}

.fm-cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.fm-cart-qty button {
  border: 0;
  background: #111;
  color: white;
  font-weight: 900;
  min-width: 30px;
  height: 30px;
  cursor: pointer;
}

.fm-cart-remove {
  padding: 0 10px;
  background: #eee !important;
  color: #111 !important;
}

.fm-cart-footer {
  padding: 22px;
  border-top: 1px solid #eee;
}

.fm-cart-footer p {
  color: #555;
  line-height: 1.5;
  margin-bottom: 14px;
}

.fm-cart-request {
  display: block;
  background: var(--red);
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 16px;
  font-weight: 900;
}

.fm-cart-summary-box {
  background: #f7f3ee;
  border: 1px solid #e8e2d8;
  padding: 24px;
  margin-bottom: 24px;
}

.fm-cart-summary-box h3 {
  font-size: 26px;
  margin: 8px 0 14px;
}

.fm-cart-summary-box pre {
  white-space: pre-wrap;
  font-family: inherit;
  line-height: 1.6;
  margin: 0;
}

.js-add-to-cart {
  cursor: pointer;
}

/* ANFRAGEKORB */
.fm-cart-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 3000;
  background: #111;
  color: white;
  border: 0;
  padding: 15px 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
  display: flex;
  gap: 12px;
  align-items: center;
}

.fm-cart-button b {
  background: var(--red);
  color: white;
  border-radius: 999px;
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fm-cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 3100;
  opacity: 0;
  pointer-events: none;
}

.fm-cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(470px, 94vw);
  height: 100vh;
  background: white;
  z-index: 3200;
  transform: translateX(100%);
  transition: .22s ease;
  box-shadow: -24px 0 70px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
}

body.fm-cart-open .fm-cart-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.fm-cart-open .fm-cart-panel {
  transform: translateX(0);
}

.fm-cart-header {
  padding: 26px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.fm-cart-header span {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
}

.fm-cart-header h3 {
  font-size: 34px;
  margin: 6px 0 0;
}

.fm-cart-x {
  width: 42px;
  height: 42px;
  background: #111;
  color: white;
  border: 0;
  font-size: 28px;
  cursor: pointer;
}

.fm-cart-items {
  padding: 20px;
  overflow: auto;
  flex: 1;
}

.fm-cart-empty {
  background: #f7f3ee;
  padding: 20px;
  color: #555;
}

.fm-cart-line {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  border: 1px solid #eee;
  padding: 12px;
  margin-bottom: 14px;
}

.fm-cart-line img {
  width: 92px;
  height: 92px;
  object-fit: cover;
}

.fm-cart-line strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.fm-cart-line span {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fm-cart-line small {
  display: block;
  color: #666;
  margin-top: 4px;
}

.fm-cart-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.fm-cart-controls button {
  border: 0;
  background: #111;
  color: white;
  min-width: 32px;
  height: 32px;
  font-weight: 900;
  cursor: pointer;
}

.fm-cart-controls button[data-remove] {
  background: #eee;
  color: #111;
  padding: 0 10px;
}

.fm-cart-bottom {
  padding: 22px;
  border-top: 1px solid #eee;
}

.fm-cart-bottom p {
  color: #555;
  line-height: 1.5;
  margin-bottom: 14px;
}

.fm-cart-submit {
  display: block;
  background: var(--red);
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 16px;
  font-weight: 900;
}

.fm-selected-products {
  background: #f7f3ee;
  border: 1px solid #e8e2d8;
  padding: 24px;
  margin-bottom: 24px;
}

.fm-selected-products h3 {
  font-size: 26px;
  margin: 8px 0 14px;
}

.fm-selected-products pre {
  font-family: inherit;
  white-space: pre-wrap;
  line-height: 1.6;
  margin: 0;
}

/* CATEGORY IMAGE DIFFERENTIATION */
.premium-categories div:nth-child(1)::before {
  background-image: url("/public/images/pavillon-6x3.svg") !important;
}

.premium-categories div:nth-child(2)::before {
  background-image: url("/public/images/stehtisch.svg") !important;
}

.premium-categories div:nth-child(5)::before {
  background-image: url("/public/images/drinks-dispenser.jpg") !important;
}

/* SVG PRODUCT IMAGE CLEANUP */
.shop-card-image img[src$=".svg"],
.compact-product-image img[src$=".svg"] {
  object-fit: contain !important;
  padding: 14px !important;
  background: #f7f3ee !important;
}

.premium-categories div:nth-child(1)::before,
.premium-categories div:nth-child(2)::before {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-color: #f7f3ee !important;
}

.shop-card-image {
  background: #f7f3ee !important;
}

/* FINAL CATEGORY PHOTOS */
.premium-categories div::before {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 0 !important;
}

.premium-categories div:nth-child(1)::before {
  background-image: url("/public/images/pavillon-6x3.jpg") !important;
}

.premium-categories div:nth-child(2)::before {
  background-image: url("/public/images/stehtisch.jpg") !important;
}

.premium-categories div:nth-child(3)::before {
  background-image: url("/public/images/cutlery-set.jpg") !important;
}

.premium-categories div:nth-child(4)::before {
  background-image: url("/public/images/buffet-table.jpg") !important;
}

.premium-categories div:nth-child(5)::before {
  background-image: url("/public/images/drinks-dispenser.jpg") !important;
}

.premium-categories div:nth-child(6)::before {
  background-image: url("/public/images/gastro-kitchen.jpg") !important;
}

.premium-categories div:nth-child(7)::before {
  background-image: url("/public/images/service-photo.jpg") !important;
}

.premium-categories div:nth-child(8)::before {
  background-image: url("/public/images/bierzeltgarnitur.jpg") !important;
}

/* FINAL CATEGORY PHOTOS */
.premium-categories div::before {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 0 !important;
}

.premium-categories div:nth-child(1)::before {
  background-image: url("/public/images/pavillon-6x3.jpg") !important;
}

.premium-categories div:nth-child(2)::before {
  background-image: url("/public/images/stehtisch.jpg") !important;
}

.premium-categories div:nth-child(3)::before {
  background-image: url("/public/images/cutlery-set.jpg") !important;
}

.premium-categories div:nth-child(4)::before {
  background-image: url("/public/images/buffet-table.jpg") !important;
}

.premium-categories div:nth-child(5)::before {
  background-image: url("/public/images/drinks-dispenser.jpg") !important;
}

.premium-categories div:nth-child(6)::before {
  background-image: url("/public/images/gastro-kitchen.jpg") !important;
}

.premium-categories div:nth-child(7)::before {
  background-image: url("/public/images/service-photo.jpg") !important;
}

.premium-categories div:nth-child(8)::before {
  background-image: url("/public/images/bierzeltgarnitur.jpg") !important;
}

/* FINAL FIX: CATEGORY PHOTOS FULL WIDTH */
.premium-categories div {
  min-height: 245px !important;
  overflow: hidden !important;
}

.premium-categories div::before {
  content: "" !important;
  display: block !important;
  width: 100% !important;
  height: 125px !important;
  margin: 0 0 24px 0 !important;
  padding: 0 !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}

/* alte SVG/contain-Regeln endgültig überschreiben */
.premium-categories div:nth-child(1)::before,
.premium-categories div:nth-child(2)::before,
.premium-categories div:nth-child(3)::before,
.premium-categories div:nth-child(4)::before,
.premium-categories div:nth-child(5)::before,
.premium-categories div:nth-child(6)::before,
.premium-categories div:nth-child(7)::before,
.premium-categories div:nth-child(8)::before {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

/* richtige Bilder je Kategorie */
.premium-categories div:nth-child(1)::before {
  background-image: url("/public/images/pavillon-6x3.jpg") !important;
}

.premium-categories div:nth-child(2)::before {
  background-image: url("/public/images/stehtisch.jpg") !important;
}

.premium-categories div:nth-child(3)::before {
  background-image: url("/public/images/cutlery-set.jpg") !important;
}

.premium-categories div:nth-child(4)::before {
  background-image: url("/public/images/buffet-table.jpg") !important;
}

.premium-categories div:nth-child(5)::before {
  background-image: url("/public/images/drinks-dispenser.jpg") !important;
}

.premium-categories div:nth-child(6)::before {
  background-image: url("/public/images/gastro-kitchen.jpg") !important;
}

.premium-categories div:nth-child(7)::before {
  background-image: url("/public/images/service-photo.jpg") !important;
}

.premium-categories div:nth-child(8)::before {
  background-image: url("/public/images/bierzeltgarnitur.jpg") !important;
}

.premium-categories div strong {
  padding: 0 24px !important;
}

.premium-categories div span {
  padding: 0 24px 24px !important;
}

/* FINAL BIG CATEGORY IMAGE FIX */
.premium-categories {
  align-items: stretch !important;
}

.premium-categories > div {
  padding: 0 !important;
  min-height: 285px !important;
  overflow: hidden !important;
  background: #fff !important;
}

.premium-categories > div::before {
  content: "" !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 165px !important;
  min-height: 165px !important;
  margin: 0 0 24px 0 !important;
  padding: 0 !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #f7f3ee !important;
  border-radius: 0 !important;
}

/* falls echte img-Tags in den Kategorie-Karten sind */
.premium-categories > div img,
.category-card img,
.category-image img {
  width: 100% !important;
  max-width: none !important;
  height: 165px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* richtige Bilder je Kategorie */
.premium-categories > div:nth-child(1)::before {
  background-image: url("/public/images/pavillon-6x3.jpg") !important;
}

.premium-categories > div:nth-child(2)::before {
  background-image: url("/public/images/stehtisch.jpg") !important;
}

.premium-categories > div:nth-child(3)::before {
  background-image: url("/public/images/cutlery-set.jpg") !important;
}

.premium-categories > div:nth-child(4)::before {
  background-image: url("/public/images/buffet-table.jpg") !important;
}

.premium-categories > div:nth-child(5)::before {
  background-image: url("/public/images/drinks-dispenser.jpg") !important;
}

.premium-categories > div:nth-child(6)::before {
  background-image: url("/public/images/gastro-kitchen.jpg") !important;
}

.premium-categories > div:nth-child(7)::before {
  background-image: url("/public/images/service-photo.jpg") !important;
}

.premium-categories > div:nth-child(8)::before {
  background-image: url("/public/images/bierzeltgarnitur.jpg") !important;
}

.premium-categories > div strong {
  display: block !important;
  padding: 0 24px !important;
  margin: 0 0 8px 0 !important;
}

.premium-categories > div span,
.premium-categories > div p {
  display: block !important;
  padding: 0 24px 24px 24px !important;
  margin: 0 !important;
}

/* PRODUCT META WITH DEPOSIT */
.shop-card-meta {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
  border-top: 1px solid #eee !important;
  padding-top: 18px !important;
  margin-top: 24px !important;
}

.shop-card-meta div {
  min-width: 0 !important;
}

.shop-card-meta span {
  display: block !important;
  color: #777 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  margin-bottom: 5px !important;
}

.shop-card-meta strong {
  display: block !important;
  color: #111 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

@media (max-width: 700px) {
  .shop-card-meta {
    grid-template-columns: 1fr !important;
  }
}

/* ADMIN INQUIRY DETAIL */
.admin-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.admin-info-list {
  display: grid;
  gap: 12px;
}

.admin-info-list div {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.admin-info-list span {
  display: block;
  font-size: 11px;
  font-weight: 900;
  color: #777;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.admin-info-list strong {
  font-size: 16px;
}

.admin-message-box {
  background: #f7f3ee;
  padding: 18px;
  white-space: pre-wrap;
  font-family: inherit;
  line-height: 1.5;
  min-height: 220px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-row.full {
  grid-column: 1 / -1;
}

.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px;
  font: inherit;
}

@media (max-width: 900px) {
  .admin-detail-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* REQUEST CART WITH QUANTITY */
.cart-qty-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0 12px;
}

.cart-qty-box label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #777;
}

.cart-qty-box > div {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  background: #fff;
}

.cart-qty-box button {
  width: 36px;
  height: 36px;
  border: 0;
  background: #111;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.cart-qty-input {
  width: 58px;
  height: 36px;
  border: 0;
  text-align: center;
  font-weight: 900;
  font-size: 15px;
}

.floating-request-cart {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;
  background: #111;
  color: #fff;
  text-decoration: none;
  padding: 16px 18px;
  display: none;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 45px rgba(0,0,0,.25);
  font-weight: 900;
}

.floating-request-cart strong {
  background: #d40016;
  color: #fff;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.inquiry-cart-preview {
  background: #f7f3ee;
  border: 1px solid #e7ded3;
  padding: 22px;
  margin-bottom: 24px;
}

.inquiry-cart-preview h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.inquiry-cart-preview p {
  margin: 0 0 16px;
  color: #555;
}

.inquiry-cart-items {
  display: grid;
  gap: 10px;
}

.inquiry-cart-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: center;
}

.inquiry-cart-item strong {
  font-size: 16px;
}

.inquiry-cart-item span {
  color: #555;
  font-size: 14px;
}

.inquiry-cart-item button {
  grid-row: 1 / span 2;
  border: 0;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 700px) {
  .floating-request-cart {
    right: 16px;
    bottom: 16px;
  }

  .inquiry-cart-item {
    grid-template-columns: 1fr;
  }

  .inquiry-cart-item button {
    grid-row: auto;
  }
}

/* ADMIN INQUIRY ITEMS */
.admin-table-wrap {
  overflow-x: auto;
}

.admin-items-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.admin-items-table th,
.admin-items-table td {
  border-bottom: 1px solid #eee;
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
}

.admin-items-table th {
  background: #f7f3ee;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.admin-totals-box {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.admin-totals-box div {
  background: #f7f3ee;
  border: 1px solid #e8e2d8;
  padding: 16px 20px;
  min-width: 220px;
}

.admin-totals-box span {
  display: block;
  color: #777;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.admin-totals-box strong {
  font-size: 22px;
}


/* Anfragekorb oben rechts */
.floating-cart,
.cart-floating,
.inquiry-cart-floating,
.inquiry-cart-button,
.cart-summary-floating,
.anfragekorb-floating {
  position: fixed !important;
  right: 34px !important;
  top: 118px !important;
  bottom: auto !important;
  z-index: 9999 !important;
}

@media (max-width: 768px) {
  .floating-cart,
  .cart-floating,
  .inquiry-cart-floating,
  .inquiry-cart-button,
  .cart-summary-floating,
  .anfragekorb-floating {
    right: 16px !important;
    top: 92px !important;
  }
}
