/**
 * Copyright since 2023 Hisham S
 * categorycarousel module for Prestashop
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License 3.0 (AFL-3.0)
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future. If you wish to customize PrestaShop for your
 * needs please refer to https://devdocs.prestashop.com/ for more information.
 *
 * @author    Hisham S <info@wow-presta.com>
 * @copyright Since 2023 Hisham S
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
 */
.categorycarousel-block {
    float: left;
    width: 100%;
    padding: 75px 0;
    background: #FFFEF9;
    margin-bottom: 75px;
    position: relative;
}
.categorycarousel-content-box-inner {
    padding: 0 10px;
}
.categorycarousel-item {
    cursor: pointer;
}

.categorycarousel-item .categorycarousel-item-img-wrapper {
    overflow: hidden;
    margin: 0 auto;
    border: 0.5px solid #E6FFB8;
}

.categorycarousel-item .categorycarousel-item-img-wrapper img.owl-lazy {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    margin: 0 auto;
}

.categorycarousel-item:hover .categorycarousel-item-img-wrapper img.owl-lazy {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.categorycarousel-item-content {
    width: 100%;
    float: left;
    text-align: center;
    margin: 15px 0 0;
}

.categorycarousel-item-title {
    display: inline-block;
    font-size: 32px;
    line-height: 120%;
    color: #1E1E1E;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    width: auto;
}

.categorycarousel-item-title:hover {
    color: #89C21E;
}

.categorycarousel-item-sub-title {
    font-size: 16px;
    font-weight: 600;
    padding-top: 7px;
}

.categorycarousel-item:hover .categorycarousel-item-title {
    color: #89C21E;
}

.categorycarousel-item-total-prod {
    font-size: 12px;
    line-height: 26px;
    color: #da3f3f;
    text-transform: uppercase;
    text-align: center;
}

.categorycarousel-item-desc {
    display: none;
}

.categorycarousel-block img {
    max-width: 100%;
    height: 100%;
}
@media(min-width: 1350) {
    .categorycarousel-block .row {
        margin: 0 -15px;
    }
    .categorycarousel-content-box-inner {
        padding: 0 15px;
    }
}

@media(max-width: 991px) {
    .categorycarousel-block {
        padding: 50px 0;
        margin-bottom: 50px;
    }
    .categorycarousel-item-title {
        font-size: 18px;
    }
}

@media(max-width: 575px) {
    .categorycarousel-block {
        margin-bottom: 30px;
        padding: 30px 0;
    }
    .categorycarousel-item-title {
        font-size: 16px;
    }
}