/* Bandeau principal Boutique */
.boutique-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.boutique-hero .stellar-nexus-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
}
.boutique-hero .stellar-nexus-title {
  font-size: 5.5em;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
  line-height: 1;
  margin-top: 0;
}
.boutique-hero .stellar-nexus-subtitle {
  font-size: 7em;
  letter-spacing: 0.12em;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1;
  text-shadow: 0 2px 32px #000c;
}
.boutique-hero .stellar-nexus-desc {
  font-size: 2em;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .boutique-hero .stellar-nexus-title { font-size: 2.8em; }
  .boutique-hero .stellar-nexus-subtitle { font-size: 3.5em; }
  .boutique-hero .stellar-nexus-desc { font-size: 1.2em; }
}
/* Séparateur déjà géré par .sn-separateur-wrapper */
.sn-separateur-wrapper {
  position: relative !important;
  width: 100vw !important;
  height: 5px !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 10 !important;
}
.sn-separateur {
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: 100vw !important;
  min-width: 100vw !important;
  max-width: 100vw !important;
  height: 5px !important;
  margin: 0 !important;
  z-index: 11 !important;
  background: transparent !important;
  opacity: 1 !important;
  filter: none !important;
  pointer-events: auto !important;
  transform: translateX(-50%) !important;
  box-shadow: 0 -6px 16px 0px rgba(0,0,0,0.85), 0 6px 16px 0px rgba(0,0,0,0.85) !important;
}

/* Styles pour la page boutique */
.boutique-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em 2em;
  text-align: center;
}

.boutique-header {
  margin: 2em 0 3em 0;
}

.boutique-header h1 {
  font-family: 'LocalBrewerySans', Arial, sans-serif;
  font-size: 3.5em;
  color: var(--color-text);
  margin-bottom: 0.5em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.boutique-header p:not(.boutique-note) {
  font-family: 'Comfortaa', Arial, sans-serif;
  font-size: 1.8em;
  color: #e0e6f7;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive pour le sous-titre */
@media (max-width: 600px) {
  .boutique-header p:not(.boutique-note) {
    font-size: 0.9em !important;
  }
}

.boutique-note {
  font-size: 1.1em;
  color: var(--color-text-secondary);
  font-style: italic;
  margin: 0;
  margin-bottom: 1em;
  text-align: center;
  opacity: 0.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.boutique-platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3em;
  margin: 0;
  justify-items: center;
}

/* Grille de produits en vedette */
.merch-grid {
  margin: 1.5em 0 1.5em 0;
  text-align: center;
}

.merch-grid h3 {
  font-family: 'LocalBrewerySans', Arial, sans-serif;
  font-size: 2.2em;
  color: var(--color-text);
  margin-bottom: 1.5em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.merch-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5em;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em;
  background: linear-gradient(135deg, rgba(132,123,245,0.05) 0%, rgba(116,80,169,0.05) 100%);
  border-radius: 1em;
  box-shadow: 0 8px 32px rgba(24,28,43,0.2);
}

.merch-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.8em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.merch-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Styles pour les liens de merchandising */
.merch-link {
  display: block;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.merch-link:hover {
  transform: scale(1.05);
}

.merch-link:hover .merch-img {
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Responsive pour la grille */
@media (max-width: 900px) {
  .merch-grid h3 {
    font-size: 1.8em;
  }
  
  .merch-images {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1em;
  }
  
  .merch-img {
    height: 150px;
  }
}

/* Desktop - plus de marge entre boutique-platforms et merch-grid */
@media (min-width: 901px) {
  .boutique-platforms {
    margin-bottom: 3em;
  }
  
  .merch-grid {
    margin-top: 1.5em;
  }
}

@media (max-width: 600px) {
  .merch-grid h3 {
    font-size: 1.5em;
  }
  
  .merch-images {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8em;
    padding: 1.5em;
  }
  
  .merch-img {
    height: 120px;
  }
  
  /* Réduire la marge entre merch-grid et boutique-platforms sur mobile */
  .boutique-platforms {
    margin-bottom: 1em;
  }
  
  .merch-grid {
    margin-top: 1em;
  }
}

/* Mode vertical (orientation portrait) */
@media (orientation: portrait) and (max-width: 900px) {
  .merch-grid h3 {
    font-size: 1.6em;
    margin-bottom: 1em;
  }
  
  .merch-images {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.6em;
    padding: 1em;
    max-width: 100%;
  }
  
  .merch-img {
    height: 100px;
  }
}

@media (orientation: portrait) and (max-width: 600px) {
  .merch-grid h3 {
    font-size: 1.4em;
  }
  
  .merch-images {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5em;
    padding: 0.8em;
  }
  
  .merch-img {
    height: 80px;
  }
}

/* Mode horizontal mobile - 2 lignes de 5 articles */
@media (orientation: landscape) and (max-width: 900px) {
  .merch-images {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 0.8em !important;
    padding: 1em !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .merch-img {
    height: 120px !important;
  }
}

.platform-card {
  background: linear-gradient(135deg, rgba(132,123,245,0.1) 0%, rgba(116,80,169,0.1) 100%);
  border-radius: 1.2em;
  padding: 2em;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(24,28,43,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(24,28,43,0.3);
}

.platform-card h2 {
  font-family: 'LocalBrewerySans', Arial, sans-serif;
  font-size: 2.2em;
  color: var(--color-text);
  margin-bottom: 0.5em;
}

.platform-card p {
  font-family: 'Comfortaa', Arial, sans-serif;
  font-size: 1.1em;
  color: #e0e6f7;
  margin-bottom: 1.5em;
  line-height: 1.5;
}

.platform-link {
  display: block;
  position: relative;
  border-radius: 1em;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-link:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.platform-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

.platform-link:hover .platform-image {
  filter: brightness(0.8);
}

.platform-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 0.8em 1.5em;
  border-radius: 0.5em;
  font-family: 'Comfortaa', Arial, sans-serif;
  font-size: 1.1em;
  font-weight: bold;
  display: none;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.boutique-footer {
  margin-top: 4em;
  padding: 2em;
  background: linear-gradient(135deg, rgba(132,123,245,0.05) 0%, rgba(116,80,169,0.05) 100%);
  border-radius: 1em;
  border: 1px solid rgba(132,123,245,0.2);
}

.boutique-footer p {
  font-family: 'Comfortaa', Arial, sans-serif;
  font-size: 1.1em;
  color: #e0e6f7;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .boutique-content {
    padding: 3em 1.5em;
  }
  
  .boutique-header h1 {
    font-size: 2.8em;
  }
  
  .boutique-header p {
    font-size: 1.1em;
  }
  
  .boutique-platforms {
    grid-template-columns: 1fr;
    gap: 2em;
  }
  
  .platform-card {
    padding: 1.5em;
  }
  
  .platform-card h2 {
    font-size: 1.8em;
  }
  
  .platform-image {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .boutique-content {
    padding: 1em;
  }
  
  .boutique-header h1 {
    font-size: 2.5em;
  }
  
  .boutique-header p {
    font-size: 0.9em !important;
  }
  
  .platform-card {
    padding: 1.5em;
  }
  
  .platform-card h2 {
    font-size: 1.5em;
  }
  
  .platform-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .boutique-footer {
    margin-top: 2em;
  }
  
  .boutique-footer p {
    font-size: 0.9em;
  }
  
  .boutique-note {
    font-size: 0.9em;
  }
} 