
.mock-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}


.mock-title {
    text-align: center;
    align-self: center;

    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
}

.mock-title span {
    color: var(--brand);

    text-align: center;
    font-weight: 800;
    font-size: 1.9rem;
}

.mock-item {


    background: var(--bacgraund-linear-green);

    border-radius: 16px;
    padding: 1rem;
    display: grid;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #374151;
    transition: transform 0.3s, box-shadow 0.3s;

    text-align: center;


}

.mock-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    border: 0.01rem solid var(--brand);
    border-radius: 1.5rem;

    cursor: pointer;
}

.mock-item img {
    width: 100%;
    max-width: 130px;
    height: auto;
    margin-bottom: .6rem;
}


.mock-item .product-name {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 600;
    margin-top: 0.4rem;
}

.mock-item .product-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand);
    margin-top: 0.2rem;
}


.hero {
    padding: clamp(2rem, 6vw, 5rem) 1rem;

    background: transparent;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -10% -10% auto -10%;
    height: 380px;


    background: linear-gradient(
            180deg,
            rgba(14, 122, 79, 0.18) 0%,
            rgba(14, 122, 79, 0.08) 30%,
            rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none
}

.hero-grid {
    display: grid;


    align-items: stretch;

    max-width: 75rem;
    margin-top: 8rem;
    margin-bottom: 2rem;


    grid-template-columns: 1.1fr 0.9fr;

    gap: 40px;


}


.h-eyebrow {
    font-size: .8rem;
    color: var(--brand);
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;

}

.h-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    font-weight: 650;
    /*color: #0a1320;*/
    color: var(--accent);
    margin: .4rem 0 1rem;
}

.h-sub {
    color: var(--muted);
    max-width: 60ch;
    margin-bottom: 1.6rem;
}

.h-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1.8rem
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .9rem;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-size: .8rem;
    background: #fff;
    font-weight: 600;
}

.h-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem
}


.section {
    padding: clamp(2rem, 6vw, 4rem) 1rem
}

.section h2 {
    width: 100%;
    text-align: center;
    margin: 0 0 2rem 0;
    font-size: clamp(2rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--brand);
    display: block;
    transform: none;


    letter-spacing: 0.5px;

    animation: fadeUp .8s ease;
}


.grid {

    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));

    max-width: 1200px;
    margin: 0 auto;
    align-items: start;

}


.category-block {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 0.6rem;

}

.card {


    border: none;
    box-shadow: none;
    text-align: center;
    padding: 0.8rem;
    transition: transform 0.25s ease;
}

.card h3 {


    position: relative;

    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0.3rem 0;

}

.card h3:hover,
.show-more:hover {
    color: var(--brand);
    animation: bounce .35s ease-out;
}


.card h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--brand);
    margin: .4rem auto 0;
    border-radius: 3px;
}


.card h4 {
    color: var(--brand);
    font-size: 1rem;
    font-weight: 700;
}


.card .price {
    color: var(--brand);
    font-weight: 800;
    font-size: 1.1rem;
}

.card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.card img {

    width: 100%;
    height: auto;

    margin: 0.2rem auto 0.2rem;
    max-width: 14.5rem;
    display: block;
    transition: transform 0.25s ease;


}


.card:hover {


    transform: translateY(-4px);

    box-shadow: var(--shadow-hover);

    border: 0.01rem solid var(--brand);
    border-radius: 1.5rem;

    cursor: pointer;
}


.card a.btn {
    margin-top: .6rem
}


.card.category-carousel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-radius: 1.2rem;


}


.card.category-carousel:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    border: 0.01rem solid var(--brand);
    border-radius: 1.5rem;
}


.special-paragraph {
    display: block;
    width: 100%;
    text-align: center;

    font-size: 0.8rem;
    font-weight: bold;
    color: #f60606;

    min-height: 1.2em;
    visibility: hidden;
    margin: 0.25rem 0;

    pointer-events: none;
}

.special-paragraph.is-visible {
    visibility: visible;
}


.show-more {
    display: inline-block;
    margin-top: 1rem;

    font-weight: 600;
    text-decoration: none;

}


.seo-details {
    position: relative;
}


.seo-details[open] > p {
    position: absolute;
    top: 2.2rem;
    left: 0;
    z-index: 1000;


    background: #fff;
    padding: 1rem;
    border-radius: 1rem;

    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);

    animation: fadeIn 0.2s ease;
}


.seo-details p {
    margin: 0;
}

.seo-details summary::before {
    content: '+ ';
    font-weight: bold;
}

.seo-details summary {
    cursor: pointer;
    color: var(--accent);
    font-weight: 600;
    list-style: none;
}


#bestseller h2 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
}

.products {
    display: grid;
    gap: 1.5rem;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));

    max-width: 1200px;
    margin: auto;
}

.p-card {
    padding: 0.3rem;


    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.p-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);

    border: 0.01rem solid var(--brand);
    border-radius: 1.5rem;


}


.p-img {
    aspect-ratio: 1.3/1;


    background: var(--bacgraund-linear-green);

    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;


}

.p-body {
    padding: 1rem
}

.p-title {
    font-weight: 800;
    min-height: 44px
}

.p-meta {
    display: flex;
    justify-content: space-between;
    margin-top: .35rem;
    font-size: .9rem
}


.price {
    color: var(--brand);
    font-weight: 900
}

.p-actions {


    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
    margin-top: .8rem;


}


.trust {

    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));


    background: var(--green-linear-gradientd);

    max-width: 1200px;
    margin: auto;

    display: flex;
    gap: 2rem;
    padding: 1.4rem 2rem;


    background: var(--bacgraund-linear-green);
    border-radius: 20px;
    border: 1px solid #e8f1ec;
    justify-content: space-between;
}

.trust-item {
    display: flex;
    /*gap: .8rem;*/
    gap: 0.8rem;
    align-items: center;


}


.trust i {

    background: var(--brand);
    display: inline-block;

    width: 32px;
    height: 32px;

    border-radius: 10px;
}


#vorteile .trust-item strong {
    color: var(--accent);
    font-size: 1.05rem;
    font-weight: 700;
}

#vorteile .trust-item span {
    font-size: .85rem;
    color: #6b7280;
}


/* === CATEGORY PAGE CAROUSEL === */
.price-footer {
    margin-top: auto;
}

.price-footer .price {
    line-height: 1.2;
    height: 1.4rem;
    text-align: center;
    white-space: nowrap;


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


}

.product-name {
    line-height: 1.25;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: .6rem;
    margin-bottom: .4rem;


}


.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.swiper-slide a {
    display: block;
}


.category-carousel .swiper-pagination {
    position: relative;
    margin-top: 0.2rem;
    margin-bottom: 0.1rem;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
}

.category-carousel .swiper-pagination-bullet {
    flex: 0 0 auto;
}


.category-carousel .show-more {
    margin-top: 0.2rem;
    display: block;
}


.vitamineSwiper,
.kollagenSwiper,
.supplementeSwiper,
.antioxidantienSwiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}


.vitamineSwiper .swiper-slide,
.kollagenSwiper .swiper-slide,
.supplementeSwiper .swiper-slide,
.antioxidantienSwiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.vitamineSwiper img,
.kollagenSwiper img,
.supplementeSwiper img,
.antioxidantienSwiper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


@media (max-width: 480px) {
    .p-actions .btn {
        flex: 1
    }
}

@media (max-width: 600px) {


    .nav {
        flex-wrap: wrap
    }

    .h-title {
        font-size: 1.7rem
    }

    .h-sub {
        font-size: .9rem
    }

    .card p {
        font-size: .85rem
    }
}


@media (max-width: 700px) {
    .hero {
        padding: 2rem 1rem;
    }

    .h-title {
        font-size: 1.5rem;
        line-height: 1.2;
        text-align: center;
    }

    .h-sub, .h-badges, .h-cta {
        text-align: center;
        justify-content: center;
    }


    .mock-title {
        font-size: 1.2rem;
    }

    .mock-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mock-item {
        padding: .8rem;
    }

    .mock-item img {
        max-width: 100px;
        margin: 0 auto .4rem;
    }

    .mock-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
        font-size: 1.2rem;
        text-align: center;
    }

    .mock-title span {
        display: block;
        font-size: 1.4rem;
    }

    .section h2 {
        font-size: 1.4rem;
        transform: translateX(0.4rem);
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
        gap: 1rem;


    }


    .card img {
        max-width: 6.875rem;
    }
}


@media (max-width: 900px) {


    .category-carousel {
        margin-bottom: .5rem;
    }


    .card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover)
    }


    .category-block:nth-child(3),
    .category-block:nth-child(4) {
        margin-top: 0.8rem;
    }


    .card h3 {
        font-size: 1.3rem;
    }

    .seo-details[open] > p {
        background: #ffffff;
        color: var(--accent);
        box-shadow: none;
    }


    .p-actions .btn {
        flex: 1
    }


    #bestseller h2 {
        font-size: clamp(1.6rem, 4vw, 1.8rem);
    }

    .cart-btn-2 {
        display: block;
        margin: 0.4rem auto 0.4rem auto;
    }

    .p-meta {
        margin-top: .3rem;
    }

    .p-card {
        padding-bottom: .7rem;
    }


    #vorteile .trust {
        flex-direction: column;
        gap: 1.3rem;
        padding: 1.2rem 1.4rem;
    }

}


@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .mock-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .mock-item img {
        max-width: 110px;
    }
}


@media (max-width: 1024px) and (min-width: 701px) {


    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .mock-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .mock-item img {
        max-width: 110px;
    }


    .card img {
        max-width: 140px;
    }

    .section h2 {
        font-size: 1.6rem;
        transform: translateX(0.6rem);
    }

}










