/**
* 2007-2026 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-2026 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.
*/
.grp-home-reassurance,
.grp-home-section {
    max-width: 1320px;
    margin: 35px auto;
    padding: 0 15px;
}

.grp-home-reassurance {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.grp-reassurance-card,
.grp-season-card,
.grp-step-card,
.grp-home-seo,
.grp-home-faq {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

.grp-reassurance-card .grp-icon {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
}

.grp-reassurance-card strong,
.grp-season-card strong,
.grp-step-card strong {
    display: block;
    font-size: 17px;
    margin-bottom: 7px;
    color: #111;
}

.grp-reassurance-card p,
.grp-season-card p,
.grp-step-card p,
.grp-home-seo p,
.grp-home-faq p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.grp-section-heading {
    margin-bottom: 18px;
}

.grp-section-heading h2,
.grp-home-seo h2,
.grp-home-faq h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #111;
}

.grp-section-heading p {
    color: #666;
    margin: 0;
}

.grp-dimension-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.grp-dimension-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #fff;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    transition: all .2s ease;
}

.grp-dimension-links a:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.grp-season-grid,
.grp-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.grp-step-card span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 12px;
}

.grp-brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.grp-brand-list span {
    padding: 10px 16px;
    border-radius: 10px;
    background: #f6f6f6;
    font-weight: 600;
    color: #222;
}

.grp-home-seo {
    line-height: 1.7;
}

.grp-home-seo p + p {
    margin-top: 12px;
}

.grp-home-btn {
    display: inline-flex;
    margin-top: 18px;
    padding: 12px 20px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.grp-home-btn:hover {
    color: #fff;
    opacity: .9;
}

.grp-home-faq details {
    border-top: 1px solid #eee;
    padding: 16px 0;
}

.grp-home-faq details:first-of-type {
    margin-top: 10px;
}

.grp-home-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: #111;
}

.grp-home-faq details p {
    margin-top: 10px;
}

@media (max-width: 991px) {
    .grp-home-reassurance {
        grid-template-columns: repeat(2, 1fr);
    }

    .grp-season-grid,
    .grp-step-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .grp-home-reassurance {
        grid-template-columns: 1fr;
    }

    .grp-section-heading h2,
    .grp-home-seo h2,
    .grp-home-faq h2 {
        font-size: 23px;
    }

    .grp-reassurance-card,
    .grp-season-card,
    .grp-step-card,
    .grp-home-seo,
    .grp-home-faq {
        padding: 18px;
    }
}