/** Shopify CDN: Minification failed

Line 1730:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:cart (INDEX:0) */
/* ============== TOKENS ============== */
  .ht-cart {
    --ht-bg:     var(--color-bg-block);
    --ht-white:  var(--color-bg-page);
    --ht-navy:   var(--color-text);
    --ht-orange: var(--color-cta);
    --ht-orange-hover: var(--color-cta-hover);
    --ht-green:  var(--color-brand);
    --ht-border: rgba(59, 130, 246, 0.15);
    --ht-font:   var(--font-body);
    --ht-radius: 12px;
  }

  /* ============== SECTION ============== */
  .ht-cart {
    position: relative;
    padding: 60px 20px 80px;
    background: var(--ht-bg);
    min-height: 100vh;
    font-family: var(--ht-font);
    overflow: hidden;
  }

  .ht-cart__container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* ============== HEADER ============== */
  .ht-cart__header {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ht-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brand);
    background: rgba(59, 130, 246, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    width: fit-content;
    border: 1px solid rgba(59, 130, 246, 0.2);
  }

  .ht-cart__title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ht-navy);
    letter-spacing: -0.02em;
  }

  /* ============== EMPTY STATE ============== */
  .ht-cart__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 52px 32px;
  }

  .ht-cart__empty-icon { font-size: 3rem; }

  .ht-cart__empty-title {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ht-navy);
  }

  .ht-cart__empty-sub {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 340px;
    line-height: 1.5;
  }

  /* ============== LAYOUT ============== */
  .ht-cart__layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* ============== ITEM LIST ============== */
  .ht-cart__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ht-cart__glass {
    background: var(--ht-white);
    border: 1px solid var(--ht-border);
    border-radius: var(--ht-radius);
    box-shadow: none;
  }

  .ht-cart__item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px;
    transition: box-shadow 0.3s ease;
  }
  .ht-cart__item:hover {
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
  }

  .ht-cart__item-img-wrap {
    width: 72px; height: 72px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-bg-block);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ht-cart__item-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  .ht-cart__item-img-placeholder { font-size: 2rem; }

  .ht-cart__item-title {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--ht-navy);
    display: block;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .ht-cart__item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .ht-qty {
    display: flex;
    align-items: center;
    background: var(--color-bg-block);
    border: 1px solid var(--ht-border);
    border-radius: 30px;
    overflow: hidden;
  }

  .ht-qty__btn {
    width: 32px; height: 32px;
    background: transparent;
    border: none;
    color: var(--ht-navy);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ht-qty__btn:hover {
    background: rgba(34, 211, 238, 0.1);
    color: var(--color-cta);
  }

  .ht-qty__input {
    width: 36px;
    background: transparent;
    border: none;
    color: var(--ht-navy);
    font-family: var(--ht-font);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    -moz-appearance: textfield;
  }
  .ht-qty__input::-webkit-inner-spin-button,
  .ht-qty__input::-webkit-outer-spin-button { -webkit-appearance: none; }
  .ht-qty__input:focus { outline: none; }

  .ht-cart__item-remove {
    width: 30px; height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
  }
  .ht-cart__item-remove:hover {
    color: #E53E3E;
    background: rgba(229, 62, 62, 0.1);
  }

  .ht-cart__item-price {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--ht-navy);
    white-space: nowrap;
  }

  /* ============== SUMMARY CARD ============== */
  .ht-cart__summary-card {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
  }

  .ht-cart__summary-accent {
    position: absolute;
    top: 0;
    left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-brand), var(--color-cta));
  }

  .ht-cart__summary-title {
    font-size: 1.1rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ht-navy);
  }

  .ht-cart__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--color-text-muted);
  }

  .ht-cart__free-shipping {
    color: var(--color-cta);
    font-weight: 700;
    font-size: 0.9rem;
  }

  .ht-cart__summary-divider {
    height: 1px;
    background: var(--ht-border);
    margin: 4px 0;
  }

  .ht-cart__summary-row--total {
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--ht-navy);
  }

  /* ============== BUTTONS ============== */
  .ht-btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-brand), var(--color-cta));
    color: #0A0E17;
    font-family: var(--ht-font);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 18px 32px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
  }

  .ht-btn--primary:hover {
    background: linear-gradient(135deg, var(--color-cta), var(--color-brand));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.25);
  }

  .ht-btn--full { width: 100%; }

  /* ============== GUARANTEES ============== */
  .ht-cart__guarantees {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
  }

  .ht-cart__guarantee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
  }

  .ht-cart__guarantee-icon { font-size: 1rem; flex-shrink: 0; }

  /* ============== ANIMATIONS ============== */
  @keyframes ht-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .ht-cart__header   { animation: ht-fade-in 0.6s cubic-bezier(0.16,1,0.3,1) both; }
  .ht-cart__items    { animation: ht-fade-in 0.7s 0.1s cubic-bezier(0.16,1,0.3,1) both; }
  .ht-cart__summary  { animation: ht-fade-in 0.7s 0.22s cubic-bezier(0.16,1,0.3,1) both; }
  .ht-cart__empty    { animation: ht-fade-in 0.7s 0.1s cubic-bezier(0.16,1,0.3,1) both; }

  /* ============== DESKTOP ============== */
  @media (min-width: 768px) {
    .ht-cart { padding: 80px 40px 100px; }
    .ht-cart__layout {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 32px;
      align-items: start;
    }
    .ht-cart__summary {
      position: sticky;
      top: 24px;
    }
  }

  /* ============== MOBILE ============== */
  @media (max-width: 480px) {
    .ht-cart { padding: 48px 16px 64px; }
    .ht-cart__item { grid-template-columns: 60px 1fr; }
    .ht-cart__item-price { grid-column: 2; justify-self: end; }
    .ht-cart__item-img-wrap { width: 60px; height: 60px; }
    .ht-cart__summary-card { padding: 24px 18px; }
  }
/* END_SECTION:cart */

/* START_SECTION:header (INDEX:1) */
/* =========================================
     HT HEADER — DARK THEME
  ========================================= */
  .ht-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: 'Inter', sans-serif;
  }
  .ht-header--scrolled {
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  }

  .ht-header__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .ht-header__left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .ht-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  /* ===== LOGO ===== */
  .ht-header__logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #F1F5F9;
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
  }



  /* ===== ICONS ===== */
  .ht-header__icons {
    display: none;
  }

  .ht-header__icon-btn {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #F1F5F9;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
    background: none;
    border: none;
  }
  .ht-header__icon-btn:hover { background: rgba(255, 255, 255, 0.05); }

  .ht-header__cart { position: relative; }
  .ht-header__cart-badge {
    position: absolute;
    top: 4px; right: 4px;
    width: 16px; height: 16px;
    background: #3B82F6;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== BURGER ===== */
  .ht-header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: background 0.2s;
  }
  .ht-header__burger:hover { background: rgba(255, 255, 255, 0.05); }
  .ht-header__burger span {
    display: block;
    height: 2px;
    background: #F1F5F9;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .ht-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .ht-header__burger.is-open span:nth-child(2) { opacity: 0; }
  .ht-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ===== MOBILE NAV ===== */
  .ht-mobile-nav {
    display: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #0a0c0f;
  }
  .ht-mobile-nav.is-open { max-height: 400px; }

  .ht-mobile-nav__inner {
    padding: 16px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .ht-mobile-nav__link {
    display: block;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #F1F5F9;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.15s;
  }
  .ht-mobile-nav__link:hover { background: rgba(255, 255, 255, 0.05); color: #3B82F6; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .ht-mobile-nav { display: block; }
    .ht-header__inner { padding: 0 16px; }
  }
/* END_SECTION:header */

/* START_SECTION:main-legal (INDEX:8) */
.pb-legal {
    background-color: var(--color-bg-page, #111827);
    color: var(--color-text, #F1F5F9);
    padding: 80px 24px;
    font-family: var(--font-body, 'Inter', sans-serif);
    line-height: 1.6;
  }
  .pb-legal__inner {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 48px;
  }
  .pb-legal__title {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 32px;
    letter-spacing: -0.03em;
    text-align: center;
  }
  .pb-legal__content h2, .pb-legal__content h3, .pb-legal__content h4 {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    color: var(--color-text, #F1F5F9);
    margin: 32px 0 16px;
    font-weight: 600;
  }
  .pb-legal__content h2 { font-size: 1.4rem; }
  .pb-legal__content h3 { font-size: 1.1rem; }
  
  .pb-legal__content p {
    color: var(--color-text-muted, #94A3B8);
    margin-bottom: 24px;
  }
  
  .pb-legal__content ul, .pb-legal__content ol {
    color: var(--color-text-muted, #94A3B8);
    margin-bottom: 24px;
    padding-left: 24px;
  }
  
  .pb-legal__content li {
    margin-bottom: 8px;
  }
  
  .pb-legal__content a {
    color: var(--color-cta, #3B82F6);
    text-decoration: none;
  }
  .pb-legal__content a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .pb-legal { padding: 40px 16px; }
    .pb-legal__inner { padding: 24px; }
    .pb-legal__title { font-size: 1.5rem; margin-bottom: 24px; }
  }
/* END_SECTION:main-legal */

/* START_SECTION:pb-benefits (INDEX:9) */
.pb-benefits {
  background: var(--color-bg-block);
}

.pb-benefits__inner {
  max-width: var(--pb-max);
  margin: 0 auto;
  padding: 0 var(--pb-pad);
}

.pb-benefits .pb-section-title {
  text-align: center;
  margin-bottom: 32px;
}

.pb-benefits__media {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pb-benefits__video,
.pb-benefits__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.pb-benefits__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pb-benefits__card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
}

.pb-benefits.pb-animate-in .pb-benefits__card {
  opacity: 1;
  transform: translateY(0);
}

.pb-benefits.pb-animate-in .pb-benefits__card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.pb-benefits__card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.pb-benefits__number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-cta);
  background: rgba(59, 130, 246, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
}

.pb-benefits__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
}

.pb-benefits__body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 768px) {
  .pb-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pb-benefits__card {
    padding: 20px;
  }
  .pb-benefits__number {
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 1px;
  }
  .pb-benefits__title {
    font-size: 15px;
    line-height: 1.3;
  }
  .pb-benefits__body {
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (min-width: 1024px) {
  .pb-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pb-benefits__inner {
    max-width: 1100px;
  }
}
/* END_SECTION:pb-benefits */

/* START_SECTION:pb-compare (INDEX:10) */
.pb-compare {
  background: var(--color-bg-block);
}

.pb-compare__inner {
  max-width: var(--pb-max);
  margin: 0 auto;
  padding: 0 var(--pb-pad);
}

.pb-compare__cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 calc(-1 * var(--pb-pad));
  padding: 0 var(--pb-pad) 16px;
}
.pb-compare__cards::-webkit-scrollbar { display: none; }

@media (min-width: 1024px) {
  .pb-compare__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}

.pb-compare__card {
  position: relative;
  flex: 0 0 85vw;
  max-width: 320px;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .pb-compare__card {
    max-width: none;
    padding: 24px;
  }
}

.pb-compare__card--ours {
  background: rgba(34, 211, 238, 0.03);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-top: 4px solid var(--color-cta);
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.15);
  padding: 24px 16px;
  z-index: 2;
}

@media (min-width: 1024px) {
  .pb-compare__card--ours {
    padding: 32px 24px;
    transform: scale(1.04);
  }
}

.pb-compare__card-head {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.pb-compare__card-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0;
}

.pb-compare__card--ours .pb-compare__card-title {
  color: var(--color-cta);
  font-weight: 700;
  font-size: 17px;
}

.pb-compare__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pb-compare__feature {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding-bottom: 8px;
}

.pb-compare__feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pb-compare__crit {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.pb-compare__val {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
  text-align: right;
}

.pb-compare__val--highlight {
  color: var(--color-text);
  font-weight: 600;
}

.pb-compare__bottom-text {
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 32px auto 0;
  line-height: 1.6;
}
.pb-compare__bottom-text p {
  margin: 0;
}

@media (min-width: 768px) {
  .pb-compare__inner { max-width: 1100px; }
  .pb-compare__crit { font-size: 13px; }
  .pb-compare__val { font-size: 14px; }
}
/* END_SECTION:pb-compare */

/* START_SECTION:pb-contact (INDEX:12) */
.pb-contact {
    background: var(--color-bg-page);
  }

  .pb-contact__inner {
    max-width: var(--pb-max);
    margin: 0 auto;
    padding: 0 var(--pb-pad);
  }

  .pb-contact__header {
    text-align: center;
    margin-bottom: 32px;
  }

  .pb-contact__header .pb-badge {
    margin-bottom: 16px;
  }

  .pb-contact__subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: -16px auto 0;
    max-width: 400px;
  }

  .pb-contact__form-wrap {
    background: var(--color-bg-block);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid rgba(255,255,255,0.05);
  }

  .pb-contact__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }

  @media (min-width: 600px) {
    .pb-contact__fields {
      flex-direction: row;
    }
    .pb-contact__fields .pb-field {
      flex: 1;
    }
  }

  .pb-field {
    margin-bottom: 16px;
  }
  
  .pb-field:last-of-type {
    margin-bottom: 24px;
  }

  .pb-field__label {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 8px;
  }

  .pb-field__input {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    transition: all 0.2s;
    box-sizing: border-box;
  }

  .pb-field__input:focus {
    outline: none;
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  }

  .pb-field__input::placeholder {
    color: rgba(255,255,255,0.2);
  }

  .pb-field__textarea {
    resize: vertical;
    min-height: 120px;
  }

  .pb-contact__submit {
    width: 100%;
    margin-bottom: 0;
  }

  /* Status messages */
  .pb-form-status {
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
  }
  .pb-form-status p {
    margin: 0;
  }

  .pb-form-status--success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10B981;
  }

  .pb-form-status--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #EF4444;
  }
/* END_SECTION:pb-contact */

/* START_SECTION:pb-demo (INDEX:13) */
.pb-ba {
  background: var(--color-bg-page);
}

.pb-ba__inner {
  max-width: var(--pb-max);
  margin: 0 auto;
  padding: 0 var(--pb-pad);
}

.pb-ba__videos {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pb-ba__video-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pb-ba__video-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.15);
  box-shadow: var(--pb-shadow-glow);
}

.pb-ba__video,
.pb-ba__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.pb-ba__ph {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-block);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 14px;
}

.pb-ba__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-cta);
  text-align: center;
  padding: 8px 16px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  align-self: center;
}

@media (min-width: 768px) {
  .pb-ba__inner { max-width: 900px; }
  .pb-ba__videos {
    flex-direction: row;
    gap: 32px;
  }
  .pb-ba__video-block { flex: 1; }
}
/* END_SECTION:pb-demo */

/* START_SECTION:pb-enemy (INDEX:14) */
.pb-enemy {
  background: var(--color-bg-page);
}

.pb-enemy__inner {
  max-width: var(--pb-max);
  margin: 0 auto;
  padding: 0 var(--pb-pad);
}

.pb-enemy__subtitle {
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted);
  margin-top: -16px;
  margin-bottom: 24px;
}

.pb-enemy__media {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 32px;
  border-radius: 0;
  overflow: hidden;
}

.pb-enemy__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  height: auto;
  display: block;
}

.pb-enemy__accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pb-enemy__item {
  background: var(--color-bg-block);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 0;
  overflow: hidden;
}

.pb-enemy__item:first-child {
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.pb-enemy__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.pb-enemy__header:hover {
  background: rgba(59, 130, 246, 0.05);
}

.pb-enemy__num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-brand);
  opacity: 0.7;
  font-weight: 700;
  width: 28px;
}

.pb-enemy__item-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  flex: 1;
}

.pb-enemy__chevron {
  color: var(--color-brand);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pb-enemy__header[aria-expanded="true"] .pb-enemy__chevron {
  transform: rotate(180deg);
}

.pb-enemy__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.28s ease,
    transform  0.28s ease;
}

.pb-enemy__content--open {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
}

.pb-enemy__content-inner {
  padding: 16px 20px 20px 52px;
}

.pb-enemy__item-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.pb-enemy__transition {
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-brand);
  margin: 0;
}

@media (min-width: 768px) {
  .pb-enemy__inner { max-width: 800px; }
  .pb-enemy__media {
    width: 100%;
    margin-left: 0;
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* END_SECTION:pb-enemy */

/* START_SECTION:pb-faq (INDEX:15) */
.pb-faq {
  background: var(--color-bg-block);
}

.pb-faq__inner {
  max-width: var(--pb-max);
  margin: 0 auto;
  padding: 0 var(--pb-pad);
}

.pb-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.pb-faq__item {
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.pb-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.pb-faq__q-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  flex: 1;
}

.pb-faq__chevron {
  color: var(--color-brand);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.pb-faq__q[aria-expanded="true"] .pb-faq__chevron {
  transform: rotate(180deg);
}

.pb-faq__a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.28s ease;
}

.pb-faq__a--open {
  max-height: 500px;
  opacity: 1;
}

.pb-faq__a-inner {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-bottom: 20px;
}

.pb-faq__a-inner p { margin: 0; }
.pb-faq__a-inner p + p { margin-top: 10px; }

@media (min-width: 768px) {
  .pb-faq__inner { max-width: 700px; }
  .pb-faq__q-text { font-size: 16px; }
  .pb-faq__a-inner { font-size: 15px; }
}
/* END_SECTION:pb-faq */

/* START_SECTION:pb-final (INDEX:16) */
.pb-final {
  background: var(--color-bg-page);
  position: relative;
  overflow: hidden;
}

.pb-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.pb-final__inner {
  max-width: var(--pb-max);
  margin: 0 auto;
  padding: 0 var(--pb-pad);
  position: relative;
  z-index: 1;
}

.pb-final__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .pb-final__title {
    font-size: 20px;
    line-height: 1.3;
  }
}

.pb-final__cols {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.pb-final__gallery { width: 100%; }

.pb-final__carousel {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--pb-shadow-glow);
  scrollbar-width: none;
  background: var(--color-bg-page);
}
.pb-final__carousel::-webkit-scrollbar { display: none; }
.pb-final__track { display: flex; }
.pb-final__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}
.pb-final__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  background: var(--color-bg-page);
}

.pb-final__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}
.pb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  display: inline-block;
  transition: background 150ms ease;
}
.pb-dot--on { background: var(--color-brand); }

.pb-final__text {
  width: 100%;
}

@media (min-width: 768px) {
  .pb-final__inner { max-width: 900px; }
  .pb-final__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
  }
}
/* END_SECTION:pb-final */

/* START_SECTION:pb-footer (INDEX:17) */
.pb-footer {
    background: #1C1F2A;
    font-family: 'Inter', sans-serif;
    color: #94A3B8;
    padding: 40px 24px 0; /* Padding réduit car la vague fait déjà 100px */
  }

  /* --- WAVES CSS --- */
  .footer-waves {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: var(--color-bg-page);
    margin-bottom: -2px; /* Empêche le petit trait blanc de sub-pixel */
  }

  .waves {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    min-width: 1000px;
  }

  .wave-layer use {
    animation: waveMotion 20s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  }

  .wave-layer use:nth-child(1) {
    animation-duration: 22s;
    animation-delay: -2s;
  }

  .wave-layer use:nth-child(2) {
    animation-duration: 16s;
    animation-delay: -4s;
  }

  .wave-layer use:nth-child(3) {
    animation-duration: 12s;
    animation-delay: -6s;
  }

  .wave-layer use:nth-child(4) {
    animation-duration: 8s;
    animation-delay: -1s;
  }

  @keyframes waveMotion {
    0% { transform: translate3d(-90px, 0, 0); }
    100% { transform: translate3d(85px, 0, 0); }
  }
  /* --- END WAVES CSS --- */

  .pb-footer__inner {
    max-width: 1140px;
    margin: 0 auto;
  }

  /* ===== TOP ===== */
  .pb-footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  /* ===== BRAND ===== */
  .pb-footer__logo {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #F1F5F9;
    text-decoration: none;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }

  .pb-footer__logo-img {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .pb-footer__tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94A3B8;
    margin: 0 auto;
    max-width: 400px;
  }

  /* ===== COLS ===== */
  .pb-footer__cols {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .pb-footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .pb-footer__col-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F1F5F9;
    margin: 0 0 8px;
  }

  .pb-footer__col-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
  }
  .pb-footer__col-link:hover { color: #3B82F6; }

  /* ===== BOTTOM ===== */
  .pb-footer__bottom {
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .pb-footer__copyright {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.7);
    margin: 0;
    text-align: center;
  }

  .pb-footer__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .pb-footer__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #F1F5F9;
  }

  .pb-footer__trust-item svg {
    color: #3B82F6;
  }

  /* ===== MOBILE ===== */
  @media (max-width: 768px) {
    .pb-footer { padding: 60px 20px 0; }
    .pb-footer__top { gap: 40px; }
    .pb-footer__trust { flex-direction: column; gap: 12px; align-items: center; }
  }
/* END_SECTION:pb-footer */

/* START_SECTION:pb-guarantee (INDEX:18) */
.pb-guarantee {
  background: var(--color-bg-page);
}

.pb-guarantee__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--pb-pad);
}

.pb-guarantee__card {
  background: var(--color-bg-block);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pb-guarantee__card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: rgba(34, 211, 238, 0.08);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.pb-guarantee__icon-col, .pb-guarantee__content {
  position: relative;
  z-index: 1;
}

.pb-guarantee__icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pb-guarantee__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cta);
}

.pb-guarantee__badge-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-cta);
}

.pb-guarantee__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 16px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .pb-guarantee__title {
    font-size: 20px;
  }
}

.pb-guarantee__body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.pb-guarantee__note {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .pb-guarantee__card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 48px;
    gap: 40px;
  }
  .pb-guarantee__card::before {
    left: 0; top: 50%;
    transform: translateY(-50%);
  }
  .pb-guarantee__icon-col {
    flex-shrink: 0;
    width: 140px;
  }
}
/* END_SECTION:pb-guarantee */

/* START_SECTION:pb-hero (INDEX:19) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ─── VARIABLES GLOBALES SMARTGLASSES (Tech Noir & Électrique) ─── */
:root {
  --color-bg-page:       #111318;   /* Graphite nuit — fond page */
  --color-bg-block:      #1C1F2A;   /* Anthracite — blocs alternés */
  --color-brand:         #3B82F6;   /* Bleu électrique — accents, icônes */
  --color-cta:           #22D3EE;   /* Cyan vif — boutons CTA */
  --color-cta-hover:     #06B6D4;   /* Cyan foncé — hover boutons */
  --color-text:          #F1F5F9;   /* Blanc doux — tous les textes */
  --color-text-muted:    #94A3B8;   /* Gris tech — textes secondaires */

  /* Typographie */
  --font-display:        'Space Grotesk', system-ui, sans-serif;
  --font-body:           'Inter', system-ui, sans-serif;

  /* Rayons */
  --radius-sm:           4px;
  --radius-md:           8px;
  --radius-lg:           12px;
  --radius-circle:       50%;

  /* Espacements partagés */
  --pb-shadow:           0 4px 24px rgba(34, 211, 238, 0.08);
  --pb-shadow-glow:      0 0 40px rgba(59, 130, 246, 0.15);
  --pb-max:              480px;
  --pb-pad:              20px;
}

/* ─── HARMONISATION GLOBALE DES MARGES ─── */
[class$="__inner"] {
  padding-left: var(--pb-pad) !important;
  padding-right: var(--pb-pad) !important;
  box-sizing: border-box;
}

/* ─── COMPOSANTS PARTAGÉS ─── */
.pb-btn-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--color-brand), var(--color-cta));
  color: #0A0E17;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 150ms ease, transform 80ms ease;
  margin-bottom: 12px;
  box-sizing: border-box;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.pb-btn-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: 0.6s;
}
.pb-btn-cta:hover::after { left: 150%; }
.pb-btn-cta:hover {
  background: linear-gradient(135deg, var(--color-cta), var(--color-brand));
  color: #0A0E17;
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.3);
}
.pb-btn-cta:active {
  transform: scale(0.98);
}


.pb-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}
.pb-price-compare {
  font-family: var(--font-body);
  font-size: 16px;
  text-decoration: line-through;
  color: var(--color-text-muted);
}
.pb-price-current {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-cta);
}


.pb-section-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  text-align: center;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .pb-section-title {
    font-size: 20px;
    line-height: 1.3;
  }
}

.pb-inner {
  max-width: var(--pb-max);
  margin: 0 auto;
}

.pb-micro {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.5;
  margin-top: 0;
}

/* ─── CENTRAGE MOBILE GLOBAL ─── */
@media (max-width: 767px) {
  .pb-hero__sub,
  .pb-hero__h1,
  .pb-pain__item-bold,
  .pb-pain__item-body,
  .pb-enemy__item-name,
  .pb-enemy__item-desc,
  .pb-enemy__transition,
  .pb-mech__step-title,
  .pb-mech__step-body,
  .pb-guarantee__body,
  .pb-guarantee__signature,
  .pb-final__subtitle,
  .pb-revlong__body {
    text-align: center;
  }
}

/* ─── HERO ─── */
.pb-hero {
  background: var(--color-bg-page);
  font-family: var(--font-body);
}

.pb-hero__inner {
  max-width: var(--pb-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.pb-hero__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 var(--pb-pad);
}

.pb-hero__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  align-items: center;
}

.pb-hero__media {
  width: 100%;
  overflow: hidden;
  box-shadow: var(--pb-shadow-glow);
}

/* ─── MOBILE: pleine largeur ─── */
@media (max-width: 767px) {
  .pb-hero__media {
    margin-left: calc(-1 * var(--pb-pad));
    margin-right: calc(-1 * var(--pb-pad));
    width: calc(100% + 2 * var(--pb-pad));
    box-shadow: none;
    overflow: hidden;
    position: relative;
  }
  
  .pb-hero__media::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
  }

  .pb-hero__headline {
    position: absolute;
    top: var(--title-top, 5%);
    left: 0;
    width: 100%;
    padding: 0 var(--pb-pad);
    z-index: 10;
  }

  .pb-hero__video,
  .pb-hero__img {
    aspect-ratio: var(--hero-ratio, 4/5);
    width: 100%;
    display: block;
  }
}

.pb-hero__video,
.pb-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: var(--hero-ratio, 4/5);
}

.pb-hero__img-ph {
  background: #1C1F2A;
  padding: 60px 20px;
  text-align: center;
  color: #94A3B8;
  font-size: 0.9rem;
}

.pb-hero__h1 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
@media (max-width: 767px) {
  .pb-hero__h1 {
    font-size: 20px;
    line-height: 1.3;
  }
}

.pb-hero__sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .pb-hero__sub {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .pb-hero__inner {
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 52px;
    row-gap: 0;
    align-items: start;
  }
  .pb-hero__headline { grid-column: 1; grid-row: 1; }
  .pb-hero__media { grid-column: 2; grid-row: 1 / 3; margin-top: 10px; }
  .pb-hero__body { grid-column: 1; grid-row: 2; }
  .pb-hero__h1, .pb-hero__sub { text-align: left; }
  .pb-trust-row { justify-content: flex-start; }
  .pb-hero .pb-price-wrap { justify-content: flex-start; }
  .pb-hero__video, .pb-hero__img { aspect-ratio: var(--hero-ratio, 4/5); height: auto; }
}

/* ─── ANIMATION AU CHARGEMENT ─── */
@keyframes pbHeroSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.pb-hero__headline {
  opacity: 0;
  animation: pbHeroSlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.8s;
}

.pb-hero__body {
  opacity: 0;
  animation: pbHeroSlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 1.1s;
}
/* END_SECTION:pb-hero */

/* START_SECTION:pb-pain (INDEX:20) */
.pb-pain {
  overflow: hidden;
  background: var(--color-bg-block);
}

.pb-pain__header {
  max-width: var(--pb-max);
  margin: 0 auto;
  padding: 0 var(--pb-pad);
}

.pb-pain__scroll {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 0 20px;
}
.pb-pain__scroll::-webkit-scrollbar { display: none; }

.pb-pain__track {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: max-content;
  padding: 0 var(--pb-pad);
}

.pb-pain__slide {
  width: 85vw;
  max-width: 340px;
  scroll-snap-align: center;
  display: flex;
}

.pb-pain__item {
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--color-bg-page);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.05);
}

.pb-pain__quote-mark {
  font-size: 3rem;
  color: var(--color-brand);
  line-height: 1;
  font-family: Georgia, serif;
  margin-top: -8px;
  opacity: 0.5;
}

.pb-pain__text-content {
  flex: 1;
}

.pb-pain__item-bold {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.pb-pain__item-body {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.pb-pain__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.pb-pain-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-text-muted);
  opacity: 0.3;
  display: inline-block;
  transition: all 0.2s;
}

.pb-pain-dot--on {
  background: var(--color-brand);
  opacity: 1;
}

@media (min-width: 768px) {
  .pb-pain__header { max-width: 680px; }
  .pb-pain__scroll {
    width: 100%;
    margin-left: 0;
  }
  .pb-pain__track {
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
    width: auto;
  }
  .pb-pain__slide {
    width: calc(50% - 8px);
    max-width: none;
  }
  .pb-pain__dots { display: none; }
}
/* END_SECTION:pb-pain */

/* START_SECTION:pb-product (INDEX:21) */
.pb-product {
  background: var(--color-bg-block);
}

.pb-product__inner {
  max-width: var(--pb-max);
  margin: 0 auto;
  padding: 0 var(--pb-pad);
}

.pb-product__transition {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .pb-product__transition {
    font-size: 20px;
    line-height: 1.3;
  }
}

.pb-product__cols {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pb-product__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin: 0 0 8px;
  text-align: center;
}

.pb-product__brand {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 6px;
  line-height: 1.25;
  text-align: center;
}
@media (max-width: 767px) {
  .pb-product__brand { font-size: 22px; }
}

.pb-product__tagline {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-cta);
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.5;
  text-align: center;
}

.pb-product__para {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 20px;
  text-align: center;
}

/* Carousel */
.pb-product__gallery { width: 100%; }

.pb-product__carousel {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--pb-shadow-glow);
  scrollbar-width: none;
  background: var(--color-bg-page);
}

.pb-product__carousel::-webkit-scrollbar { display: none; }

.pb-product__track { display: flex; }

.pb-product__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}

.pb-product__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  background: var(--color-bg-page);
}

.pb-product__media-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pb-product__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb-product__video iframe {
  width: 100%;
  height: 100%;
}

.pb-product__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--pb-shadow);
}

.pb-product__img--single {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  background: var(--color-bg-page);
}

.pb-product__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}

.pb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  display: inline-block;
  transition: background 150ms ease;
}

.pb-dot--on { background: var(--color-brand); }

@media (min-width: 768px) {
  .pb-product__inner { max-width: 900px; }
  .pb-product__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
  }
  .pb-product__label,
  .pb-product__brand,
  .pb-product__tagline,
  .pb-product__para { text-align: left; }
  .pb-product .pb-price-wrap { justify-content: flex-start; }
}
/* END_SECTION:pb-product */

/* START_SECTION:pb-review-long (INDEX:22) */
.pb-revlong {
  background: var(--color-bg-page);
}

.pb-revlong__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--pb-pad);
}

.pb-revlong__card {
  width: 100%;
  background: var(--color-bg-block);
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pb-revlong__img-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.pb-revlong__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pb-revlong__content {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pb-revlong__stars {
  color: var(--color-cta);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.pb-revlong__name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 4px;
}

.pb-revlong__dog {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-brand);
  margin: 0 0 20px;
}

.pb-revlong__body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  text-align: center;
}

@media (min-width: 768px) {
  .pb-revlong__inner { max-width: 900px; padding: 0 var(--pb-pad); }
  .pb-revlong__card {
    flex-direction: row;
    align-items: stretch;
  }
  .pb-revlong__img-wrap {
    width: 45%;
    max-height: none;
  }
  .pb-revlong__content {
    width: 55%;
    padding: 48px;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
  }
  .pb-revlong__body { text-align: left; }
}
/* END_SECTION:pb-review-long */

/* START_SECTION:pb-reviews-carousel (INDEX:23) */
.pb-carousel {
  overflow: hidden;
  background: var(--color-bg-page);
}

.pb-carousel__header {
  max-width: var(--pb-max);
  margin: 0 auto;
  padding: 0 var(--pb-pad);
}

.pb-carousel__subtitle {
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted);
  margin-top: -16px;
  margin-bottom: 24px;
}

.pb-carousel__scroll {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 20px 0;
}
.pb-carousel__scroll::-webkit-scrollbar { display: none; }

.pb-carousel__track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 var(--pb-pad);
}

.pb-carousel__slide {
  width: 85vw;
  max-width: 360px;
  scroll-snap-align: center;
  display: flex;
}

.pb-carousel__card {
  width: 100%;
  background: var(--color-bg-block);
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pb-carousel__img-wrap {
  width: 100%;
  height: 220px;
}

.pb-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pb-carousel__content {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.pb-carousel__stars {
  color: var(--color-cta);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.pb-carousel__name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 4px;
}

.pb-carousel__dog {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin: 0 0 12px;
}

.pb-carousel__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  font-style: italic;
}

.pb-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.pb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  display: inline-block;
  transition: all 0.2s;
}

.pb-dot--on {
  background: var(--color-brand);
  opacity: 1;
}

.pb-carousel__bottom-text {
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 32px auto 0;
  padding: 0 var(--pb-pad);
  line-height: 1.6;
}
.pb-carousel__bottom-text p {
  margin: 0;
}

@media (min-width: 768px) {
  .pb-carousel__header { max-width: 900px; }
  .pb-carousel__slide { width: 340px; }
  .pb-carousel__scroll { 
    width: 100%; 
    margin-left: 0; 
    padding: 20px 0;
  }
  .pb-carousel__track {
    margin: 0 auto;
    justify-content: center;
  }
}
/* END_SECTION:pb-reviews-carousel */

/* START_SECTION:pb-trust (INDEX:25) */
.pb-trust {
  background: var(--color-bg-block);
  border-top: 1px solid rgba(59, 130, 246, 0.05);
  border-bottom: 1px solid rgba(59, 130, 246, 0.05);
}

.pb-trust__inner {
  max-width: var(--pb-max);
  margin: 0 auto;
  padding: 0 var(--pb-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.pb-trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.pb-trust__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 10px;
}

.pb-trust__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
}

.pb-trust__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.pb-trust__stat {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

.pb-trust__label {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.pb-trust__payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  margin-top: 16px;
}

.pb-trust__pay-icon {
  height: 22px;
  width: auto;
}

@media (min-width: 768px) {
  .pb-trust__grid {
    gap: 24px 32px;
  }
}
/* END_SECTION:pb-trust */

/* START_SECTION:pb-urgency (INDEX:26) */
.pb-urgency {
  background: var(--color-bg-page);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.pb-urgency__inner {
  max-width: var(--pb-max);
  margin: 0 auto;
  padding: 0 var(--pb-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.pb-urgency__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pb-urgency__text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .pb-urgency__inner { max-width: 680px; }
  .pb-urgency__text { font-size: 15px; }
}
/* END_SECTION:pb-urgency */

/* START_SECTION:pb-usp (INDEX:27) */
/* ─── SECTION USP HOTSPOTS ─── */
.pb-mech {
  background: var(--color-bg-page);
}

.pb-mech__inner {
  max-width: var(--pb-max);
  margin: 0 auto;
  padding: 0 var(--pb-pad);
}

.pb-mech .pb-section-title {
  margin-bottom: 8px;
}

.pb-mech__subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0 0 28px;
  line-height: 1.5;
}

.pb-mech__footnote {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
  margin: 16px 0 0;
  line-height: 1.5;
  padding: 0 var(--pb-pad);
}

/* ─── IMAGE WRAPPER ─── */
.pb-hotspots {
  width: 100%;
}

.pb-hotspots__img-wrap {
  position: relative;
  /* Fond identique au fond de page: l'image PNG sans fond se fond parfaitement */
  background: var(--color-bg-page);
  border-radius: var(--radius-lg);
  overflow: visible;
}

.pb-hotspots__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  /* mix-blend-mode pour faire disparaître un fond blanc sur images PNG/WebP */
  mix-blend-mode: lighten;
}

.pb-hotspots__img-ph {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-bg-block);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

/* ─── HOTSPOT BUTTON ─── */
@keyframes pbHotspotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7), 0 0 0 0 rgba(34, 211, 238, 0.3); }
  70%  { box-shadow: 0 0 0 10px rgba(34, 211, 238, 0), 0 0 0 20px rgba(34, 211, 238, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0), 0 0 0 0 rgba(34, 211, 238, 0); }
}

.pb-hotspot-container {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.pb-hotspot-container.active {
  z-index: 20;
}

.pb-hotspot-btn {
  width: 22px;
  height: 22px;
  background: var(--color-cta);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7);
  display: block;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
  position: relative;
  animation: pbHotspotPulse 2.5s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pb-hotspot-btn__icon {
  font-size: 15px;
  display: block;
  pointer-events: none;
}



.pb-hotspot-container.active .pb-hotspot-btn {
  background: var(--color-brand);
  animation: none;
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* ─── PANNEAU INFO ─── */
.pb-hotspot-panel {
  position: absolute;
  top: 46px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 220px;
  background: var(--color-bg-block);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(59,130,246,0.1);
  padding: 14px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 10;
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pb-hotspot-panel.pb-panel--up {
  top: auto;
  bottom: 46px;
  transform: translateX(-50%) translateY(-8px);
}

.pb-hotspot-container.active .pb-hotspot-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.pb-hotspot-panel__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pb-hotspot-panel__emoji {
  font-size: 18px;
  flex-shrink: 0;
}

.pb-hotspot-panel__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-cta);
  margin: 0;
  line-height: 1.25;
}

.pb-hotspot-panel__body {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 768px) {
  .pb-mech__inner { max-width: 800px; }
  .pb-hotspot-panel { width: 260px; }
}
/* END_SECTION:pb-usp */

/* START_SECTION:pb-value (INDEX:28) */
.pb-value {
  background: var(--color-bg-page);
}

.pb-value__inner {
  max-width: var(--pb-max);
  margin: 0 auto;
  padding: 0 var(--pb-pad);
}

.pb-value__receipt {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pb-value__receipt-header {
  padding: 16px 20px;
  background: rgba(34, 211, 238, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.pb-value__receipt-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pb-value__items {
  display: flex;
  flex-direction: column;
}

.pb-value__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.3s ease;
}

.pb-value__item:hover {
  background: rgba(255, 255, 255, 0.01);
}

.pb-value__item-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.1);
}

.pb-value__item-icon svg {
  width: 12px;
  height: 12px;
}

.pb-value__item-name {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  flex: 1;
  line-height: 1.3;
}

.pb-value__item-price {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  text-align: right;
}

.pb-value__total-block {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.pb-value__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 12px;
}

/* Animations */
@keyframes pbSlideUpFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.pb-animate-slide-up {
  animation: pbSlideUpFade 0.8s ease-out forwards;
}
.pb-animate-item {
  opacity: 0;
  animation: pbSlideUpFade 0.5s ease-out forwards;
}

@keyframes pbPulseGlow {
  0% { box-shadow: inset 0 0 0 rgba(34, 211, 238, 0); }
  50% { box-shadow: inset 0 0 20px rgba(34, 211, 238, 0.15); }
  100% { box-shadow: inset 0 0 0 rgba(34, 211, 238, 0); }
}
.pb-glow-pulse {
  animation: pbPulseGlow 3s infinite;
}

.pb-value__total-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
}

.pb-value__total-old {
  font-family: var(--font-body);
  font-size: 16px;
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.pb-value__total-row--highlight {
  background: rgba(34, 211, 238, 0.08);
  border-top: 1px solid rgba(34, 211, 238, 0.2);
}

.pb-value__total-label--accent {
  color: var(--color-text);
  font-weight: 600;
  font-size: 15px;
}

.pb-value__total-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-cta);
}

.pb-value__bottom-text {
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.5;
}
.pb-value__bottom-text p {
  margin: 0;
}
.pb-value__bottom-text strong {
  color: var(--color-text);
  font-weight: 600;
}
/* END_SECTION:pb-value */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:ht-toast (INDEX:30) */
.ht-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(28, 31, 42, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Inter', sans-serif;
    color: #F1F5F9;
    min-width: 340px;
  }
  .ht-toast.is-active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .ht-toast__icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #3B82F6, #22D3EE);
    color: #0A0E17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
  }
  
  .ht-toast--error .ht-toast__icon {
    background: #EF4444;
  }

  .ht-toast__content {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .ht-toast__title { font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
  .ht-toast__desc { font-size: 0.85rem; color: #94A3B8; margin-top: 2px; }
  
  .ht-toast__btn {
    background: linear-gradient(135deg, #3B82F6, #22D3EE);
    color: #0A0E17;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: opacity 0.2s;
  }
  .ht-toast__btn:hover { opacity: 0.9; }
  
  @media (max-width: 480px) {
    .ht-toast {
      bottom: 24px;
      width: calc(100% - 32px);
      min-width: auto;
    }
  }
/* END_SNIPPET:ht-toast */

/* START_SNIPPET:image (INDEX:31) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:variant-picker (INDEX:36) */
/* ─── VARIANT PICKER ─── */
.pb-variant-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pb-variant-option {
  margin-bottom: 16px;
}

.pb-variant-option__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  text-align: center;
}

.pb-variant-option__selected {
  color: var(--color-text);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.pb-variant-option__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pb-swatch {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.pb-swatch:hover {
  border-color: var(--color-brand);
  color: var(--color-text);
  background: rgba(59, 130, 246, 0.08);
}

.pb-swatch--active {
  border-color: var(--color-cta);
  color: var(--color-cta);
  background: rgba(34, 211, 238, 0.1);
  font-weight: 700;
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.2);
}

.pb-price-wrap.pb-variant-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pb-variant-discount {
  background: rgba(34, 211, 238, 0.15);
  color: var(--color-cta);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  align-self: center;
}

.pb-variant-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(255,255,255,0.1);
  color: var(--color-text-muted);
  box-shadow: none;
}

/* ─── Description dynamique variante ─── */
.pb-variant-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 12.5px;
  line-height: 1.45;
  color: #94A3B8;
  background: none;
  border: none;
  padding: 0;
  margin: 10px auto 18px auto;
  max-width: 80%;
  text-align: center;
  transition: opacity 0.2s ease;
}
.pb-variant-desc strong {
  color: #CBD5E1;
  font-weight: 600;
}

/* ─── Toast ATC ─── */
.pb-atc-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-bg-block);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  opacity: 0;
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  min-width: 260px;
  text-align: center;
  justify-content: center;
}

.pb-atc-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.pb-atc-toast__link {
  color: var(--color-cta);
  font-weight: 700;
  text-decoration: none;
}

/* ─── VARIANT IMAGE (compact thumbnail) ─── */
.pb-variant-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pb-variant-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(34, 211, 238, 0.2);
  background: var(--color-bg-page);
  transition: opacity 0.25s ease;
  flex-shrink: 0;
}

.pb-variant-img.pb-img-fade {
  opacity: 0;
}

.pb-variant-img-ph {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
  padding: 20px;
}
/* END_SNIPPET:variant-picker */