/**
* 2007-2024 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* 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 http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2024 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

.panc-featured {
    margin-top: 2.75rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 75px;
}

.panc-featured-label span{
    background-color: var(--primary);
    padding: 5px;
    color: #FFFFFF;
    font-weight: 700;
}

.panc-featured-title span {
    font-size: 40px;
    font-weight: 900;
    line-height: 45px;
}

.panc-featured-info-title span:first-child {
    color: var(--primary);
    font-size: 25px;
    font-weight: bold;
}

.panc-featured-info-description {
    font-weight: 400;
    font-size: 17px;
}

.panc-featured-button-description {
    font-weight: bold;
    font-size: 17px;
    color: var(--primary);
}

.panc-featured a.panc-featured-button {
    font-size: 25px;
    color: var(--primary);
    padding: 20px;
    border-radius: 60px;
    background-color: transparent;
    border: 2px solid var(--primary);
    font-weight: bold;
}

.dropdown-menu {
    padding: 0;
    margin:0 ;
}

.panc-featured a.panc-featured-button:hover {
    background-color: var(--primary);
    color: #FFFFFF;
}

.panc-featured img {
    width: 100%;
}

.leo-megamenu li .dropdown-sub {
    background-color: transparent;
    box-shadow: none;
    border:none;
}


.leo-megamenu li .dropdown-sub .dropdown-menu-inner {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #FFFFFF;
    padding: 20px;
}

.leo-megamenu li:hover > .dropdown-menu .dropdown-menu-inner:before {
    content: '';
    position: absolute;
    top: 25px; /* Slightly above the triangle */
    left: 50%;
    transform: translateX(-50%);
    border-left: 11px solid transparent; /* Border size + 1px for the border */
    border-right: 11px solid transparent;
    z-index: 1;
}

.leo-megamenu li:hover > .dropdown-menu .dropdown-menu-inner:after {
    content: '';
    position: absolute;
    top: 25px; /* Align with the triangle */
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #FFFFFF; /* Triangle color */
    z-index: 2;
}

#mobile_top_menu_wrapper {
    display:none;
}

.panc-button-block {
    flex-wrap: wrap;
}

.header-top-right {
    border-bottom: 2px solid #E52922;
    padding-bottom: 10px;
}

@media  (max-width: 768px) {
    .panc-featured {
        margin-bottom: 1.5rem !important;
        margin-top: 0 !important;
        border-bottom: none;
        padding-bottom: 1rem;
    }

    .panc-button-block {
        justify-content: center;
    }

    .panc-featured-button {
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    .panc-featured-button-description {
        width: 100%;
        text-align: center;
    }

    .panc-featured-title {
        margin-bottom: 30px !important;
    }

    .panc-featured-info-title {
        margin-bottom: 2rem !important;
    }

    .panc-featured a.panc-featured-button {
        padding: 20px 35px;
    }

    #header .container {
        margin-top: 0 !important;
    }

    .navbar-toggler {
        width: 38px;
        padding: 0;
        font-size: 42px;
    }

    .header-top-right {
        border-bottom: none;
    }
}

@media (min-width: 768px) {
    .panc-featured img {
        max-width: 442px;
    }

    .panc-featured a.panc-featured-button {
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .panc-featured-label {
        margin-top:0 !important;
        margin-bottom: 10px !important;
    }

    .panc-featured-title span {
        font-size: 28px;
    }

    .panc-featured-title {
        margin-bottom: 10px !important;
    }

    .panc-featured-info-title {
        margin-bottom: 20px !important;
    }

    .panc-featured a.panc-featured-button {
        font-size: 16px;
        padding: 15px;
        margin-right: 15px !important;
    }

    .panc-button-block {
        flex-wrap: nowrap;
    }
}


