/** Shopify CDN: Minification failed

Line 560:0 Unexpected "}"

**/
/* === THEME RAPTOR - CSS OPTIMISÉ ET NETTOYÉ === */

/* === Variables CSS pour cohérence === */
:root {
  --header-bg: #ffffff;
  --social-bar-bg: #889080;
  --newsletter-bg: #8c735b;
  --border-color: #e0e0e0;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 0 3px rgba(0, 0, 0, 0.15);
  --shadow-button: 0 4px 8px rgba(0, 0, 0, 0.3);
  --transition-base: 0.3s ease;
  --z-header: 15000;
  --z-stories: 12000;
  --z-tooltip: 99999;
  --z-offcanvas: 1050;
  
  /* Newsletter colors */
  --btn-primary: #007bff;
  --btn-primary-hover: #0056b3;
}

/* === RESET ET BASE === */
body, #MainContent, .main-content, .shopify-section {
  margin: 0 !important;
  padding: 0 !important;
}

.container, .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.section-spacing, .section-margin, .page-margin {
  margin: 0 !important;
  padding: 0 !important;
}

/* === STICKY HEADER GROUP === */
.header-sticky-group {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  background-color: var(--header-bg);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: var(--shadow-light);
}

/* === MAIN CONTENT SPACING - VALEURS ORIGINALES RESTAURÉES === */
main {
  padding-top: 360px !important; /* Somme header total : social bar + navbar + stories bar */
}

/* === TOP SOCIAL BAR === */
.top-social-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--social-bar-bg);
  padding: 10px 20px;
  height: 60px;
  z-index: 1000;
  gap: 12px;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid var(--border-color);
}

.social-icons-left, .language-selector-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* === ICÔNES SOCIALES UNIFORMISÉES === */
.social-img-icon,
.footer-social-icons img,
.footer-social-icons svg {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  object-fit: contain;
  background-color: white;
  padding: 4px;
  border: 1px solid #ccc;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-base), opacity var(--transition-base);
  cursor: pointer;
}

.social-img-icon:hover,
.footer-social-icons img:hover,
.footer-social-icons svg:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* === DRAPEAUX === */
.flag-icon {
  width: 32px;
  height: 24px;
  border-radius: 6px !important;
  border: 2px solid white;
  background-color: white;
  object-fit: cover !important;
  box-shadow: var(--shadow-medium);
  display: inline-block;
}

.flag-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all var(--transition-base);
  min-height: 44px;
  min-width: 44px;
}

.flag-link:hover, .flag-link:focus {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  outline: none;
}

/* === STORIES BAR === */
.stories-bar-wrapper {
  width: 100%;
  background-color: var(--social-bar-bg);
  padding: 10px 0;
  z-index: var(--z-stories);
}

.stories-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.animated-stories-link {
  position: relative;
}

.animated-stories-link img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform var(--transition-base);
  user-select: none;
}

.animated-stories-link:hover img,
.animated-stories-link.tap-zoom img {
  transform: scale(1.15);
}

/* === TOOLTIP === */
.tooltip-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(15, 99, 120, 0.95);
  color: #fff;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 6px;
  white-space: nowrap;
  max-width: 90vw;
  text-overflow: ellipsis;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: opacity var(--transition-base), visibility var(--transition-base);
  z-index: var(--z-tooltip);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.tooltip-bubble.visible,
.tooltip-bubble.hover-visible,
.tooltip-bubble.tap-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* === IMAGE BANNER === */
.image-banner-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.image-banner-img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  display: block;
  margin: 0 !important;
  padding: 0 !important;
}

.image-banner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 0 20px;
  width: 90%;
  z-index: 2;
}

.image-banner-title {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.image-banner-description {
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-group .btn {
  padding: 12px 24px;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 6px;
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-button);
}

.btn-group .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* === FOOTER === */
.footer-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  margin: 24px 0;
  max-width: 100vw;
}

.footer-flags {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.footer-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  position: relative;
  height: 100px;
}

.footer-logo-img {
  max-width: 160px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-30%, -50%);
  background-color: transparent;
  border: none;
}

/* === NEWSLETTER OPTIMISÉE === */
.newsletter-wrapper {
  text-align: center;
  padding: 24px 16px;
  background-color: var(--newsletter-bg);
  max-width: 720px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}

.newsletter-logo img {
  max-height: 40px;
  margin-bottom: 12px;
}

.newsletter-form,
.newsletter-input-block {
  width: 100%;
}

.newsletter-input-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 10px;
  width: 100%;
}

.newsletter-name-input,
.newsletter-email-input {
  flex: 1 1 0;
  min-width: 0;
  font-size: 16px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  max-width: 100%;
  background: #fff !important;
  transition: all var(--transition-base);
}

.newsletter-name-input:focus,
.newsletter-email-input:focus {
  border-color: var(--btn-primary);
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
  outline: none;
}

.newsletter-submit {
  display: block;
  width: 100%;
  height: 44px;
  background-color: var(--btn-primary);
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color var(--transition-base);
}

.newsletter-submit:hover {
  background-color: var(--btn-primary-hover);
}

.newsletter-terms {
  font-size: 13px;
  margin-top: 8px;
  color: #eee !important; /* uniforme sur tous les écrans */
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.newsletter-terms a {
  color: inherit !important; /* hérite de #eee */
  text-decoration: underline;
}

/* === AFFICHAGE CONDITIONNEL === */
.only-mobile { display: none; }
.only-desktop { display: block; }

/* === RESPONSIVE DESIGN - VALEURS ORIGINALES RESTAURÉES === */

/* iPad et tablettes (portrait et paysage) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  main {
    padding-top: 100px !important; /* Exemple pour paysage */
    padding-top: 325px !important; /* Spécifique au portrait tablette */
  }
}

/* Mobile (max 767px) */
@media screen and (max-width: 767px) {
  .only-mobile { display: block; }
  .only-desktop { display: none; }

  main {
    padding-top: 255px !important; /* Ajusté pour mobile sticky compact */
  }

  .top-social-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    height: 45px;
  }

  .stories-bar {
    padding: 3px 6px;
  }

  .stories-bar-wrapper {
    padding: 6px 0;
  }

  .animated-stories-link img {
    width: 45px;
    height: 45px;
  }

  .tooltip-bubble {
    top: 120%;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 12px;
    padding: 4px 8px;
  }

  .image-banner-title {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .image-banner-description {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .btn-group {
    gap: 8px;
    margin-top: 12px;
  }

  .btn-group .btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .social-img-icon,
  .footer-social-icons img,
  .footer-social-icons svg {
    width: 30px !important;
    height: 30px !important;
  }

  .flag-icon {
    width: 24px !important;
    height: 18px !important;
  }

  /* Newsletter mobile - CHAMPS CÔTE À CÔTE COMME AVANT */
  .newsletter-input-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    justify-content: space-between !important;
    margin-bottom: 10px !important;
  }

  .newsletter-name-input,
  .newsletter-email-input {
    flex: 1 !important;
    min-width: 0 !important;
  }

  .newsletter-submit {
    height: 40px;
    font-size: 14px;
  }

  .newsletter-title {
    font-size: 20px;
  }

  .newsletter-terms {
    font-size: 10px !important;
    color: #eee !important; /* AJOUT ICI */
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    line-height: 1.1 !important;
    padding: 0 5px;
  }

  .newsletter-wrapper {
    padding: 20px 12px;
  }
}



  .newsletter-name-input,
  .newsletter-email-input {
    font-size: 14px !important;
    padding: 12px 15px !important;
    min-height: 48px !important;
  }
  
  .newsletter-name-input::placeholder,
  .newsletter-email-input::placeholder {
    font-size: 12px;
    color: #6c757d;
    opacity: 1;
  }

  .newsletter-terms {
    font-size: 9px !important;
    color: #eee !important; /* AJOUT ICI */
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding: 0 2px !important;
  }
}

/* Mobile très petit (max 320px) */
@media screen and (max-width: 320px) {
  .newsletter-name-input,
  .newsletter-email-input {
    font-size: 14px !important;
    padding: 12px 15px !important;
    min-height: 48px !important;
  }
  
  .newsletter-name-input::placeholder,
  .newsletter-email-input::placeholder {
    font-size: 12px;
    color: #6c757d;
    opacity: 1;
  }

  .newsletter-terms {
    font-size: 9px !important;
    color: #eee !important; /* AJOUT ICI */
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding: 0 2px !important;
  }
}

/* Desktop large (769px+) */
@media screen and (min-width: 769px) {
  .newsletter-terms {
    font-size: 13px;
    color: #eee;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
  }
}
.btn-wishlist .wishlist-icon svg {
  transition: transform 0.2s ease, fill 0.2s ease, stroke 0.2s ease;
}

.btn-wishlist .wishlist-icon svg.added {
  transform: scale(1.2);
  fill: #7f1d1d;
  stroke: #7f1d1d;
}
.btn-wishlist svg.added {
  fill: currentColor;
  color: #7f1d1d; /* exemple : bordeaux foncé */
}
/* === Wishlist Button Styles === */
.btn-wishlist svg {
  transition: fill 0.3s ease, color 0.3s ease;
  stroke: currentColor;
  fill: none;
}

/* Icône cœur activé (wishlist ajoutée) */
.btn-wishlist svg.added {
  fill: currentColor;
  color: #7f1d1d; /* Bordeaux foncé */
}

/* État actif du bouton */
.btn-wishlist.active {
  border-color: #7f1d1d;
  color: #7f1d1d;
}

/* Badge compteur wishlist (optionnel si utilisé) */
.wishlist-count-badge {
  display: inline-block;
  background-color: #7f1d1d;
  color: #fff;
  border-radius: 999px;
  padding: 0 6px;
  font-size: 12px;
  min-width: 20px;
  text-align: center;
  line-height: 20px;
}
/* === Wishlist Button Styles === */
.btn-wishlist svg {
  transition: fill 0.3s ease, color 0.3s ease;
  stroke: currentColor;
  fill: none;
}

/* Icône cœur activé (wishlist ajoutée) */
.btn-wishlist svg.added {
  fill: currentColor;
  color: #7f1d1d; /* Bordeaux foncé */
}

/* État actif du bouton */
.btn-wishlist.active {
  border-color: #7f1d1d;
  color: #7f1d1d;
}

/* Wishlist button - Mobile adjustment */
@media screen and (max-width: 767px) {
  .btn-wishlist {
    padding: 10px 12px;
    font-size: 13px;
  }

  .btn-wishlist svg {
    width: 14px;
    height: 14px;
    margin-right: 6px;
  }

  .btn-wishlist span {
    font-size: 13px;
  }
}

/* Badge compteur wishlist (desktop & mobile) */
.wishlist-count-badge {
  display: inline-block;
  background-color: #7f1d1d;
  color: #fff;
  border-radius: 999px;
  padding: 0 6px;
  font-size: 12px;
  min-width: 20px;
  text-align: center;
  line-height: 20px;
}

/* Mobile - petit badge */
@media screen and (max-width: 767px) {
  .wishlist-count-badge {
    font-size: 11px;
    min-width: 18px;
    line-height: 18px;
    padding: 0 5px;
  }
}
/* Animation Pulse */
@keyframes pulse-wishlist {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.35);
  }
  100% {
    transform: scale(1);
  }
}

/* Ajout classe lors de l'activation */
.btn-wishlist svg.animate-pulse {
  animation: pulse-wishlist 0.3s ease-in-out;
}