/**
 * Copyright since 2023 Hisham S
 * categorycarouselwow 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)
 */
.categorycarouselwow-block {
    width: 100%;
    margin-bottom: 75px;
    display: block;
}
.categorycarouselwow-item-btn:hover{
    text-decoration: underline;
}
.categorycarouselwow-item {
    cursor: pointer;
     position: relative; /* add this */
}
.categorycarouselwow-content-box-inner {
    padding: 0 10px;
}
.categorycarouselwow-item .categorycarouselwow-item-img-wrapper {
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
}
.categorycarouselwow-content-wrapper .categorymain-title-wrapper {
    padding-bottom: 30px;
    color: #000;
    text-align: center;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}
.categorycarouselwow-item:hover .categorycarouselwow-item-img-wrapper{
    transform: rotateY(180deg);
}
.title_seperator{
    width: 200px;
    height: 0px;
    background: #000;
}
.categorycarouselwow-item-content {
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    background: #fff;
    width: max-content;
    z-index: 1;
    padding: 11px 15px;
    margin: auto;
    text-align: center;
}
.categorycarouselwow-item-title {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    color: #000;
    font-weight: 400;
    font-family: 'Tenor Sans';
    text-transform: uppercase;
    letter-spacing: 0.1px;
    width: auto;
}
.categorycarouselwow-item-title:hover {
    color: #DA291C;
}
.categorycarouselwow-item-sub-title {
    font-size: 16px;
    font-weight: 600;
    padding-top: 7px;
}
.categorycarouselwow-item:hover .categorycarouselwow-item-title{
    color: var(--theme-custom-color);
}
.categorycarouselwow-item-total-prod {
    font-size: 12px;
    line-height: 26px;
    color: #da3f3f;
    text-transform: uppercase;
    text-align: center;
}
.categorycarouselwow-item-desc{
    display: none;
}
.categorycarouselwow-block img {
    max-width: 100%;
     height: auto; 
}
.owl-nav-wow {
    float: none;
    padding: 0;
    text-align: center;
    vertical-align: top;
    display: inline-block;
}
.owl-nav-wow button.owl-prev {
    left: -50px !important;
    right: auto !important;
}

.owl-nav-wow button.owl-next {
    right: -50px !important;
    left: auto !important;
}

.owl-nav-wow button:hover {
    border-color: #000000 !important;
    background: #000000 !important;
}

.owl-nav-wow button {
    border: 1px solid #000;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    padding: 0;
    vertical-align: middle;
    width: 40px;
    position: absolute;
    border-radius: 50%;
    color: #fff !important;
    background: #AFAFAF !important;
    overflow: hidden;
    transition: left 400ms ease-in-out 0s, right 400ms ease-in-out 0s;
    -moz-transition: left 400ms ease-in-out 0s, right 400ms ease-in-out 0s;
    -webkit-transition: left 400ms ease-in-out 0s, right 400ms ease-in-out 0s;
    -khtml-transition: left 400ms ease-in-out 0s, right 400ms ease-in-out 0s;
    -o-transition: left 400ms ease-in-out 0s, right 400ms ease-in-out 0s;
    opacity: 1;
    top: 0;
    bottom: 0;
    margin: auto;
}

@media (max-width: 1350px) {
    .owl-nav-wow {
        float: left;
        width: 100%;
        margin: 20px 0 0;
    }
    .owl-nav-wow button {
        position: static;
        margin: 0 5px;
    }
}

@media(max-width: 991px){
    .categorycarouselwow-block {
        margin-bottom: 30px;
    }
}
@media(max-width: 575px){
    .categorycarouselwow-block {
        margin-bottom: 20px;
    }

    .product-main-title, #products .product-main-title, .featured-products .product-main-title, .product-accessories .products-main-title {
        font-size: 24px;
        line-height: 28px;
        margin: 0 0 20px;
    }
    
}