/**
* 2007-2023 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-2023 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.
*/

/* ===================== SHARED (home + list) ===================== */
.ecommtrustedicons_home,
.ecommtrustedicons_list {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    max-width: none;
    padding: 30px 15px;
    box-sizing: border-box;
}

.ecommtrustedicons_home .icons_container,
.ecommtrustedicons_list .icons_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    gap: 20px 0;
}

.ecommtrustedicons_home .ecomm_icon_container,
.ecommtrustedicons_list .ecomm_icon_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 15px;
    box-sizing: border-box;
}

.ecommtrustedicons_home .ecomm_icon_img,
.ecommtrustedicons_list .ecomm_icon_img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 86px;
    margin-bottom: 10px;
}

.ecommtrustedicons_home .ecomm_icon_img img,
.ecommtrustedicons_list .ecomm_icon_img img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.ecommtrustedicons_home .title_ecomm_icon,
.ecommtrustedicons_list .title_ecomm_icon {
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecommtrustedicons_home .title_ecomm_description {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 6px;
    max-width: 200px;
}

/* ===================== DESKTOP (5 columnas) ===================== */
@media (min-width: 1200px) {
    .ecommtrustedicons_home .ecomm_icon_container,
    .ecommtrustedicons_list .ecomm_icon_container {
        width: 20%;
    }
}

/* ===================== DESKTOP SMALL (992-1199) ===================== */
@media (min-width: 992px) and (max-width: 1199px) {
    .ecommtrustedicons_home .ecomm_icon_container,
    .ecommtrustedicons_list .ecomm_icon_container {
        width: 20%;
    }

    .ecommtrustedicons_home .title_ecomm_icon,
    .ecommtrustedicons_list .title_ecomm_icon {
        font-size: 15px;
    }
}

/* ===================== TABLET (768-991) ===================== */
@media (min-width: 768px) and (max-width: 991px) {
    .ecommtrustedicons_home .ecomm_icon_container,
    .ecommtrustedicons_list .ecomm_icon_container {
        width: 33.333%;
    }
}

/* ===================== MOBILE (<=767) ===================== */
@media (max-width: 767px) {
    .ecommtrustedicons_home,
    .ecommtrustedicons_list {
        padding: 20px 10px;
    }

    .ecommtrustedicons_home .ecomm_icon_container,
    .ecommtrustedicons_list .ecomm_icon_container {
        width: 50%;
    }

    .ecommtrustedicons_home .ecomm_icon_img,
    .ecommtrustedicons_list .ecomm_icon_img {
        height: 60px;
    }

    .ecommtrustedicons_home .title_ecomm_icon,
    .ecommtrustedicons_list .title_ecomm_icon {
        font-size: 14px;
    }
}
