/** Shopify CDN: Minification failed

Line 151:0 All "@import" rules must come first
Line 476:0 All "@import" rules must come first

**/
.solar-collection {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 48px;
  background: #F5F5F0;
  font-family: 'DM Sans', sans-serif;
}

/* GAUCHE */
.solar-collection__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.solar-collection__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FF6B35;
  margin-bottom: 14px;
}

.solar-collection__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.15;
  margin-bottom: 14px;
  white-space: pre-line;
}

.solar-collection__text {
  font-size: 14px;
  color: #5a5750;
  line-height: 1.7;
  margin-bottom: 28px;
}

.solar-collection__btn {
  display: inline-block;
  padding: 14px 28px;
  background: #1A1A1A;
  color: #F5F5F0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.solar-collection__btn:hover {
  background: #FF6B35;
  color: white;
}

/* GRILLE */
.solar-collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.solar-collection__item {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}
.solar-collection__item:hover {
  transform: translateY(-4px);
}

.solar-collection__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #eae6de;
  aspect-ratio: 1;
  position: relative;
}

.solar-collection__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.solar-collection__item:hover .solar-collection__img-wrap img {
  transform: scale(1.04);
}

.solar-collection__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e2d8 0%, #d8d0c4 100%);
}

.solar-collection__item-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1A1A1A;
  text-align: center;
}

.solar-collection__item-desc {
  font-size: 12px;
  color: #8a8580;
  line-height: 1.4;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .solar-collection {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 32px;
  }
  .solar-collection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .solar-collection__btn {
    align-self: stretch;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .solar-collection__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

.solar-univers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  font-family: 'DM Sans', sans-serif;
  background: #F5F5F0;
  overflow: hidden;
}

/* IMAGE GAUCHE */
.solar-univers__image {
  position: relative;
  overflow: hidden;
}
.solar-univers__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.solar-univers__placeholder {
  width: 100%;
  height: 100%;
  background: #e8e0d0;
}

/* CONTENU DROITE */
.solar-univers__content {
  padding: 56px 64px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F5F5F0;
}

/* EYEBROW */
.solar-univers__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FF6B35;
  margin-bottom: 16px;
}

/* TITRE */
.solar-univers__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.15;
  margin-bottom: 16px;
  white-space: pre-line;
}

/* TEXTE */
.solar-univers__text {
  font-size: 14px;
  color: #5a5750;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

/* PILIERS */
.solar-univers__pillars {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
}

.solar-univers__pillar {
  flex: 1;
  padding: 0 20px 0 0;
  text-align: center;
}

.solar-univers__pillar--border {
  border-right: 1px solid #d8d4cc;
  margin-right: 20px;
}

.solar-univers__pillar-icon {
  font-size: 22px;
  color: #1A1A1A;
  margin-bottom: 10px;
  line-height: 1;
}

.solar-univers__pillar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.solar-univers__pillar-desc {
  font-size: 12px;
  color: #8a8580;
  line-height: 1.4;
}

/* BOUTON */
.solar-univers__btn {
  display: inline-block;
  padding: 14px 32px;
  background: #1A1A1A;
  color: #F5F5F0;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
}
.solar-univers__btn:hover {
  background: #FF6B35;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .solar-univers {
    grid-template-columns: 1fr;
  }
  .solar-univers__image {
    height: 320px;
  }
  .solar-univers__content {
    padding: 36px 24px;
  }
  .solar-univers__pillars {
    flex-wrap: wrap;
    gap: 20px;
  }
  .solar-univers__pillar {
    flex: 1 1 40%;
    padding: 0;
    border-right: none !important;
    margin-right: 0 !important;
  }
  .solar-univers__btn {
    align-self: stretch;
    text-align: center;
  }
}
.solar-avis {
  background: #F5F5F0;
  padding: 64px 0 48px;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
}

/* HEADER */
.solar-avis__header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 48px;
}

.solar-avis__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 3px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.solar-avis__stars {
  font-size: 24px;
  color: #FF6B35;
  letter-spacing: 4px;
  margin-bottom: 6px;
}

.solar-avis__count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #1A1A1A;
  opacity: 0.7;
}

/* TRACK */
.solar-avis__track-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.solar-avis__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 48px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.solar-avis__track::-webkit-scrollbar { display: none; }

/* ARROWS */
.solar-avis__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #1A1A1A;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.solar-avis__arrow:hover { background: #333; }
.solar-avis__arrow--left { left: 12px; }
.solar-avis__arrow--right { right: 12px; }

/* CARDS */
.solar-avis__card {
  flex: 0 0 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solar-avis__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.solar-avis__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FF6B35;
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solar-avis__name {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
}

.solar-avis__verified {
  font-size: 11px;
  color: #FF6B35;
  margin-top: 2px;
}

.solar-avis__card-stars {
  font-size: 16px;
  color: #FF6B35;
  letter-spacing: 2px;
}

.solar-avis__text {
  font-size: 13px;
  color: #b0a898;
  line-height: 1.65;
}

/* FOOTER */
.solar-avis__footer {
  text-align: center;
  margin-top: 36px;
  padding: 0 48px;
}

.solar-avis__btn {
  display: inline-block;
  padding: 14px 40px;
  background: #1A1A1A;
  color: #F5F5F0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 2px;
}
.solar-avis__btn:hover {
  background: #F5F5F0;
  color: #1A1A1A;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .solar-avis { padding: 48px 0 36px; }
  .solar-avis__header { padding: 0 20px; }
  .solar-avis__track { padding: 8px 20px 16px; }
  .solar-avis__card { flex: 0 0 240px; }
  .solar-avis__footer { padding: 0 20px; }
  .solar-avis__btn { width: 100%; text-align: center; }
}
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700;800&display=swap');

.spm-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #F5F5F0;
  font-family: 'DM Sans', sans-serif;
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px;
  gap: 48px;
}

/* GALERIE */
.spm-gallery { display: flex; gap: 12px; align-items: flex-start; }

.spm-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 80px;
  flex-shrink: 0;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: none;
}
.spm-thumbs::-webkit-scrollbar { display: none; }

.spm-thumb {
  width: 80px;
  height: 80px;
  border: 2px solid #e0dcd4;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.spm-thumb.active { border-color: #FF6B35; }
.spm-thumb:hover { border-color: #1A1A1A; }
.spm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.spm-main-img-wrap {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #eae6de;
  aspect-ratio: 1;
}
.spm-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* INFOS */
.spm-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spm-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FF6B35;
  margin-bottom: 10px;
}

.spm-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: #1A1A1A;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.spm-title--orange { color: #FF6B35; }

.spm-price {
  font-size: 32px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}

.spm-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.spm-stars { color: #FF6B35; font-size: 18px; letter-spacing: 2px; }
.spm-reviews { font-size: 13px; color: #8a8580; }

.spm-desc {
  font-size: 14px;
  color: #5a5750;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* OFFRE */
.spm-offer {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 2px solid #FF6B35;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
  background: #fff8f5;
}
.spm-offer-icon { font-size: 28px; flex-shrink: 0; }
.spm-offer-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 4px;
}
.spm-offer-text strong span { color: #FF6B35; }
.spm-offer-text p { font-size: 12px; color: #8a8580; margin: 0; }

/* COULEURS */
.spm-option-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.spm-colors { display: flex; gap: 10px; margin-bottom: 24px; }
.spm-color {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.spm-color.active { border-color: #FF6B35; box-shadow: 0 0 0 3px white, 0 0 0 5px #FF6B35; }
.spm-color:hover { transform: scale(1.1); }

/* BOUTONS */
.spm-btn-cart {
  width: 100%;
  padding: 18px;
  background: #FF6B35;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 12px;
  display: block;
}
.spm-btn-cart:hover { background: #e55a25; transform: translateY(-1px); }

.spm-btn-buy {
  width: 100%;
  padding: 18px;
  background: #1A1A1A;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  display: block;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}
.spm-btn-buy:hover { background: #333; transform: translateY(-1px); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .spm-wrap { grid-template-columns: 1fr; padding: 24px 20px; gap: 24px; }
  .spm-gallery { flex-direction: column; align-items: stretch; }
  .spm-main-img-wrap { aspect-ratio: 1; order: 1; }
  .spm-thumbs { flex-direction: row; width: 100%; max-height: none; overflow-x: auto; order: 2; gap: 8px; }
  .spm-thumb { width: 64px; height: 64px; flex-shrink: 0; }
}
.spt-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e0dcd4;
  border-bottom: 1px solid #e0dcd4;
  background: #F5F5F0;
  font-family: 'DM Sans', sans-serif;
}

.spt-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid #e0dcd4;
}
.spt-item:last-child { border-right: none; }

.spt-item svg {
  width: 28px;
  height: 28px;
  color: #1A1A1A;
  flex-shrink: 0;
}

.spt-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 3px;
}

.spt-item span {
  font-size: 11px;
  color: #8a8580;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .spt-bar { grid-template-columns: repeat(2, 1fr); }
  .spt-item:nth-child(2) { border-right: none; }
  .spt-item:nth-child(3) { border-right: 1px solid #e0dcd4; }
}

@media (max-width: 480px) {
  .spt-bar { grid-template-columns: 1fr; }
  .spt-item { border-right: none !important; border-bottom: 1px solid #e0dcd4; }
}
.spw-wrap {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 36px 48px;
  border-bottom: 1px solid #e0dcd4;
  background: #F5F5F0;
  font-family: 'DM Sans', sans-serif;
}

.spw-title {
  font-size: 14px;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.4;
  flex-shrink: 0;
  width: 180px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex: 1;
}

.spw-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid #e0dcd4;
  gap: 8px;
}
.spw-item:last-child { border-right: none; }

.spw-item svg {
  width: 30px;
  height: 30px;
  color: #1A1A1A;
}

.spw-item strong {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1A1A1A;
}

.spw-item p {
  font-size: 12px;
  color: #8a8580;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .spw-wrap { flex-direction: column; gap: 24px; padding: 32px 20px; }
  .spw-title { width: 100%; }
  .spw-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .spw-item { border-right: none; padding: 0 0 16px; border-bottom: 1px solid #e0dcd4; }
  .spw-item:nth-child(3), .spw-item:nth-child(4) { border-bottom: none; }
}