.mv-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin: 28px 0;
}

/* Startseiten-Bildheader */
.mv-home-hero {
    background: #482f21;
    color: #fff;
    isolation: isolate;
    min-height: clamp(520px, 68vh, 760px);
    overflow: hidden;
    position: relative;
}
.mv-hero-slides,
.mv-hero-slide,
.mv-hero-shade {
    inset: 0;
    position: absolute;
}
.mv-hero-slides { z-index: -3; }
.mv-hero-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 1.25s ease, transform 7s linear;
}
.mv-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}
.mv-hero-shade {
    background: linear-gradient(90deg, rgba(35, 20, 14, .82) 0%, rgba(35, 20, 14, .56) 44%, rgba(35, 20, 14, .16) 75%, rgba(35, 20, 14, .08) 100%);
    z-index: -2;
}
.mv-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    max-width: 1500px;
    min-height: clamp(520px, 68vh, 760px);
    padding: 64px max(28px, 7vw) 82px;
}
.mv-hero-kicker {
    font-size: 14px;
    font-weight: 750;
    letter-spacing: .14em;
    margin: 0 0 18px;
    text-transform: uppercase;
}
.mv-home-hero h1 {
    color: #fff !important;
    font-size: clamp(40px, 5vw, 76px);
    letter-spacing: -.025em;
    line-height: 1.02;
    margin: 0;
    max-width: 880px;
    text-wrap: balance;
}
.mv-hero-subtitle {
    font-size: clamp(19px, 2vw, 28px);
    line-height: 1.45;
    margin: 24px 0 0;
    max-width: 700px;
}
.mv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}
.mv-hero-button {
    border: 2px solid #fff;
    border-radius: 3px;
    color: #fff;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    padding: 12px 19px;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.mv-hero-button-primary { background: #c22222; border-color: #c22222; }
.mv-hero-button-secondary { background: rgba(0, 0, 0, .16); }
.mv-hero-button:hover,
.mv-hero-button:focus-visible { background: #fff; border-color: #fff; color: #482f21; transform: translateY(-2px); }
.mv-hero-status {
    bottom: 25px;
    display: flex;
    gap: 8px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}
.mv-hero-status span {
    background: rgba(255,255,255,.48);
    border-radius: 999px;
    height: 4px;
    transition: background .3s ease, width .3s ease;
    width: 24px;
}
.mv-hero-status span.is-active { background: #fff; width: 42px; }
@media (max-width: 700px) {
    .mv-home-hero, .mv-hero-content { min-height: 520px; }
    .mv-hero-content { padding: 54px 22px 72px; }
    .mv-hero-shade { background: linear-gradient(90deg, rgba(35,20,14,.82), rgba(35,20,14,.42)); }
    .mv-hero-actions { align-items: stretch; flex-direction: column; max-width: 310px; }
}
@media (prefers-reduced-motion: reduce) {
    .mv-hero-slide { transition: none; transform: none; }
    .mv-hero-status { display: none; }
}

.mv-category {
    align-items: center;
    background: #fff;
    border: 1px solid #e4e0dc;
    border-radius: 4px;
    color: #372922;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 600;
    gap: 14px;
    justify-content: center;
    min-height: 190px;
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.mv-category:hover,
.mv-category:focus-visible {
    border-color: #c22222;
    box-shadow: 0 8px 24px rgba(55, 41, 34, .12);
    color: #c22222;
    transform: translateY(-2px);
}

.mv-category img {
    display: block;
    height: 92px;
    max-width: 130px;
    object-fit: contain;
    width: auto;
}

@media (max-width: 900px) {
    .mv-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .mv-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .mv-category { min-height: 150px; padding: 18px 10px; }
    .mv-category img { height: 70px; }
}

.mv-net-price {
    color: #665d58;
    font-size: 15px;
    margin: -14px 0 20px;
}

.mv-net-price span {
    font-size: 13px;
}

.mv-inquiry-form { max-width: 920px; }
.mv-inquiry-form fieldset { border: 0; border-top: 1px solid #ded8d3; margin: 28px 0 0; padding: 22px 0 0; }
.mv-inquiry-form legend { color: #372922; font-size: 21px; font-weight: 700; padding-right: 14px; }
.mv-inquiry-form fieldset > label:not(.mv-radio) { display: grid; gap: 7px; margin: 0 0 16px; max-width: 620px; }
.mv-inquiry-form input[type="text"],
.mv-inquiry-form input[type="email"],
.mv-inquiry-form input[type="tel"],
.mv-inquiry-form input[type="date"],
.mv-inquiry-form textarea { border: 1px solid #aaa19b; border-radius: 3px; box-sizing: border-box; font: inherit; padding: 10px 12px; width: 100%; }
.mv-inquiry-form .mv-radio, .mv-privacy { display: block; margin: 12px 0; }
.mv-inquiry-form button { background: #c22222; color: #fff; font-size: 17px; margin-top: 16px; padding: 13px 20px; }
.mv-inquiry-items { border: 1px solid #ded8d3; margin-bottom: 24px; max-width: 620px; }
.mv-selected-heading { font-size: 20px !important; margin-bottom: 14px; }
.mv-inquiry-items .mv-inquiry-item { align-items: center; display: grid; gap: 12px; grid-template-columns: 64px minmax(0, 1fr) auto; min-height: 64px; padding: 8px 10px; }
.mv-inquiry-items .mv-inquiry-item + .mv-inquiry-item { border-top: 1px solid #ded8d3; }
.mv-inquiry-thumb, .mv-inquiry-thumb img { display: block; height: 64px; object-fit: cover; width: 64px; }
.mv-inquiry-name { display: grid; gap: 4px; min-width: 0; }
.mv-inquiry-name strong { overflow-wrap: anywhere; }
.mv-inquiry-name small { color: #665d58; }
.mv-inquiry-price { text-align: right; white-space: nowrap; }
.mv-unverbindlich { color: #665d58; }
.mv-inquiry-success { background: #eef7ec; border-left: 4px solid #4b9b46; padding: 20px 24px; }
.mv-honeypot { left: -9999px !important; position: absolute !important; }
.mv-turnstile { margin: 22px 0 16px; }
.mv-quantity-label { display: block; font-size: 14px; font-weight: 600; margin: 0 0 6px; }
@media (max-width: 520px) {
    .mv-inquiry-items .mv-inquiry-item { grid-template-columns: 54px minmax(0, 1fr); }
    .mv-inquiry-thumb, .mv-inquiry-thumb img { height: 54px; width: 54px; }
    .mv-inquiry-price { grid-column: 2; text-align: left; }
}

.mv-site-footer {
    background: #f5f3f1;
    color: #372922;
    margin-top: clamp(70px, 9vw, 140px);
    padding: 52px max(28px, 4vw) 22px;
}
.mv-footer-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    margin: 0 auto;
    max-width: 1500px;
}
.mv-site-footer .custom-logo-link { display: inline-block; }
.mv-site-footer .custom-logo { height: auto; max-width: 230px; width: 100%; }
.mv-footer-name { color: #372922; font-size: 20px; font-weight: 800; text-decoration: none; }
.mv-site-footer h2 { font-size: 18px; margin: 0 0 16px; }
.mv-site-footer p { font-size: 15px; line-height: 1.65; margin: 0 0 14px; }
.mv-site-footer ul { list-style: none; margin: 0; padding: 0; }
.mv-site-footer li { margin: 0 0 9px; }
.mv-site-footer a { color: #372922; }
.mv-site-footer a:hover, .mv-site-footer a:focus-visible { color: #c22222; }
.mv-footer-brand p { max-width: 330px; }
.mv-footer-bottom { border-top: 1px solid #ddd6d1; font-size: 13px; margin: 36px auto 0; max-width: 1500px; padding-top: 18px; }
@media (max-width: 980px) {
    .mv-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .mv-site-footer { padding-left: 22px; padding-right: 22px; }
    .mv-footer-grid { grid-template-columns: 1fr; }
}
