/**
* 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.
*/
/* Section */
/* Section */
/* Section */
.tauxcomm {
  width: 100%;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
  background: #f3f6f9;
}

.tauxcomm .container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

/* Cartes simulateur / visuel */
.simulateur, .visuel {
  flex: 1 1 450px;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.simulateur:hover, .visuel:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Titres */
.simulateur h2, .visuel h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
}

/* Input */
.simulateur input {
  width: 100%;
  padding: 14px 18px;
  font-size: 1.1rem;
  border-radius: 15px;
  border: 2px solid #dde3ea;
  margin-bottom: 20px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.simulateur input:focus {
  border-color: #4caf50;
  box-shadow: 0 0 10px rgba(76,175,80,0.3);
  outline: none;
}

/* Resultats style highlight-ecco */
.resultats p {
  margin-bottom: 12px;
}

.bord-vert {
  border-left: 5px solid #2e7d32;
}

.bord-orange {
  border-left: 5px solid #f39c12;
}

.bord-rouge {
  border-left: 5px solid #e74c3c;
}

/* Texte highlight-ecco */
.highlight-ecco {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  color: #222;
  font-weight: 600;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* SVG Pull */
#pull-svg {
  width: 100%;
  height: 450px;
}

#pull-svg text {
  font-size: 5px;
  font-weight: 700;
  fill: #fff;
  line-height: 1.2;
}

/* Responsive */
@media screen and (max-width: 920px) {
  .tauxcomm .container {
    flex-direction: column;
    align-items: center;
	width: 360px;
  }
  
  .simulateur, .visuel {
    width: 100%;
    padding: 30px;
  }

  #pull-svg {
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .simulateur input {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .highlight-ecco {
    padding: 15px;
    font-size: 0.95rem;
  }

  .simulateur h2, .visuel h3 {
    font-size: 1.5rem;
  }
}



