/* sonderangebote */
.sonderangebote{
    padding: var(--section-padding);
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.sonderangebote .slider,
.zubehoer .slider{
    padding-top: 2em;

    width: 100%;
    display: flex;
    gap: 30px;

    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sonderangebote .slider::-webkit-scrollbar,
.zubehoer .slider::-webkit-scrollbar{
    display: none;
}

.sonderangebote .slider-btns{
    position: absolute;
    top: 5.4em;
    right: 2em;
    display: flex;
    gap: 15px;
}

.sonderangebote .slider-btns .slider-btn,
.zubehoer .slider-btns .slider-btn{
    width: 55px;
    height: 55px;
    border-radius: 55px;
    background-color: var(--ac-d-clr);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform .1s ease;
}

.sonderangebote .slider-btn:disabled,
.zubehoer .slider-btn:disabled{
    opacity: .35;
    cursor: default;
    pointer-events: none;
}

.sonderangebote .slider-btn::before,
.zubehoer .slider-btn::before{
    content: "";
    display: block;
    width: 14px;
    height: 18px;
    background-color: var(--pr-clr);
}

.sonderangebote .slider-prev::before,
.zubehoer .slider-prev::before {
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    transform: translateX(-2px);
}

.sonderangebote .slider-next::before,
.zubehoer .slider-next::before {
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    transform: translateX(2px);
}

@media (hover: hover) and (pointer: fine) {
    .sonderangebote .slider-btn:hover,
    .zubehoer .slider-btn:hover {
        transform: scale(1.03);
    }
}

.sonderangebote .slider-btn:active,
.zubehoer .slider-btn:active{
    transform: scale(1);
}

@media (hover: none), (pointer: coarse) {
    .sonderangebote .slider-btn:active,
    .zubehoer .slider-btn:active {
        transform: scale(1.03);
    }
}


.sonderangebote .kanu-card,
.zubehoer .kanu-card{
    max-width: 330px !important;
    scroll-snap-align: start;
}


@media(max-width:700px){
    .sonderangebote .slider-btns{
        position: relative;
        top: inherit;
        right: inherit;
    }
}



/* kategorien */
.kategorien_section{
    position: relative;
    z-index: 2;
    background-color: var(--pr-clr);
}

.kategorien{
    padding: var(--section-padding);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.kategorien-grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.kategorie{
    position: relative;
    width: 100%;
    min-width: 0;
    aspect-ratio: 16 / 6;
    overflow: hidden;
    border-radius: var(--radius-big);
    cursor: pointer;
}

.kategorie img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s ease;
}
.kategorie:hover img{
    transform: scale(1.05);
}

.kategorie svg{
    position: absolute;
    bottom: -39%;
    left: -10px;
    width: 55%;
    height: auto;
    opacity: 85%;
}

.kategorie h3{
    position: absolute;
    bottom: 5%;
    left: 7%;
    font-size: clamp(1rem, 2.8vw, 1.8rem);
    display: flex;
    align-items: center;
    gap: 4px;
}

.kategorie h3::before{
    content: "";
    display: block;
    width: 0;
    height: 18px;
    background-color: var(--pr-clr);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    transition: width .6s ease;
}
.kategorie:hover h3::before{
    width: 14px;
}


.kategorie:nth-of-type(2) svg path{
    fill: #07621F;
}
.kategorie:nth-of-type(3) svg path{
    fill: #62075C;
}
.kategorie:nth-of-type(4) svg path{
    fill: #620707;
}


@media(max-width:800px){
    .kategorien-grid{
        grid-template-columns: 1fr;
    }

    .kategorie h3{
        font-size: clamp(1rem, 4.5vw, 1.8rem);
    }
}



/* zubehör */
.zubehoer_section{
    background-color: var(--pr-clr);
}

.zubehoer{
    padding: var(--section-padding);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.zubehoer-header,
.zubehoer-title,
.zubehoer .slider-btns{
    display: flex;
    align-items: center;
}

.zubehoer-header{
    justify-content: space-between;
    gap: 30px;
}

.zubehoer-title{
    gap: 30px;
}

.zubehoer .slider-btns{
    gap: 15px;
}

@media(max-width:800px){
    .zubehoer-header{
        align-items: flex-start;
        flex-direction: column;
    }

    .zubehoer-title{
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }
}










/* verleih */
.home-verleih_section{
    background-color: var(--ac-d-clr);
    overflow: hidden;
}

.home-verleih_section .verleih{
    padding: var(--section-padding);
    display: flex;
    align-items: center;
    gap: 50px;
}

.home-verleih_section .verleih .txt-holder{
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.home-verleih_section .verleih .txt-holder .infos{
    border-top: 1px solid var(--ac-l-clr);
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
}

.home-verleih_section .verleih .txt-holder .infos .info{
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-verleih_section .verleih .txt-holder .infos .info .icon-box{
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    background-color: var(--ac-l-clr);
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-verleih_section .verleih .txt-holder .infos .info .icon-box img{
    width: 50%;
    height: auto;
}


.home-verleih_section .verleih .img-holder{
    aspect-ratio: 1 / 1;
    min-width: 50%;
    position: relative;
}

.home-verleih_section .verleih .img-holder svg{
    position: absolute;
    width: 80%;
    height: auto;
    right: -5%;
    bottom: -22%;
    transform: scaleX(-1) rotate(10deg);
    opacity: 85%;

}
.home-verleih_section .verleih .img-holder svg path{
    fill: var(--ac-l-clr);
}

.home-verleih_section .verleih .img-holder h3{
    position: absolute;
    bottom: 6%;
    right: 8%;
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
}

.home-verleih_section .verleih .img-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-big);
}


@media(max-width:1100px){
    .home-verleih_section .verleih{
        flex-direction: column;
    }
    .home-verleih_section .verleih .img-holder{
        aspect-ratio: 16/7;
    }

    .home-verleih_section .verleih .img-holder{
        min-height: 165px;
        max-width: 100%;
    }
    .home-verleih_section .verleih .img-holder svg{
        width: 50%;
        bottom: -32%;
        right: -3%;
        min-width: 185px;
    }
    .home-verleih_section .verleih .img-holder h3{
        bottom: 9%;
        right: 6%;
        font-size: clamp(.8rem, 3vw, 1.8rem);
    }
}



/* händler */
.home-haendler_section{
    position: relative;
}
.home-haendler_section img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(40%);
}

.home-haendler{
    padding: var(--section-padding);
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
}

.home-haendler p{
    max-width: 700px;
}

.home-haendler button{
    margin-top: 20px;
}
