/* =========================================================
   Levitation Magnetique - Store pages profondes
   Scope unique : levitatstore2_
   Fichier : /levipi/levitatstore2.css
========================================================= */

.levitatstore2_page {
  --levitatstore2-title: #5b5d63;
  --levitatstore2-text: #59606b;
  --levitatstore2-muted: #7a808a;
  --levitatstore2-accent: #c0934f;
  --levitatstore2-accent-dark: #75562b;
  --levitatstore2-panel: rgba(255,255,255,0.84);
  --levitatstore2-panel-soft: rgba(255,255,255,0.48);
  --levitatstore2-border: rgba(17,24,39,0.06);
  --levitatstore2-line: rgba(17,24,39,0.08);
  --levitatstore2-shadow: 0 14px 38px rgba(17,24,39,0.07);
  --levitatstore2-shadow-media: 0 18px 48px rgba(17,24,39,0.12);
  --levitatstore2-radius: 26px;
  --levitatstore2-radius-small: 18px;

  margin: 28px 0;
}

.levitatstore2_page *,
.levitatstore2_page *::before,
.levitatstore2_page *::after {
  box-sizing: border-box;
}

/* Blocs */
.levitatstore2_section {
  margin: 28px 0;
  padding: clamp(18px, 3vw, 30px);
  border-radius: var(--levitatstore2-radius);
  background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,0.92), rgba(255,255,255,0) 30%),
    linear-gradient(180deg, var(--levitatstore2-panel), var(--levitatstore2-panel-soft));
  border: 1px solid var(--levitatstore2-border);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    var(--levitatstore2-shadow);
}

/* Titres */
.levitatstore2_page h2,
.levitatstore2_page h3 {
  background: transparent !important;
  color: var(--levitatstore2-title) !important;
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.levitatstore2_page h2 {
  font-size: clamp(1.45rem, 1.1rem + 0.9vw, 2.1rem);
}

.levitatstore2_page h3 {
  font-size: clamp(1.18rem, 1rem + 0.45vw, 1.45rem);
}

.levitatstore2_page h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--levitatstore2-accent), rgba(192,147,79,0));
}

/* Textes */
.levitatstore2_page p,
.levitatstore2_page li {
  color: var(--levitatstore2-text);
  font-size: 1rem;
  line-height: 1.72;
}

.levitatstore2_page strong {
  color: #464b53;
}

/* Badge */
.levitatstore2_kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px !important;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(192,147,79,0.12);
  border: 1px solid rgba(192,147,79,0.24);
  color: var(--levitatstore2-accent-dark) !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Image / figure */
.levitatstore2_media {
  margin: 22px 0 24px;
}

.levitatstore2_media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--levitatstore2-shadow-media);
}

.levitatstore2_media figcaption {
  margin-top: 10px;
  color: var(--levitatstore2-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  font-style: italic;
}

/* Tableau */
.levitatstore2_table {
  width: 100%;
  margin-top: 20px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--levitatstore2-radius-small);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17,24,39,0.05);
}

.levitatstore2_table th,
.levitatstore2_table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--levitatstore2-line);
  text-align: left;
  vertical-align: top;
}

.levitatstore2_table th {
  color: var(--levitatstore2-title);
  font-weight: 800;
  background: rgba(192,147,79,0.12);
}

.levitatstore2_table td:first-child {
  font-weight: 800;
  color: var(--levitatstore2-title);
}

/* Listes */
.levitatstore2_checklist,
.levitatstore2_steps {
  padding-left: 22px;
}

.levitatstore2_checklist li,
.levitatstore2_steps li {
  margin-bottom: 8px;
}

/* FAQ */
.levitatstore2_faq-item {
  margin-top: 12px;
  border-radius: var(--levitatstore2-radius-small);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(17,24,39,0.07);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(17,24,39,0.04);
}

.levitatstore2_faq-item summary {
  position: relative;
  padding: 16px 52px 16px 18px;
  color: var(--levitatstore2-title);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.levitatstore2_faq-item summary::-webkit-details-marker {
  display: none;
}

.levitatstore2_faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(192,147,79,0.14);
  color: var(--levitatstore2-accent-dark);
  font-weight: 900;
}

.levitatstore2_faq-item[open] summary::after {
  content: "−";
}

.levitatstore2_faq-item p {
  margin: 0;
  padding: 0 18px 18px;
}

/* Maillage interne */
.levitatstore2_links a,
.levitatstore2_page a {
  color: var(--levitatstore2-accent-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Note affiliation / confiance */
.levitatstore2_note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(192,147,79,0.1);
  border: 1px solid rgba(192,147,79,0.22);
  color: var(--levitatstore2-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Variante page globe */
.levitatstore2_page--globe {
  --levitatstore2-accent: #c0934f;
  --levitatstore2-accent-dark: #75562b;
}

/* Variante page ampoule */
.levitatstore2_page--ampoule {
  --levitatstore2-accent: #f59e0b;
  --levitatstore2-accent-dark: #92400e;
}

/* Variante page plante */
.levitatstore2_page--plante {
  --levitatstore2-accent: #22c55e;
  --levitatstore2-accent-dark: #166534;
}

/* Variante page porte-bouteille */
.levitatstore2_page--portebouteille {
  --levitatstore2-accent: #8b5cf6;
  --levitatstore2-accent-dark: #5b21b6;
}

/* Variante page enceinte */
.levitatstore2_page--enceinte {
  --levitatstore2-accent: #06b6d4;
  --levitatstore2-accent-dark: #155e75;
}

/* Variante page cadre photo */
.levitatstore2_page--cadre {
  --levitatstore2-accent: #ec4899;
  --levitatstore2-accent-dark: #9d174d;
}

/* Variante page objets originaux */
.levitatstore2_page--objets {
  --levitatstore2-accent: #6366f1;
  --levitatstore2-accent-dark: #3730a3;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .levitatstore2_section {
    padding: 18px;
    border-radius: 20px;
  }

  .levitatstore2_table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .levitatstore2_table th,
  .levitatstore2_table td {
    padding: 12px;
    font-size: 0.94rem;
  }

  .levitatstore2_faq-item summary {
    padding: 15px 48px 15px 16px;
  }
}

/* =========================================================
   FAQ générique pages profondes levitatstore2
========================================================= */

.levitatstore2_page .levitatstore2_faq {
  position: relative;
}

.levitatstore2_page .levitatstore2_faq__item {
  position: relative;
  margin: 14px 0 0;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.68));
  border: 1px solid rgba(17,24,39,0.075);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 10px 28px rgba(17,24,39,0.055);
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.levitatstore2_page .levitatstore2_faq__item:hover {
  transform: translateY(-1px);
  border-color: rgba(192,147,79,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 14px 34px rgba(17,24,39,0.08);
}

.levitatstore2_page .levitatstore2_faq__item[open] {
  border-color: rgba(192,147,79,0.28);
  background:
    radial-gradient(circle at 0% 0%, rgba(192,147,79,0.11), rgba(192,147,79,0) 34%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.72));
}

.levitatstore2_page .levitatstore2_faq__item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 17px 62px 17px 20px;
  color: #565d67;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.levitatstore2_page .levitatstore2_faq__item summary::-webkit-details-marker {
  display: none;
}

.levitatstore2_page .levitatstore2_faq__item summary::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 62px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(192,147,79,0.22), rgba(192,147,79,0));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.levitatstore2_page .levitatstore2_faq__item[open] summary::before {
  opacity: 1;
}

.levitatstore2_page .levitatstore2_faq__item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.58)),
    rgba(192,147,79,0.13);
  border: 1px solid rgba(192,147,79,0.22);
  color: #75562b;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 6px 16px rgba(17,24,39,0.07);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.levitatstore2_page .levitatstore2_faq__item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  background:
    linear-gradient(180deg, rgba(192,147,79,0.22), rgba(192,147,79,0.1));
  color: #6d4d22;
}

.levitatstore2_page .levitatstore2_faq__item p {
  margin: 0;
  padding: 16px 20px 20px;
  color: #59606b;
  font-size: 1rem;
  line-height: 1.72;
}

.levitatstore2_page .levitatstore2_faq__item[open] p {
  animation: levitatstore2FaqReveal 0.24s ease both;
}

@keyframes levitatstore2FaqReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .levitatstore2_page .levitatstore2_faq__item {
    border-radius: 17px;
  }

  .levitatstore2_page .levitatstore2_faq__item summary {
    min-height: 56px;
    padding: 15px 54px 15px 16px;
    font-size: 0.98rem;
  }

  .levitatstore2_page .levitatstore2_faq__item summary::before {
    left: 16px;
    right: 54px;
  }

  .levitatstore2_page .levitatstore2_faq__item summary::after {
    right: 14px;
    width: 30px;
    height: 30px;
  }

  .levitatstore2_page .levitatstore2_faq__item p {
    padding: 14px 16px 17px;
    font-size: 0.96rem;
    line-height: 1.62;
  }
}