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

.carouselConcept {
  position: relative;
  max-width: 800px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
  
}

.carousel-innerConcept {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-innerConcept img {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  user-select: none;
  pointer-events: none;
  transform: scale(1);
  transition: transform 0.1s linear;
  display: block;
}

/* Slides avec texte */
.slide-with-text {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-with-text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.1s linear;
  display: block;
  z-index: 1;
  position: relative;
}

/* Texte centré avec fond et box-shadow */
.carousel-slide-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(245, 245, 220, 0.8); /* beige transparent */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #000;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  padding: 20px 30px;
  display: inline-block;
  z-index: 2;
  line-height: 1.4;
}

/* Bouton rose */
.btn-bout {
  margin-top: 10px;
  background-color: rgb(214, 51, 132);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-bout:hover {
  background-color: #e33b92;
}

/* Flèches harmonisées */
/* Flèches initialement invisibles */
.carousel-btnConcept {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: black;
  border: none;
  width: 40px;
  height: 60px;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
  opacity: 0;                /* invisibles par défaut */
  transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease;
}

/* Au survol du carousel, les flèches apparaissent */
.carouselConcept:hover .carousel-btnConcept {
  opacity: 1;
}

.carousel-btnConcept:hover {
  background: #DFABB2;
  color: white;
}

.prevConcept { left: 0; }
.nextConcept { right: 0; }


/* Responsive */
@media (max-width: 768px) {
  .carouselConcept { aspect-ratio: 16 / 9; }
  .carousel-btnConcept { width: 35px; height: 50px; font-size: 24px; line-height: 50px; }
}
