
.breadcrumb {
    max-width: 1200px;
    margin: 120px auto 0;
    font-size: .85rem;
    color: var(--muted);

}


section.subcategorie {

    padding: 0 1rem 1.5rem;

    background: transparent;
}


.s-titles {
    max-width: 1200px;
    margin: 3rem auto 1.5rem;
}


.s-eyebrow {
    font-size: .8rem;
    color: var(--brand);
    font-weight: 800;
    letter-spacing: .28px;
    text-transform: uppercase;
    padding-left: 0.1rem;
}

.s-title {
    font-size: clamp(2.5rem, 4vw, 2.5rem);

    color: var(--accent);


    animation: fadeUp .8s ease;


    display: block;
    margin: .4rem 0 1rem;
    line-height: 1.15;
    font-weight: 700;

}


.s-h1-main {
    font-size: clamp(2.8rem, 4vw, 3rem);
    font-weight: 800;
    display: block;

    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;


    color: transparent;
    -webkit-text-fill-color: transparent;
}


.s-h1-sub {
    font-size: clamp(1.6rem, 3vw, 1.9rem);
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-top: .2rem;
}


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

.s-h2 {


    margin: 0 0 1.5rem 0;
    font-size: clamp(1.8rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--accent);
    display: block;
    transform: none;


    letter-spacing: 0.5px;

    animation: fadeUp .8s ease;
}


.section {
    padding: 0 1rem 3rem;
}


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

.s-card {
    padding: 0.3rem;


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


    position: relative;
    /*overflow: visible !important;*/
    overflow: visible;
    transition: transform 0.25s ease, box-shadow 0.25s ease;


    border: 0.01rem solid transparent;

}

.s-card:has(.artikle-details[open]):hover {
    transform: none !important;
    box-shadow: var(--shadow) !important;
    z-index: 999 !important;
}


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

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


    border-color: var(--brand);

}

.s-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;
    position: relative;


}


.s-body {
    padding: 1rem
}

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

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


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


.special-paragraph-subcategory{
    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;
}

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

.s-actions {


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


}


.artikle-details {
    position: relative;
    margin-top: 1rem;
    min-height: 1.4rem;
    z-index: 999;
}


.artikle-details[open] > p {
    position: absolute;
    /*position: static;*/
    top: 1.8rem;
    left: 0;
    right: 0;

    z-index: 9999 !important;


    color: var(--accent);
    padding: 1rem;
    border-radius: 1rem;

    background: #fff;
    border: 2px solid var(--accent);


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

    animation: fadeIn 0.2s ease;
}


.artikle-details p {
    margin: 0;
}

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


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

    margin-top: .6rem;
    z-index: 10000;
}


@media (max-width: 900px) {

    .breadcrumb {
        padding-left: 0.8rem;
    }

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

    .special-paragraph-subcategory {

        text-align:center;


    }
}


@media (min-width: 800px) and (max-width: 1100px) {


    .s-titles,
    .products,
    .breadcrumb {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }


    .products {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
        gap: 1.5rem;
    }


    .s-card {
        padding: 0.8rem;
        border-radius: 16px;
    }


    .s-img {
        aspect-ratio: 1/1;
        z-index: 1;
    }


    .s-h1-main {
        font-size: clamp(2.2rem, 3vw, 2.6rem);
    }

    .s-h1-sub {
        font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    }


    .s-actions {
        margin-top: 1rem;
    }

    /* Breadcrumb леко надясно */
    .breadcrumb {
        padding-left: .8rem;
    }
}






