/**
* 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.
*/
#homeproduct {
    display: flex;
    margin-top: 130px;
    padding-top: 130px;
    padding-bottom: 130px;
    position: relative;
    z-index: 0;
}
#homeproduct::before{
    content: "";
    background-color: #F4F3EF;
    width: calc(100vw + 35vw);
    height: 100%;
    left: -50vw;
    top: 0;
    position: absolute;
    z-index: -1;
    border-radius: 0 50px 50px 0;
}
#homeproduct img {
    max-width: 482px;
}
.homeproduct_title {
    font-size: 36px;
    font-family: DM Serif Display;
    color: #272727;
    line-height: normal;
    margin-bottom: 20px;
}
.homeproduct_informations h2 {
    font-size: 20px;
}
.homeproduct_description p {
    color: #272727;
    margin-bottom: 40px;
}
.homeproduct_informations {
    padding: 40px 100px;
    max-width: 55%;
}
.homeproduct_description {
    margin-top: 40px;
}
.homeproduct_addtocart {
    color: #F4F3EF;
    background-color: #D5A356;
    padding: 12px 45px;
}
.homeproduct_addtocart:hover span{
    font-weight: bold;
}
.homeproduct_addtocart:hover {
    color: #F4F3EF;
    font-weight: bold;
}
.homeproduct_addtocart span {
    margin-right: 10px;
}