/* ========================================
   LRM STARTSEITE 2026
======================================== */

.home-page {
    margin: 0;
    background: #f5f5f3;
}


/* ========================================
   HEADER
======================================== */

.home-header {
    position: absolute;
    top: 0;
    left: 0;

    z-index: 100;

    width: 100%;
    height: 108px;

    padding: 0 42px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    gap: 40px;

    color: #ffffff;

    background: rgba(7, 13, 18, 0.68);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.17);

    backdrop-filter: blur(3px);
}


/* ========================================
   LOGO
======================================== */

.home-brand {
    display: flex;
    align-items: center;

    gap: 18px;
}


.home-brand-lrm {
    color: #f4b51c;

    font-size: 48px;
    line-height: 1;

    font-weight: 900;

    letter-spacing: -3px;
}


.home-brand-text {
    display: flex;
    flex-direction: column;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.05;

    font-weight: 800;

    letter-spacing: 1.7px;
}


/* ========================================
   NAVIGATION
======================================== */

.home-navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 42px;
}


.home-navigation a {
    position: relative;

    padding: 42px 0 31px;

    color: rgba(255, 255, 255, 0.94);

    font-size: 13px;
    font-weight: 700;

    transition: 0.2s;
}


.home-navigation a:hover {
    color: #f4b51c;
}


.home-navigation a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 22px;

    height: 2px;

    background: #f4b51c;
}


/* ========================================
   HEADER RECHTS
======================================== */

.home-header-actions {
    display: flex;
    align-items: center;

    gap: 30px;
}


.home-account,
.home-cart {
    position: relative;

    display: flex;
    align-items: center;

    gap: 9px;

    color: #ffffff;

    font-size: 14px;

    white-space: nowrap;
}


.home-header-icon {
    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}


.home-cart #cart-count {
    position: absolute;

    top: -13px;
    left: 11px;

    min-width: 19px;
    height: 19px;

    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: #f4b51c;
    color: #111111;

    font-size: 10px;
    font-weight: 900;
}


/* ========================================
   HERO
======================================== */

.home-hero {
    position: relative;

    min-height: 900px;

    display: flex;
    align-items: stretch;

    overflow: hidden;

    color: #ffffff;

    background-image:
        url("images/lrm-hero.jpg.png");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;
}


/* dunkler Verlauf links */

.home-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.89) 17%,
            rgba(0, 0, 0, 0.70) 32%,
            rgba(0, 0, 0, 0.35) 49%,
            rgba(0, 0, 0, 0.08) 70%,
            rgba(0, 0, 0, 0.03) 100%
        );
}


/* leichte Abdunklung oben/unten */

.home-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.18),
            transparent 35%,
            rgba(0, 0, 0, 0.20)
        );
}


.home-hero-inner {
    position: relative;

    z-index: 2;

    width: 100%;
    min-height: 900px;

    padding:
        235px 5% 55px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;
}


/* ========================================
   HERO TEXT
======================================== */

.home-hero-main {
    max-width: 720px;
}


.home-hero h1 {
    margin: 0 0 24px;

    color: #ffffff;

    font-size:
        clamp(56px, 5.3vw, 84px);

    line-height: 1.03;

    font-weight: 800;

    letter-spacing: -2.5px;
}


.home-hero-lead {
    margin: 0 0 42px;

    color:
        rgba(255, 255, 255, 0.95);

    font-size:
        clamp(21px, 1.7vw, 28px);

    line-height: 1.45;
}


/* ========================================
   HERO BUTTONS
======================================== */

.home-hero-buttons {
    display: flex;

    gap: 22px;

    flex-wrap: wrap;
}


.home-hero-button {
    min-height: 68px;

    padding: 0 31px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    border-radius: 7px;

    font-size: 18px;
    font-weight: 800;

    transition:
        transform 0.2s,
        background 0.2s,
        border-color 0.2s;
}


.home-hero-button:hover {
    transform: translateY(-2px);
}


.home-hero-button.primary {
    background: #f4b51c;
    color: #101010;

    border: 2px solid #f4b51c;
}


.home-hero-button.primary:hover {
    background: #ffc42d;

    border-color: #ffc42d;
}


.home-hero-button.secondary {
    background:
        rgba(0, 0, 0, 0.23);

    color: #ffffff;

    border:
        2px solid rgba(255, 255, 255, 0.8);

    backdrop-filter: blur(3px);
}


.home-hero-button.secondary:hover {
    background:
        rgba(255, 255, 255, 0.12);
}


.home-button-icon {
    font-size: 23px;
}


/* ========================================
   HERO VORTEILE
======================================== */

.home-hero-benefits {
    width: min(720px, 100%);

    padding-top: 25px;

    display: flex;
    align-items: center;

    gap: 30px;

    border-top:
        1px solid rgba(255, 255, 255, 0.34);
}


.home-hero-benefit {
    display: flex;
    align-items: center;

    gap: 13px;

    color:
        rgba(255, 255, 255, 0.96);

    font-size: 14px;

    line-height: 1.25;
}


.home-benefit-symbol {
    min-width: 35px;

    color: #f4b51c;

    font-size: 29px;

    text-align: center;
}


.home-benefit-divider {
    width: 1px;
    height: 46px;

    background:
        rgba(255, 255, 255, 0.36);
}


/* ========================================
   SHOP – WEICHER ÜBERGANG
======================================== */

.home-page .products-section {
    position: relative;

    padding:
        120px 5% 120px;

    background:
        linear-gradient(
            180deg,
            #11171c 0px,
            #151b20 260px,
            #2a3033 470px,
            #dfe2df 720px,
            #f5f5f3 980px,
            #f5f5f3 100%
        );

    overflow: hidden;
}


/* gelbe Übergangslinie */

.home-page .products-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 5%;

    width: 90%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(244, 181, 28, 0.75),
            transparent
        );
}


/* ========================================
   SHOP ÜBERSCHRIFT
======================================== */

.home-page .products-section .section-heading {
    position: relative;

    max-width: 760px;

    margin:
        0 auto 55px;

    text-align: center;

    z-index: 2;
}


.home-page .products-section .small-title {
    margin-bottom: 10px;

    color: #f4b51c;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
}


.home-page .products-section
.section-heading h2 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size:
        clamp(40px, 4vw, 58px);

    font-weight: 850;

    letter-spacing: -1.5px;
}


.home-page .products-section
.section-heading p:not(.small-title) {
    color:
        rgba(255, 255, 255, 0.72);

    font-size: 17px;

    line-height: 1.6;
}


/* ========================================
   KATEGORIEN
======================================== */

.home-page .main-categories {
    position: relative;

    max-width: 900px;

    margin:
        0 auto 28px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    z-index: 2;
}


.home-page .category-button {
    min-height: 70px;

    padding:
        12px 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border:
        1px solid rgba(255, 255, 255, 0.22);

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.07);

    color: #ffffff;

    backdrop-filter: blur(8px);

    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    transition:
        0.2s;
}


.home-page .category-button:hover {
    border-color: #f4b51c;

    background:
        rgba(244, 181, 28, 0.10);

    transform:
        translateY(-2px);
}


.home-page .category-button.active {
    border-color: #f4b51c;

    background: #f4b51c;

    color: #111111;
}


.home-page .category-icon {
    font-size: 20px;
}


/* ========================================
   MARKENFILTER
======================================== */

.home-page .brand-filter-wrapper {
    position: relative;

    max-width: 1100px;

    margin:
        0 auto 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

    z-index: 2;
}


.home-page .brand-filter-wrapper > p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.home-page .brand-filters {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}


.home-page .brand-filter {
    padding:
        9px 17px;

    border:
        1px solid rgba(255, 255, 255, 0.22);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.07);

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}


.home-page .brand-filter:hover {
    border-color: #f4b51c;
}


.home-page .brand-filter.active {
    border-color: #f4b51c;

    background: #f4b51c;

    color: #111111;
}


/* ========================================
   PRODUKTGRID
======================================== */

.home-page .product-grid {
    position: relative;

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;

    z-index: 2;
}


/* ========================================
   PRODUKTKARTEN
======================================== */

.home-page .product-card {
    position: relative;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    min-width: 0;

    background: #ffffff;

    border:
        1px solid #e4e4e1;

    border-radius: 12px;

    box-shadow:
        0 10px 32px
        rgba(0, 0, 0, 0.10);

    transition:
        transform 0.25s,
        box-shadow 0.25s,
        border-color 0.25s;
}


.home-page .product-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(244, 181, 28, 0.8);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.15);
}


/* gelbe Linie oben */

.home-page .product-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #f4b51c;

    opacity: 0;

    transition:
        opacity 0.25s;

    z-index: 2;
}


.home-page .product-card:hover::before {
    opacity: 1;
}


/* ========================================
   PRODUKTBILD
======================================== */

.home-page .product-image {
    height: 310px;

    padding: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #fafafa,
            #f0f0ee
        );
}


.home-page .product-image img {
    width: 100%;
    height: 100%;

    max-width: 270px;

    object-fit: contain;

    transition:
        transform 0.3s;
}


.home-page .product-card:hover
.product-image img {
    transform:
        scale(1.035);
}


/* ========================================
   PRODUKTINFO
======================================== */

.home-page .product-info {
    padding: 25px;

    display: flex;
    flex-direction: column;

    flex: 1;
}


.home-page .product-info .brand {
    margin-bottom: 8px;

    color: #c78c00;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.home-page .product-info h3 {
    margin-bottom: 8px;

    color: #151515;

    font-size: 21px;

    line-height: 1.25;

    font-weight: 850;
}


.home-page .product-category {
    margin-bottom: 8px;

    color: #666666;

    font-size: 14px;
}


.home-page .article-number {
    margin-bottom: 25px;

    color: #999999;

    font-size: 12px;
}


/* ========================================
   PREIS + DETAILS
======================================== */

.home-page .product-bottom {
    margin-top: auto;

    padding-top: 20px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-top:
        1px solid #eeeeec;
}


.home-page .product-bottom strong {
    color: #111111;

    font-size: 18px;

    font-weight: 900;
}


.home-page .details-button {
    min-height: 43px;

    padding:
        0 20px;

    border:
        2px solid #111111;

    border-radius: 6px;

    background: #111111;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition: 0.2s;
}


.home-page .details-button:hover {
    border-color: #f4b51c;

    background: #f4b51c;

    color: #111111;
}


/* ========================================
   KEINE PRODUKTE
======================================== */

.home-page .no-products {
    position: relative;

    max-width: 700px;

    margin:
        40px auto;

    padding: 35px;

    text-align: center;

    background: #ffffff;

    border-radius: 10px;

    color: #666666;

    z-index: 2;
}
/* ========================================
   SERVICE – LRM DESIGN
======================================== */

.home-page #service {
    position: relative;

    padding: 115px 5%;

    background: #f5f5f3;

    text-align: center;

    overflow: hidden;
}


.home-page #service::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: min(90%, 1400px);
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            #d8d8d4,
            transparent
        );
}


.home-page #service .small-title {
    margin-bottom: 12px;

    color: #c78c00;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
}


.home-page #service h2 {
    margin: 0 auto 18px;

    color: #111111;

    font-size:
        clamp(38px, 4vw, 56px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.home-page #service .brand-text {
    max-width: 720px;

    margin: 0 auto 50px;

    color: #686868;

    font-size: 17px;

    line-height: 1.7;
}


/* ========================================
   SERVICE KARTEN
======================================== */

.home-page #service .brand-grid {
    width: 100%;

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.home-page #service .brand-box {
    position: relative;

    min-height: 180px;

    padding: 32px 24px;

    display: flex;

    align-items: flex-end;
    justify-content: flex-start;

    text-align: left;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #171d21,
            #0d1215
        );

    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 12px;

    font-size: 18px;
    font-weight: 850;

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.10);

    transition:
        transform 0.25s,
        box-shadow 0.25s,
        border-color 0.25s;
}


.home-page #service .brand-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 48px;
    height: 4px;

    background: #f4b51c;

    transition: width 0.25s;
}


.home-page #service .brand-box:hover {
    transform: translateY(-6px);

    border-color:
        rgba(244, 181, 28, 0.55);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.16);
}


.home-page #service .brand-box:hover::before {
    width: 100%;
}

/* ========================================
   SERVICE KARTEN – INHALT
======================================== */

.home-page #service .service-card {
    min-height: 260px;

    padding: 30px;

    flex-direction: column;

    align-items: flex-start;
    justify-content: space-between;
}


.home-page #service .service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(244, 181, 28, 0.10);

    border:
        1px solid rgba(244, 181, 28, 0.30);

    border-radius: 10px;

    font-size: 29px;
}


.home-page #service .service-content {
    margin-top: 35px;
}


.home-page #service .service-content h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 22px;
    line-height: 1.15;

    font-weight: 850;
}


.home-page #service .service-content p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 14px;
    line-height: 1.6;

    font-weight: 400;
}


/* HANDY */

@media (max-width: 600px) {

    .home-page #service .service-card {
        min-height: 220px;

        padding: 25px;
    }


    .home-page #service .service-content {
        margin-top: 25px;
    }

}
/* ========================================
   ÜBER UNS
======================================== */

.home-page #ueber-uns {
    position: relative;

    padding: 120px 7%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, 0.75fr);

    gap: 90px;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #11171c,
            #171e22
        );

    color: #ffffff;
}


.home-page #ueber-uns::after {
    content: "LRM";

    position: absolute;

    right: 4%;
    bottom: -45px;

    color:
        rgba(255, 255, 255, 0.025);

    font-size:
        clamp(150px, 20vw, 330px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -15px;

    pointer-events: none;
}


.home-page #ueber-uns > div {
    position: relative;

    z-index: 2;
}


.home-page #ueber-uns .small-title {
    margin-bottom: 13px;

    color: #f4b51c;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
}


.home-page #ueber-uns h2 {
    max-width: 650px;

    margin-bottom: 25px;

    color: #ffffff;

    font-size:
        clamp(42px, 5vw, 66px);

    line-height: 1.02;

    letter-spacing: -2px;
}


.home-page #ueber-uns > div:first-child > p:last-child {
    max-width: 680px;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 17px;

    line-height: 1.8;
}


/* ========================================
   ÜBER UNS INFOBOX
======================================== */

.home-page #ueber-uns .contact-box {
    padding: 32px;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 14px;

    backdrop-filter: blur(8px);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.20);
}


.home-page #ueber-uns .contact-box p {
    margin: 0 0 5px;

    color: #f4b51c;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.home-page #ueber-uns .contact-box strong {
    display: block;

    padding-bottom: 21px;

    margin-bottom: 21px;

    color: #ffffff;

    font-size: 17px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);
}


.home-page #ueber-uns .contact-box strong:last-child {
    padding-bottom: 0;

    margin-bottom: 0;

    border-bottom: none;
}


/* ========================================
   MARKEN
======================================== */

.home-page #marken {
    padding: 115px 5%;

    background: #f5f5f3;

    text-align: center;
}


.home-page #marken .small-title {
    margin-bottom: 12px;

    color: #c78c00;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
}


.home-page #marken h2 {
    max-width: 800px;

    margin: 0 auto 18px;

    color: #111111;

    font-size:
        clamp(38px, 4vw, 56px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.home-page #marken .brand-text {
    max-width: 680px;

    margin: 0 auto 50px;

    color: #686868;

    font-size: 17px;

    line-height: 1.7;
}


.home-page #marken .brand-grid {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}


.home-page #marken .brand-box {
    min-height: 135px;

    padding: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #171717;

    border:
        1px solid #e0e0dd;

    border-radius: 10px;

    font-size: 20px;
    font-weight: 900;

    letter-spacing: 1px;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.05);

    transition:
        transform 0.2s,
        border-color 0.2s,
        box-shadow 0.2s;
}


.home-page #marken .brand-box:hover {
    transform: translateY(-4px);

    border-color: #f4b51c;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.09);
}


/* ========================================
   KONTAKT
======================================== */

.home-page #kontakt {
    padding: 110px 7%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, 0.8fr);

    gap: 80px;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #e8eae7,
            #f7f7f5
        );
}


.home-page #kontakt .small-title {
    margin-bottom: 12px;

    color: #c78c00;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
}


.home-page #kontakt h2 {
    margin-bottom: 20px;

    color: #111111;

    font-size:
        clamp(40px, 4.5vw, 60px);

    line-height: 1.05;

    letter-spacing: -1.5px;
}


.home-page #kontakt > div:first-child > p:last-child {
    max-width: 650px;

    color: #666666;

    font-size: 17px;

    line-height: 1.8;
}


/* Kontaktkarte */

.home-page #kontakt .contact-box {
    padding: 32px;

    background: #11171c;

    color: #ffffff;

    border-radius: 14px;

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.16);
}


.home-page #kontakt .contact-box p {
    margin: 0 0 6px;

    color: #f4b51c;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.home-page #kontakt .contact-box strong {
    display: block;

    padding-bottom: 22px;

    margin-bottom: 22px;

    color: #ffffff;

    font-size: 18px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.13);
}


.home-page #kontakt .contact-box strong:last-child {
    padding-bottom: 0;

    margin-bottom: 0;

    border-bottom: none;
}


/* ========================================
   FOOTER – LRM
======================================== */

.home-page footer {
    padding: 65px 5% 35px;

    text-align: center;

    background: #0b1013;

    color:
        rgba(255, 255, 255, 0.68);

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}


.home-page footer .footer-logo {
    margin-bottom: 12px;

    color: #f4b51c;

    font-size: 45px;
    font-weight: 900;

    letter-spacing: -2px;
}


.home-page footer > p {
    margin:
        5px 0;

    color:
        rgba(255, 255, 255, 0.63);
}


.home-page footer > p:first-of-type {
    color: #ffffff;

    font-weight: 800;
}


.home-page .footer-links {
    margin: 28px 0;

    display: flex;

    justify-content: center;

    gap: 28px;

    flex-wrap: wrap;
}


.home-page .footer-links a {
    color:
        rgba(255, 255, 255, 0.78);

    font-size: 14px;

    font-weight: 700;

    transition: 0.2s;
}


.home-page .footer-links a:hover {
    color: #f4b51c;
}


.home-page footer .copyright {
    margin-top: 30px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    color:
        rgba(255, 255, 255, 0.38);

    font-size: 12px;
}


/* ========================================
   UNTERE BEREICHE – TABLET
======================================== */

@media (max-width: 950px) {

    .home-page #service .brand-grid,
    .home-page #marken .brand-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .home-page #ueber-uns,
    .home-page #kontakt {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .home-page #ueber-uns .contact-box,
    .home-page #kontakt .contact-box {
        max-width: 600px;
    }

}


/* ========================================
   UNTERE BEREICHE – HANDY
======================================== */

@media (max-width: 600px) {

    .home-page #service,
    .home-page #marken {
        padding:
            80px 20px;
    }


    .home-page #ueber-uns,
    .home-page #kontakt {
        padding:
            80px 20px;

        gap: 35px;
    }


    .home-page #service .brand-grid,
    .home-page #marken .brand-grid {
        grid-template-columns: 1fr;
    }


    .home-page #service .brand-box {
        min-height: 130px;
    }


    .home-page #marken .brand-box {
        min-height: 105px;
    }


    .home-page #ueber-uns h2,
    .home-page #kontakt h2 {
        font-size: 39px;
    }


    .home-page #ueber-uns .contact-box,
    .home-page #kontakt .contact-box {
        padding: 25px 22px;
    }


    .home-page footer {
        padding:
            55px 20px 30px;
    }

}

/* ========================================
   TABLET HEADER
======================================== */

@media (max-width: 1200px) {

    .home-header {
        padding:
            0 25px;

        gap: 25px;
    }


    .home-navigation {
        gap: 22px;
    }


    .home-navigation a {
        font-size: 11px;
    }


    .home-header-actions {
        gap: 15px;
    }


    .home-account-text,
    .home-cart-text {
        display: none;
    }

}


/* ========================================
   PRODUKTGRID TABLET
======================================== */

@media (max-width: 1000px) {

    .home-page .product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 850px) {

    .home-header {
        height: 82px;

        grid-template-columns:
            auto auto;

        padding:
            0 20px;
    }


    .home-navigation {
        display: none;
    }


    .home-brand-lrm {
        font-size: 39px;
    }


    .home-brand-text {
        font-size: 10px;
    }


    .home-header-actions {
        justify-content: flex-end;
    }


    .home-hero {
        min-height: 790px;

        background-position:
            62% center;
    }


    .home-hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.94) 0%,
                rgba(0, 0, 0, 0.80) 52%,
                rgba(0, 0, 0, 0.32) 100%
            );
    }


    .home-hero-inner {
        min-height: 790px;

        padding:
            150px 24px 35px;
    }


    .home-hero h1 {
        font-size:
            clamp(43px, 11vw, 58px);
    }


    .home-hero-lead {
        font-size: 20px;
    }


    .home-hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    .home-hero-button {
        width: 100%;

        max-width: 360px;
    }


    .home-hero-benefits {
        gap: 16px;
    }


    .home-benefit-divider {
        display: none;
    }


    .home-hero-benefit {
        font-size: 11px;
    }

}


/* ========================================
   HANDY SHOP
======================================== */

@media (max-width: 650px) {

    .home-page .products-section {
        padding:
            80px 20px 90px;
    }


    .home-page .main-categories {
        grid-template-columns: 1fr;
    }


    .home-page .brand-filter-wrapper {
        justify-content: flex-start;
    }


    .home-page .product-grid {
        grid-template-columns: 1fr;
    }


    .home-page .product-image {
        height: 280px;
    }

}


/* ========================================
   KLEINES HANDY
======================================== */

@media (max-width: 550px) {

    .home-brand-text {
        display: none;
    }


    .home-account {
        display: none;
    }


    .home-hero {
        min-height: 800px;
    }


    .home-hero-inner {
        min-height: 800px;
    }


    .home-hero-benefits {
        flex-direction: column;

        align-items: flex-start;

        gap: 13px;
    }}
    /* ========================================
   SERVICE-KARTEN FIX
======================================== */

#service .brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

#service .service-card {
    min-width: 0;
    height: auto;
    min-height: 320px;

    padding: 40px 42px;

    overflow: visible;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#service .service-content {
    width: 100%;
    min-width: 0;
}

#service .service-content h3 {
    margin: 28px 0 14px;

    font-size: clamp(25px, 2.2vw, 34px);
    line-height: 1.15;

    white-space: normal;
    overflow-wrap: anywhere;
}

#service .service-content p {
    margin: 0;

    font-size: 18px;
    line-height: 1.7;

    white-space: normal;
    overflow-wrap: anywhere;
}

#service .service-icon {
    flex-shrink: 0;
}


/* ========================================
   SERVICE MOBILE
======================================== */

@media (max-width: 850px) {

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

    #service .service-card {
        min-height: auto;
        padding: 30px 26px;
    }

    #service .service-content h3 {
        font-size: 26px;
    }

    #service .service-content p {
        font-size: 17px;
    }

}
