/**
* 2007-2025 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-2025 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.
*/
/*contact*/
.store-infos-banner {
  width: 100%;
  background: #fce5c6;
  padding: 25px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-top: 6px solid #78c6b9;
  border-bottom: 6px solid #78c6b9;
  font-family: 'Arial', sans-serif;
  color: #251d67;
}

.store-infos-content {
  max-width: 1500px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

@media (min-width: 768px) {
  .store-infos-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.store-follow,
.store-hours {
  font-size: 18px;
}

.social-link {
  margin-left: 10px;
  display: inline-block;
  color: #3b9677;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.social-link .icon {
  width: 42px;
  height: 42px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.social-link:hover {
  color: #2f7d67;
}

.social-link:hover .icon {
  transform: scale(1.2);
}

/*plan*/
.store-map img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Ajustement du layout */
@media (min-width: 768px) {
  .store-infos-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .store-map {
    flex-shrink: 0;
  }
}

/* Sur mobile : l’image passe en dessous et centrée */
@media (max-width: 767px) {
  .store-map {
    text-align: center;
    margin-top: 15px;
  }

  .store-map img {
    max-width: 90%;
  }
}

