/** Shopify CDN: Minification failed

Line 452:46 Unterminated string token

**/
/* Store Information Section Styles */
.store-info-section .main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 85px;
  padding: 30px 0;
  position: relative;
  background-color: #ffffff;
  width: 100%;
  min-width: 1440px;
  min-height: 582px;
}

/* Responsive adjustments */
@media (max-width: 1440px) {
  .store-info-section .main-container {
    min-width: 100%;
    padding: 50px 20px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .store-info-section .main-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 15px;
  }
}

/* Image Section */
.store-info-section .image-thumbnails {
  display: flex;
  width: 776px; /* +20% de 646.99px */
  align-items: flex-start;
  gap: 28px; /* +20% de 23px */
  position: relative;
}

@media (max-width: 768px) {
  .store-info-section .image-thumbnails {
    width: 100%;
    max-width: 600px; /* +20% de 500px */
  }
}

.store-info-section .image-thumbnail {
  display: flex;
  flex-direction: column;
  width: 101px; /* +20% de 83.99px */
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
}

@media (max-width: 768px) {
  .store-info-section .image-thumbnail {
    width: 72px; /* +20% de 60px */
  }
}

.store-info-section .group-margin {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.store-info-section .group {
  height: 101px; /* +20% de 83.99px */
  object-fit: cover;
  position: relative;
  align-self: stretch;
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-info-section .group:hover,
.store-info-section .thumbnail-clickable:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .store-info-section .group {
    height: 72px; /* +20% de 60px */
  }
}

/* Placeholder styles for missing images */
.store-info-section .placeholder-image {
  background-color: #f0f0f0;
  border: 2px dashed #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-info-section .placeholder-image::after {
  content: "📷";
  font-size: 24px;
  color: #999999;
}

.store-info-section .main-image-container {
  position: relative;
  width: 648px; /* +20% de 540px */
  height: 456px; /* +20% de 380px */
  background-color: #f0f0f0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .store-info-section .main-image-container {
    width: 100%;
    height: 336px; /* +20% de 280px */
  }
}

.store-info-section .frame {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.store-info-section .frame:hover,
.store-info-section .main-image-clickable:hover {
  transform: scale(1.02);
}

.store-info-section .placeholder-main-image {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  border: 2px dashed #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-info-section .placeholder-main-image::after {
  content: "📷";
  font-size: 48px;
  color: #999999;
}

/* Store Information Section */
.store-info-section .store-info-container {
  /*display: flex;*/
  flex-direction: column;
  width: 356px;
  /*height: 382px;*/
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 768px) {
  .store-info-section .store-info-container {
    width: 100%;
    height: auto;
    gap: 20px;
  }
}

.store-info-section .store-name {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Avenir-Heavy", Arial, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 25px;
  letter-spacing: 0;
  line-height: normal;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .store-info-section .store-name {
    font-size: 22px;
    text-align: center;
  }
}

.store-info-section .store-details {
  /*display: flex;*/
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.store-info-section .address-container,
.store-info-section .hours-container,
.store-info-section .services-container {
  width: 100%;
  position: relative;
  align-self: stretch;
  margin-bottom: 15px;
}

/* Custom Text Section */
.store-info-section .custom-text-container {
  width: 100%;
  position: relative;
  align-self: stretch;
  margin-bottom: 15px;
}

.store-info-section .custom-text {
  font-family: "Avenir-Medium", Arial, sans-serif;
  font-weight: 500;
  color: #666666;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 17px;
  position: relative;
  align-self: stretch;
  margin: 0;
}

/* Modal Styles pour les images */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 1200px;
  max-height: 90%;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes zoomIn {
  from { transform: translate(-50%, -50%) scale(0.8); }
  to { transform: translate(-50%, -50%) scale(1); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10000;
}

.modal-close:hover,
.modal-close:focus {
  color: #cccccc;
  text-decoration: none;
}

.modal-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #cccccc;
  padding: 10px 0;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
}

.store-info-section .div {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 5px;
  position: relative;
}

.store-info-section .heading-address {
  position: relative;
  align-self: stretch;
  height: 26px;
  margin-top: -1px;
  font-family: "Avenir-Heavy", Arial, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 26px;
  white-space: nowrap;
}

.store-info-section .address-text {
  font-family: "Avenir-Medium", Arial, sans-serif;
  font-weight: 500;
  color: #666666;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 17px;
  position: relative;
  align-self: stretch;
  margin: 0;
}

.store-info-section .hours-text {
  font-family: "Avenir-Medium", Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 17px;
  position: relative;
  align-self: stretch;
  margin: 0;
}

.store-info-section .text-wrapper {
  color: #666666;
}

.store-info-section .span {
  color: #3b556f;
}

.store-info-section .services-list {
  /*display: flex;*/
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 0 0 auto;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.store-info-section .service-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.store-info-section .img {
  position: relative;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.store-info-section .placeholder-icon {
  width: 17px;
  height: 17px;
  background-color: #f0f0f0;
  border: 1px dashed #cccccc;
  border-radius: 2px;
}

.store-info-section .service-text {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: "Avenir-Medium", Arial, sans-serif;
  font-weight: 500;
  color: #666666;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 17px;
}

.store-info-section .store-link-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  margin-top: auto;
}

@media (max-width: 768px) {
  .store-info-section .store-link-container {
    align-self: center;
    margin-top: 20px;
  }
}

.store-info-section .store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  position: relative;
  flex: 0 0 auto;
  background-color: #000000;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.store-info-section .store-link:hover {
  background-color: #333333;
}

.store-info-section .store-link-text {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Avenir-Heavy,Arial,sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0;
  line-height: normal;
}

/* Font fallbacks for better compatibility */
.store-info-section * {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.store-info-section .store-name,
.store-info-section .heading-address {
  font-weight: 700;
}

.store-info-section .address-text,
.store-info-section .hours-text,
.store-info-section .service-text {
  font-weight: 500;
}

.store-info-section .store-link-text {
  font-weight: 500;
}

/* ===== AMÉLIORATIONS MINIMALES - À AJOUTER À VOTRE CSS EXISTANT ===== */

/* 1. Meilleure organisation visuelle avec séparateurs légers */
.store-info-section .address-container,
.store-info-section .hours-container,
.store-info-section .services-container,
.store-info-section .custom-text-container {
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.store-info-section .address-container:last-child,
.store-info-section .hours-container:last-child,
.store-info-section .services-container:last-child,
.store-info-section .custom-text-container:last-child {
  border-bottom: none;
}

/* 2. Titres de sections plus clairs */
.store-info-section .heading-address {
  color: #000;
  margin-bottom: 10px;
  padding-left: 12px;
  position: relative;
}

/* Petite barre verticale pour identifier les sections */
.store-info-section .heading-address::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 3px;
  height: 16px;
  background: #000;
  border-radius: 2px;
}

/* 3. Amélioration de la lisibilité des horaires */
.store-info-section .hours-text {
  line-height: 1.6;
}

/* Mise en évidence des horaires exceptionnels */
.store-info-section .hours-text p:last-child {
  color: #008C3E;
  font-weight: 600;
  margin-top: 8px;
}

/* 4. Services mieux organisés */
.store-info-section .services-list {
  margin-top: 5px;
}

.store-info-section .service-item {
  padding: 5px 0;
  border-bottom: 1px dotted #e5e7eb;
}

.store-info-section .service-item:last-child {
  border-bottom: none;
}

/* 5. Bouton légèrement amélioré */
.store-info-section .store-link {
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.store-info-section .store-link:hover {
  background-color: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 6. Ajustement pour les magasins avec peu d'infos */
.store-info-section .store-details:empty {
  display: none;
}

.store-info-section .store-details > *:only-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* 7. Meilleur espacement général */
.store-info-section .store-info-container {
  gap: 15px;
}

.store-info-section .div {
  gap: 8px;
}

/* 8. Texte plus lisible */
.store-info-section .address-text,
.store-info-section .hours-text,
.store-info-section .service-text,
.store-info-section .custom-text {
  color: #4a5568;
  line-height: 1.6;
}

/* 9. Focus sur l'accessibilité */
.store-info-section .store-link:focus {
  outline: 2px solid #3b556f;
  outline-offset: 2px;
}

/* 10. Responsive subtil */
@media (max-width: 768px) {
  .store-info-section .heading-address {
    font-size: 17px;
  }
  
  .store-info-section .address-container,
  .store-info-section .hours-container,
  .store-info-section .services-container,
  .store-info-section .custom-text-container {
    padding-bottom: 15px;
  }
}

/* 11. État "Fermé" pour le dimanche en rouge discret */
.store-info-section .hours-text:contains("Fermé") {
  color: #dc2626;
}

/* 12. Images avec coins légèrement arrondis */
.store-info-section .group,
.store-info-section .frame {
  border-radius: 4px;
}

/* ===== FIN DES AMÉLIORATIONS ===== */