.stm-section {
    padding: 20px;
    max-width: 1360px;
    margin: 0 auto 20px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
}

.stm-section-title {
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 20px;
    padding-left: 10px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
}

.stm-products-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.stm-preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.stm-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #004b60;
    border-radius: 50%;
    animation: stm-spin 1s linear infinite;
}

@keyframes stm-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stm-mySwiper {
    width: 100%;
    padding-bottom: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stm-mySwiper.swiper-initialized {
    opacity: 1;
}


.stm-swiper-slide {
    height: auto;
    display: flex;
}

.stm-product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.stm-image-link,
.stm-product-card {
    position: relative;
    height: 100%;
    width: 100%;
}

.stm-image-link {
    display: block;
    text-decoration: none;
}

.stm-product-card {
    margin: 0 10px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    box-shadow:
            0 1px 2px rgba(0, 0, 0, 0.03),
            0 2px 4px rgba(0, 0, 0, 0.05),
            0 4px 8px rgba(0, 0, 0, 0.08);
}

.stm-product-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .3s ease;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stm-product-image.loaded {
    opacity: 1;
}

.stm-product-image-container {
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}


    .stm-product-info {
        padding: 20px;
        background: #fff;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 12px;
    }

    .stm-product-name {
        font-size: 1.1rem;
        color: #222729;
        font-family: "Manrope", sans-serif;
        font-weight: 400;

    }

    .stm-article-badge {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        background-color: #004b60;
        border: 1px solid #004b60;
        border-radius: 20px;
        padding: 6px 12px;
        cursor: pointer;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
                box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin-top: auto;
    }


    .stm-article {
         color: #e63946;
        margin-right: 8px;
        font-size: 1rem;
        font-weight: 600;
    }

    .stm-article-text {
        color: #ffffff;
        font-size: .9rem;
        letter-spacing: .5px;
        font-weight: 400;
        -webkit-transition: color .3s ease;
        -o-transition: color .3s ease;
        transition: color .3s ease;
    }

    .stm-click-hint,
    .stm-notification {
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        font-family: "Manrope", sans-serif;
        font-weight: 400;
    }

    .stm-click-hint {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(0, 75, 96, .85);
        padding: 6px 12px;
        border-radius: 4px;
        font-size: .8rem;
        opacity: 0;
        -webkit-transition: opacity .3s ease;
        -o-transition: opacity .3s ease;
        transition: opacity .3s ease;
        gap: 5px;
        z-index: 2;
    }

    .stm-click-hint i {
        font-size: .8rem;
    }

    .stm-image-link:hover .stm-click-hint {
        opacity: 1;
    }

    .stm-notification {
        position: fixed;
        bottom: 0;
        left: 50%;
        white-space: nowrap;
        -webkit-transform: translateX(-50%) translateY(100px);
            -ms-transform: translateX(-50%) translateY(100px);
                transform: translateX(-50%) translateY(100px);
        background-color: #004b60;
        padding: 12px 24px;
        border-radius: 30px;
        -webkit-box-shadow: 0 4px 15px rgba(0, 75, 96, .3);
                box-shadow: 0 4px 15px rgba(0, 75, 96, .3);
        -webkit-transition: -webkit-transform .4s ease;
        transition: -webkit-transform .4s ease;
        -o-transition: transform .4s ease;
        transition: transform .4s ease;
        transition: transform .4s ease, -webkit-transform .4s ease;
        z-index: 9999;
        font-size: .9rem;
        gap: 10px;
    }

    .stm-notification i {
        font-size: 1rem;
        color: #e63946;
    }

    .stm-notification.show {
        -webkit-transform: translateX(-50%) translateY(-50px);
            -ms-transform: translateX(-50%) translateY(-50px);
                transform: translateX(-50%) translateY(-50px);
    }

    .stm-custom-next,
    .stm-custom-prev {
        position: absolute;
        top: 40%;
        -webkit-transform: translateY(-40%);
            -ms-transform: translateY(-40%);
                transform: translateY(-40%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, .8);
        -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
                box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
        border: none;
        cursor: pointer;
        display: none;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        z-index: 10;
    }

    .stm-custom-next img,
    .stm-custom-prev img {
        width: 16px;
        height: 16px;
        -webkit-transition: -webkit-filter .3s ease;
        transition: -webkit-filter .3s ease;
        -o-transition: filter .3s ease;
        transition: filter .3s ease;
        transition: filter .3s ease, -webkit-filter .3s ease;
    }

    .stm-custom-prev {
        left: 20px;
    }

    .stm-custom-next {
        right: 20px;
    }

    .stm-custom-next:hover,
    .stm-custom-prev:hover {
        background-color: #004b60;
    }

    .stm-custom-next:hover img,
    .stm-custom-prev:hover img {
        -webkit-filter: brightness(0) invert(1);
                filter: brightness(0) invert(1);
    }

    .stm-swiper-pagination {
        position: absolute;
        bottom: 0 !important;
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 10;
        padding: 10px 0;
    }

    .stm-swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #ccc;
        opacity: 1;
        margin: 0 4px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .stm-swiper-pagination .swiper-pagination-bullet-active {
        background: #004b60;
    }

    @media (max-width: 1023px) {
        .stm-custom-prev {
            left: 10px;
        }

        .stm-custom-next {
            right: 10px;
        }
    }

    @media (max-width: 767px) {
        .stm-section-title {
            font-size: 2rem;
            padding-left: 0;
        }

        .stm-product-name {
            font-size: 1.2rem;
        }

        .stm-product-info {
            padding: 15px;
            gap: 10px;
        }
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }