.stock_title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20pt;
    font-family: "Vollda", sans-serif;
    color: var(--text-color-primary)
}

.products {
    margin-top: 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product {
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    color: var(--text-color-primary);
    transition: transform 0.2s;
}

.product img {
    height: 208px;
    width: 100%;
    border-radius: 8px;
}

.product p {
    margin-top: 10px;
    font-weight: bold;
    font-size: 14pt;
}

.product:hover {
    transform: scale(1.05);
}

.slider img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
}

.slider_container {
    position: relative;
    width: 30% !important;
    overflow: hidden;
}

#description {
    margin-top: 5%;
    font-size: 16pt;
    font-family: Vollda sans-serif;
    margin-bottom: 0;
}

.catalog_title {
    margin-top: 3%;
    margin-bottom: 15px;
    font-size: 17pt;
    font-family: "Vollda", sans-serif;
    color: var(--text-color-primary)
}

.slider_container .slick_dots li button {
    visibility: hidden !important;
}

.slider_section {
    margin-bottom: -2% !important;
}

.catalog_image {
    width: 100%;
}

.discount {
    margin-top: -5%;
    color: var(--text-color-discount);
    font-weight: bold;
    white-space: nowrap;
}

@media (min-width: 1920px) {
    .catalogs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    #description {
        font-size: 20pt;
    }
}