/* Obfuscation */
.obfme, .obfme img{
    cursor: pointer;
}
[data-obflink] {
  cursor: pointer;
}
/* Style pour le panier déroulant */
.ever-shopping-cart .dropdown-menu.cart-dropdown-content {
  padding: 15px;
  min-width: 200px;
  max-width: 300px;
  margin-top: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Ajoutez une ombre pour mettre en relief le panier */
  border: 1px solid #dee2e6; /* Ajoutez une bordure */
  border-radius: 5px; /* Ajoutez des coins arrondis */
  background-color: #fff; /* Changez la couleur de fond */
}

.ever-shopping-cart .cart-product {
  margin-bottom: 10px;
}

.ever-shopping-cart .product-name {
  font-weight: bold;
}

.ever-shopping-cart .cart-total {
  margin-top: 10px;
  text-align: right;
  font-weight: bold;
}
/* Style pour les boutons de partage */

.everblock-sharer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  padding: 10px;
}

.everblock-sharer a {
  text-decoration: none;
  margin-right: 10px;
}

.everblock-sharer a:last-child {
  margin-right: 0;
}

.everblock-sharer .social-share-button {
  background-color: #fff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.everblock-sharer .social-share-button:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.everblock-sharer .social-share-button img {
  width: 24px;
  height: 24px;
}
.everblock-gallery img {
    cursor: pointer;
}
.everblock-gallery-modal .modal-header,
.everblock-testimonial .text-center,
.everblock-parallax .text-center {
  text-align: center;
}
.everblock-parallax .parallax-container {
    position: relative;
    overflow: hidden;
}
.everblock-parallax .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transform: translateZ(0);
    z-index: 0;
}
.everblock-parallax .parallax-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}
.everblock-overlay .image-overlay-container {
    position: relative;
    overflow: hidden;
}
.everblock-overlay .image-overlay-container img {
    width: 100%;
    height: auto;
}
.everblock-overlay .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
}

/* Média query pour les écrans de taille moyenne (tablettes) */
@media (max-width: 768px) {
    .everblock-overlay .overlay {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}

/* Média query pour les petits écrans (smartphones) */
@media (max-width: 576px) {
    .everblock-overlay .overlay {
        top: 0;
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}
.nav-tabs .nav-item{
    list-style-type: none;
}
#everblockModal button.close{
    float: right;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}
.ever-model-product.card {
    border: 1px solid #dee2e6; /* même valeur que Bootstrap 4 */
    border-radius: .25rem;
    background-color: #fff;
}
.everblock-highlight {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.everblock-highlight:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
/* Responsive width */
/* SM ≥576px */
@media (min-width: 576px) {
  .w-sm-25 { width: 25% !important; }
  .w-sm-50 { width: 50% !important; }
  .w-sm-75 { width: 75% !important; }
  .w-sm-100 { width: 100% !important; }
}

/* MD ≥768px */
@media (min-width: 768px) {
  .w-md-25 { width: 25% !important; }
  .w-md-50 { width: 50% !important; }
  .w-md-75 { width: 75% !important; }
  .w-md-100 { width: 100% !important; }
}

/* LG ≥992px */
@media (min-width: 992px) {
  .w-lg-25 { width: 25% !important; }
  .w-lg-50 { width: 50% !important; }
  .w-lg-75 { width: 75% !important; }
  .w-lg-100 { width: 100% !important; }
}

/* XL ≥1200px */
@media (min-width: 1200px) {
  .w-xl-25 { width: 25% !important; }
  .w-xl-50 { width: 50% !important; }
  .w-xl-75 { width: 75% !important; }
  .w-xl-100 { width: 100% !important; }
}

/* XXL ≥1400px */
@media (min-width: 1400px) {
  .w-xxl-25 { width: 25% !important; }
  .w-xxl-50 { width: 50% !important; }
  .w-xxl-75 { width: 75% !important; }
  .w-xxl-100 { width: 100% !important; }
}

/* Responsive height */
/* Height: 25%, 50%, 75%, 100% - Base (all sizes) */
.h-25 { height: 25% !important; }
.h-50 { height: 50% !important; }
.h-75 { height: 75% !important; }
.h-100 { height: 100% !important; }

/* SM ≥576px */
@media (min-width: 576px) {
  .h-sm-25 { height: 25% !important; }
  .h-sm-50 { height: 50% !important; }
  .h-sm-75 { height: 75% !important; }
  .h-sm-100 { height: 100% !important; }
}

/* MD ≥768px */
@media (min-width: 768px) {
  .h-md-25 { height: 25% !important; }
  .h-md-50 { height: 50% !important; }
  .h-md-75 { height: 75% !important; }
  .h-md-100 { height: 100% !important; }
}

/* LG ≥992px */
@media (min-width: 992px) {
  .h-lg-25 { height: 25% !important; }
  .h-lg-50 { height: 50% !important; }
  .h-lg-75 { height: 75% !important; }
  .h-lg-100 { height: 100% !important; }
}

/* XL ≥1200px */
@media (min-width: 1200px) {
  .h-xl-25 { height: 25% !important; }
  .h-xl-50 { height: 50% !important; }
  .h-xl-75 { height: 75% !important; }
  .h-xl-100 { height: 100% !important; }
}

/* XXL ≥1400px */
@media (min-width: 1400px) {
  .h-xxl-25 { height: 25% !important; }
  .h-xxl-50 { height: 50% !important; }
  .h-xxl-75 { height: 75% !important; }
  .h-xxl-100 { height: 100% !important; }
}
