/** Shopify CDN: Minification failed

Line 59:62 Unterminated string token

**/
/* ============ HERO / PRODUIT EN VEDETTE ============ */
.pf-featured {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  transition: box-shadow 0.3s ease;
}
.pf-featured:hover {
  box-shadow: 0 15px 60px rgba(0,0,0,0.18);
}
/* Responsive & Apple-style image */
.pf-featured img {
  flex: 1 1 600px;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
  background: #f8f9fa;
}
.pf-featured img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
@media (max-width: 600px) {
  .pf-featured img {
    aspect-ratio: 1/1;
    min-height: 180px;
    max-height: 340px;
  }
}

/* Contenu texte */
.pf-info {
  flex: 1 1 500px;
  color: #111;
  font-family: 'SF Pro Text', 'Inter', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pf-info h2 {
  font-family: 'SF Pro Display', ' 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  color: #111;
  text-align: left;
}
.pf-info p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #3c3c43;
  max-width: 600px;
  margin-bottom: 40px;
  text-align: left;
}
/* Bouton d'action Apple premium */
.pf-info .pf-button-primary {
  align-self: flex-start;
  background-color: #2563eb;
  color: #fff;
  border-radius: 22px;
  padding: 14px 40px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.14s;
}
.pf-info .pf-button-primary:hover {
  background-color: #1e40af;
  box-shadow: 0 12px 36px rgba(30, 64, 175, 0.6);
  transform: translateY(-2px) scale(1.045);
}

/* ============ SECTION MULTILIGNE ============ */
.multirow-section {
  max-width: 1200px;
  margin: 64px auto;
  padding: 48px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.multirow-block {
  display: flex;
  align-items: center;
  gap: 48px;
  border-radius: 22px;
  background: #f8f9fa;
  padding: 48px 36px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transition: box-shadow 0.3s, transform 0.3s;
}
.multirow-block:nth-child(even) {
  flex-direction: row-reverse;
  background: #fff;
}
.multirow-block img {
  max-width: 420px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  transition: transform 0.4s, box-shadow 0.4s;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
  background: #f8f9fa;
}
.multirow-block img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.multirow-block .multirow-content {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #111;
  font-family: 'SF Pro Text', 'Inter', Arial, sans-serif;
}
.multirow-block .multirow-caption {
  font-size: 0.97rem;
  color: #2d2d2d;
  opacity: 0.78;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.multirow-block .multirow-title {
  font-family: 'SF Pro Display', 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  margin-bottom: 20px;
  color: #111;
  letter-spacing: -0.5px;
}
.multirow-block .multirow-text {
  font-size: 1.13rem;
  color: #3c3c43;
  line-height: 1.6;
  margin-bottom: 28px;
}
.multirow-block .multirow-btn {
  align-self: flex-start;
  background-color: #2563eb;
  color: #fff;
  border-radius: 22px;
  padding: 12px 36px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.16);
  border: none;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.14s;
}
.multirow-block .multirow-btn:hover {
  background-color: #1e40af;
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.22);
  transform: translateY(-2px) scale(1.045);
}

@media (max-width: 900px) {
  .multirow-block,
  .multirow-block:nth-child(even) {
    flex-direction: column !important;
    padding: 28px 12px;
    gap: 20px;
  }
  .multirow-section {
    padding: 16px 2vw;
    gap: 32px;
  }
  .multirow-block img {
    max-width: 100%;
  }
  .multirow-block .multirow-title {
    font-size: 1.35rem;
  }
  .multirow-block .multirow-text {
    font-size: 1rem;
  }
}

/* ============ TABLEAU TECH SPECS ============ */
.tech-specs-table {
  max-width: 760px;
  margin: 60px auto 70px auto;
  padding: 44px 28px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.09);
}
.tech-specs-title {
  font-family: 'SF Pro Display', 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 38px;
  color: #161616;
  letter-spacing: -0.5px;
}
.tech-specs-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.5rem;
}
.tech-specs-table th,
.tech-specs-table td {
  font-family: 'SF Pro Text', 'Inter', Arial, sans-serif;
  font-size: 1.07rem;
  padding: 14px 14px;
  background: rgba(247,249,252,0.97);
  border-radius: 10px;
  vertical-align: top;
  border: none !important;
  transition: background 0.23s, box-shadow 0.23s;
}
.tech-specs-table th {
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  width: 34%;
}
.tech-specs-table td {
  font-weight: 400;
  color: #34343c;
  text-align: left;
}
.tech-specs-table tr:hover th,
.tech-specs-table tr:hover td {
  background: #e7eefb;
  box-shadow: 0 2px 12px rgba(37,99,235,0.08);
}
@media (max-width: 600px) {
  .tech-specs-table {
    padding: 16px 4vw;
  }
  .tech-specs-title {
    font-size: 1.3rem;
    margin-bottom: 22px;
  }
  .tech-specs-table th,
  .tech-specs-table td {
    font-size: 0.97rem;
    padding: 10px 6px;
  }
}

/* ============ GARANTIE / SERVICE ============ */
.pf-guarantee {
  max-width: 780px;
  margin: 56px auto 0 auto;
  padding: 36px 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.pf-guarantee-item {
  flex: 1 1 210px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 190px;
  background: #f8f9fa;
  border-radius: 14px;
  padding: 18px 12px 18px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, background 0.2s;
}
.pf-guarantee-item:hover {
  background: #eef3fa;
  box-shadow: 0 8px 26px rgba(37,99,235,0.10);
}
.pf-guarantee-icon {
  font-size: 2.3rem;
  color: #2563eb;
  line-height: 1;
  margin-right: 6px;
  margin-top: 2px;
  background: #e7eefb;
  border-radius: 50%;
  padding: 10px;
  border: 1px solid #e1eaff;
  box-shadow: 0 2px 8px rgba(37,99,235,0.05);
}
.pf-guarantee-item strong {
  font-family: 'SF Pro Display', 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.13rem;
  color: #161616;
  letter-spacing: -0.2px;
}
.pf-guarantee-item p {
  font-size: 0.98rem;
  color: #5b5b6e;
  margin: 3px 0 0 0;
}
@media (max-width: 800px) {
  .pf-guarantee {
    flex-direction: column;
    gap: 18px;
    padding: 16px 6vw;
  }
  .pf-guarantee-item {
    min-width: 0;
    padding: 14px 6px 14px 12px;
  }
}

/* ============ HEADER NAV ============ */
header nav ul li {
  margin: 0 18px;
}
@media (max-width: 768px) {
  header nav ul {
    gap: 0 !important;
    flex-wrap: wrap;
  }
  header nav ul li {
    margin: 6px 8px;
  }
}

/* ============ FOOTER ============ */
footer {
  padding-top: 38px;
}
footer ul, footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}
footer li, footer .footer-links li {
  opacity: 0.85;
  font-size: 0.98rem;
  padding: 2px 4px;
}
@media (max-width: 600px) {
  footer ul, footer .footer-links {
    flex-direction: column;
    gap: 5px;
  }
}

/* ============ MICRO-INTERACTIONS CTA ============ */
button, .pf-button-primary, .multirow-btn, .multirow-block .multirow-btn {
  transition: background 0.22s, box-shadow 0.22s, transform 0.14s;
}
button:hover, .pf-button-primary:hover, .multirow-btn:hover, .multirow-block .multirow-btn:hover {
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.08);
}

/* ============ TYPOGRAPHIE APPLE GLOBALE ============ */
body, h1, h2, h3, h4, h5, h6, p, th, td, button, input, select, textarea {
  font-family: 'SF Pro Text', 'Inter', Arial, sans-serif;
  letter-spacing: -0.01em;
}
h1, .pf-info h2, .multirow-title, .tech-specs-title {
  font-family: 'SF Pro Display', 'Inter', Arial, sans-serif;
  letter-spacing: -0.5px;
}

/* ============ RESPONSIVE SUPPLÉMENTAIRE ============ */
@media (max-width: 600px) {
  .pf-featured, .multirow-section, .tech-specs-table, .pf-guarantee {
    border-radius: 12px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.11);
    padding: 10px 2vw;
  }
  .multirow-block, .pf-guarantee-item {
    border-radius: 10px;
    margin-bottom: 14px;
  }
}

/* ============ DIAPORAMA PRODUIT APPLE-STYLE OPTIMISÉ ============ */
.pf-diapo {
  max-width: 740px; /* Était 950px : plus compact, effet Apple */
  margin: 60px auto 0 auto;
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  align-items: flex-end;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  padding: 38px 26px; /* Un peu moins haut, plus Apple */
  position: relative;
}
.pf-diapo img {
  display: block;
  width: 310px;     /* Était 340px */
  max-width: 95vw;
  max-height: 390px; /* NEW: Limite la hauteur max desktop */
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.13);
  background: #f5f5f7;
  transition: box-shadow 0.3s, transform 0.3s;
  padding: 16px;      /* Ajoute un "marge blanche" intérieure comme chez Apple */
  object-fit: contain; /* Pour ne jamais cropper l’image */
}
.pf-diapo img:hover {
  box-shadow: 0 14px 48px rgba(0,0,0,0.16);
  transform: scale(1.035);
}
/* Responsive : allège et ne dépasse jamais */
@media (max-width: 1000px) {
  .pf-diapo {
    gap: 16px;
    padding: 18px 2vw;
    max-width: 97vw;
  }
  .pf-diapo img {
    width: 46vw;
    min-width: 130px;
    max-width: 230px;
    padding: 10px;
    max-height: 230px;
  }
}
@media (max-width: 700px) {
  .pf-diapo {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px 0 10px 0;
  }
  .pf-diapo img {
    width: 92vw;
    max-width: 99vw;
    min-width: 98px;
    padding: 8px;
    max-height: 165px;
  }
}
.product-description-seo {
  font-family: 'SF Pro Text', 'Inter', Arial, sans-serif;
  font-size: 1.08rem;
  color: #3c3c43;
  line-height: 1.6;
  text-align: center;
  max-width: 680px;
  margin: 36px auto 52px auto;
  padding: 0 16px;
  background: transparent;
  transition: color 0.3s ease;
}

.product-description-seo p {
  margin-bottom: 16px;
}

.product-description-seo p strong {
  font-weight: 600;
  color: #161616;
}









