/** Shopify CDN: Minification failed

Line 478:1 Expected "}" to go with "{"

**/
/* =========================================================
   FAQ — Packages-like Glass Card Style (warm / premium)
   Applies ONLY on FAQ page via faq.css
   ========================================================= */

:root{
  /* Подкрутка “темно/светло” одной ручкой */
  --faq-glass-opacity: 0.76;     /* 0.28–0.42 */
  --faq-blur: 40px;              /* 8–14px */
  --faq-radius: 60px;

  /* Тёплый шоколад как на packages */
  --faq-brown-1: rgba(70, 42, 32, var(--faq-glass-opacity));
  --faq-brown-2: rgba(40, 26, 22, calc(var(--faq-glass-opacity) + 0.06));

  /* “золотая” тонкая окантовка */
  --faq-gold-1: rgba(211, 175, 55, 0.55);
  --faq-gold-2: rgba(255, 235, 171, 0.30);

  /* Текст */
  --faq-ink: rgba(214,179,106,0.86);
  --faq-ink-soft: rgba(214,179,106,0.86);

  /* Тени как в premium UI, без “черноты” */
  --faq-shadow: 0 18px 45px rgba(0, 0, 0, 0.56);
  --faq-shadow-soft: 0 6px 16px rgba(34, 29, 9, 0.84);
}

/* Контейнер секций */
main#MainContent .collapsible-content-wrapper-narrow{
  max-width: 720px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

/* Каждая строка/карточка FAQ */
main#MainContent .collapsible-content details{
  position: relative;
  margin: 2px 0;
  border-radius: var(--faq-radius);
  overflow: hidden;

  background: linear-gradient(135deg, var(--faq-brown-1), var(--faq-brown-2));
  backdrop-filter: blur(var(--faq-blur));
  -webkit-backdrop-filter: blur(var(--faq-blur));

  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--faq-shadow-soft);

  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

/* Тонкая “ювелирная” рамка как на packages */
main#MainContent .collapsible-content details::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: var(--faq-radius);
  padding: 1px;
  pointer-events:none;

  background: linear-gradient(120deg,
    rgba(255,255,255,0.08),
    var(--faq-gold-2),
    var(--faq-gold-1),
    rgba(255,255,255,0.08)
  );

  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  opacity: 0.55;
  transition: opacity 180ms ease;
}

main#MainContent .collapsible-content details:hover{
  transform: translateY(-1px);
  box-shadow: var(--faq-shadow);
  border-color: rgba(211,175,55,0.18);
}
main#MainContent .collapsible-content details:hover::before{
  opacity: 0.85;
}

main#MainContent .collapsible-content details[open]{
  border-color: rgba(211,175,55,0.22);
}

/* SUMMARY */
main#MainContent .collapsible-content summary{
  padding: 14px 20px;
  cursor: pointer;
  list-style: none;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

main#MainContent .collapsible-content summary::-webkit-details-marker{ display:none; }

/* Убираем дефолтные иконки Dawn */
main#MainContent .collapsible-content .icon-accordion,
main#MainContent .collapsible-content svg.icon{
  display:none !important;
}

/* Вопрос — как в packages (серф + капля трекинга) */
main#MainContent .collapsible-content summary,
main#MainContent .collapsible-content summary .accordion__title,
main#MainContent .collapsible-content summary h3{
  
   font-family: "Raleway", sans-serif;
  font-size: clamp(20px, 1.25vw, 17px)!important;
  line-height: 1.75;
  text-shadow: 0 0 18px rgba(214,179,106,0.12);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--faq-ink);

  writing-mode: horizontal-tb;
  text-orientation: mixed;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  text-align: left;
}

/* Иконка справа — круглая “золотая капля”, но мягкая как в packages */
main#MainContent .collapsible-content summary::after{
  content:"+";
  width: 42px;
  height: 42px;
  border-radius: 999px;
  flex: 0 0 auto;

  display: grid;
  place-items: center;

  font-family: "Raleway", sans-serif;
  font-size: clamp(20px, 1.25vw, 17px)!important;
  line-height: 1.75;
  text-shadow: 0 0 18px rgba(214,179,106,0.12);

  color: rgba(20, 16, 12, 0.85);
  background: radial-gradient(circle at 30% 30%,
    rgba(255,235,171,0.95),
    rgba(211,175,55,0.72)
  );

  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 12px 26px rgba(0,0,0,0.25);
  transition: transform 180ms ease;
}

main#MainContent .collapsible-content details[open] summary::after{
  content:"–";
}

/* Разделитель при открытии — тонкая линия */
main#MainContent .collapsible-content details[open] summary{
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* Ответ */
main#MainContent .collapsible-content .accordion__content,
main#MainContent .collapsible-content .rte{
  padding: 0 22px 22px 22px;
  font-family: "Raleway", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--faq-ink-soft);
}

/* Mobile */
@media (max-width: 749px){
  main#MainContent .collapsible-content summary{ padding: 16px 16px;}
  main#MainContent .collapsible-content summary,
  main#MainContent .collapsible-content summary .accordion__title{ 
    font-size: 14px!important;
  }
  main#MainContent .collapsible-content .accordion__content,
  main#MainContent .collapsible-content .rte{
    padding: 0 16px 16px 16px;
    font-size: 14px;
  }

  main#MainContent .collapsible-content summary::after{
    width: 40px;
    height: 40px;
  }
}
/* =========================================
   FAQ heading "Process" — glow + gold + float
   Paste at the VERY END of faq.css
   ========================================= */

/* Базовые переменные (можно крутить) */
:root{
  --ft-gold-a: rgba(255, 235, 171, 0.98);
  --ft-gold-b: rgba(211, 175, 55, 0.98);
  --ft-gold-c: rgba(153, 120, 25, 0.95);

  --ft-glow-soft: rgba(255, 226, 140, 0.18);
  --ft-glow-mid:  rgba(211, 175, 55, 0.22);
  --ft-glow-hot:  rgba(255, 240, 200, 0.14);
}

/* Целимся в заголовок Process (часто это h2.title в секции) */
main#MainContent .collapsible-content .title,
main#MainContent .collapsible-content .collapsible-content__heading,
main#MainContent .collapsible-content h2 {
  /* типографика как у FAQ */
  font-family: "Cormorant", sans-serif !important;
  font-weight: 300 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.26em !important;

  /* “золотой как FAQ”: через background-clip */
  color: transparent !important;
  background-image: linear-gradient(
    90deg,
    var(--ft-gold-a) 0%,
    var(--ft-gold-b) 35%,
    var(--ft-gold-a) 70%,
    var(--ft-gold-c) 100%
  ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;

  /* glow + depth (как hero word) */
  text-shadow:
    0 1px 0 rgba(0,0,0,0.22),
    0 10px 26px rgba(0,0,0,0.38),
    0 0 18px var(--ft-glow-mid),
    0 0 44px var(--ft-glow-soft) !important;

  /* “подпрыгивание” */
  display: inline-block !important;
  transform: translateZ(0);
  animation: ftFloat 3.8s ease-in-out infinite, ftGlowPulse 2.8s ease-in-out infinite;
}

/* Лёгкое усиление при наведении мыши (на десктопе будет “вау”) */
main#MainContent .collapsible-content .title:hover,
main#MainContent .collapsible-content .collapsible-content__heading:hover,
main#MainContent .collapsible-content h2:hover {
  animation: ftFloat 2.6s ease-in-out infinite, ftGlowPulse 1.9s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(255,235,171,0.25)) drop-shadow(0 0 40px rgba(211,175,55,0.18));
}

/* Подчёркивание-луч (как фирменная линия) */
main#MainContent .collapsible-content .title::after,
main#MainContent .collapsible-content .collapsible-content__heading::after,
main#MainContent .collapsible-content h2::after {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  margin: 14px auto 0;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,235,171,0.70),
    rgba(211,175,55,0.80),
    rgba(255,235,171,0.60),
    rgba(255,255,255,0)
  );
  box-shadow:
    0 0 10px rgba(211,175,55,0.22),
    0 0 26px rgba(255,235,171,0.12);
  opacity: 0.95;
}

/* Анимации */
@keyframes ftFloat{
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes ftGlowPulse{
  0%, 100% {
    text-shadow:
      0 1px 0 rgba(0,0,0,0.22),
      0 10px 26px rgba(0,0,0,0.38),
      0 0 16px rgba(211,175,55,0.20),
      0 0 40px rgba(255,226,140,0.14);
  }
  50% {
    text-shadow:
      0 1px 0 rgba(0,0,0,0.22),
      0 14px 34px rgba(0,0,0,0.44),
      0 0 22px rgba(211,175,55,0.28),
      0 0 56px rgba(255,226,140,0.20);
  }
}

/* Уважение к настройкам доступности */
@media (prefers-reduced-motion: reduce) {
  main#MainContent .collapsible-content .title,
  main#MainContent .collapsible-content .collapsible-content__heading,
  main#MainContent .collapsible-content h2 {
    animation: none !important;
  }
}
/* =========================================
   FAQ "Card Index" hover — slide right
   ========================================= */

main#MainContent .collapsible-content details{
  will-change: transform;
}

/* Важно: чтобы не дергалось при выезде */
main#MainContent .collapsible-content details{
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

/* Выезд вправо */
@media (hover:hover) and (pointer:fine){
  main#MainContent .collapsible-content details:hover{
    transform: translateX(14px); /* 8–18px */
  }
}

/* Когда open — тоже чуть выдвинута, но меньше */
main#MainContent .collapsible-content details[open]{
  transform: translateX(10px);
}

/* “язычок” слева (как у картотеки) */
main#MainContent .collapsible-content details::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: 6px;
  background: linear-gradient(
    180deg,
    rgba(255,235,171,0.0),
    rgba(211,175,55,0.45),
    rgba(255,235,171,0.0)
  );
  opacity: 0;
  transition: opacity 220ms ease;
}

@media (hover:hover) and (pointer:fine){
  main#MainContent .collapsible-content details:hover::after{
    opacity: 1;
  }
}
main#MainContent .collapsible-content details[open]::after{
  opacity: 1;
}
@media (hover:hover) and (pointer:fine){
  main#MainContent .collapsible-content details:nth-of-type(1):hover{ transform: translateX(10px); }
  main#MainContent .collapsible-content details:nth-of-type(2):hover{ transform: translateX(14px); }
  main#MainContent .collapsible-content details:nth-of-type(3):hover{ transform: translateX(18px); }
  main#MainContent .collapsible-content details:nth-of-type(4):hover{ transform: translateX(14px); }
  main#MainContent .collapsible-content details:nth-of-type(5):hover{ transform: translateX(10px); }
}

/* =========================================================
   FAQ — MOBILE ROW TUNING (one place to tweak everything)
   Paste at the VERY END of faq.css
   ========================================================= */

@media (max-width: 749px){

  /* 0) Optional: prevent horizontal scroll when rows slide right */
  main#MainContent{ overflow-x: hidden; }
  /* 1) LENGTH (how long each row is) — make rows narrower */
  main#MainContent .collapsible-content details{
    max-width: 90%;           /* <-- CHANGE THIS: 88–94% (smaller = shorter rows) */

  /* 2) HEIGHT (how tall each row is) — reduce padding */
  main#MainContent .collapsible-content summary{
    padding: 8px 14px !important;  /* <-- CHANGE THIS:
                                       first number = height (9–14px),
                                       second = left/right (16–20px) */
  }

  /* 3) TEXT (make it feel “narrower” / more editorial inside the row) */
  main#MainContent .collapsible-content summary,
  main#MainContent .collapsible-content summary h3,
  main#MainContent .collapsible-content summary .accordion__title{
    font-family: "Raleway", sans-serif !important;

    font-weight: 300 !important;     /* <-- CHANGE THIS: 300 (light) / 400 (regular) */
    font-size: 15px !important;      /* <-- CHANGE THIS: 14–16px */
    line-height: 1.45 !important;    /* <-- CHANGE THIS: 1.35–1.6 (lower = tighter) */

    letter-spacing: 0.10em !important; /* <-- CHANGE THIS: 0.06–0.14em (more = narrower feel) */
    text-transform: none !important;   /* <-- set uppercase if you want: uppercase */
  }

  /* 4) If your question wraps to 2 lines — make it look cleaner */
  main#MainContent .collapsible-content summary .accordion__title{
    max-width: 86%;             /* <-- CHANGE THIS: 82–90% (keeps text away from right edge) */
  }
}
/* =========================================
   FAQ (MOBILE): iOS white bottom FIX (use HTML layers, not BODY)
   Requires <div class="facety-faq"></div> on the FAQ page
========================================= */
@media (max-width: 749px){

  /* 0) Make the real page backgrounds transparent (FAQ only) */
  html:has(.facety-faq),
  html:has(.facety-faq) body,
  html:has(.facety-faq) .gradient,
  html:has(.facety-faq) main,
  html:has(.facety-faq) #MainContent,
  html:has(.facety-faq) .page-width,
  html:has(.facety-faq) .color-background-1,
  html:has(.facety-faq) .color-background-2,
  html:has(.facety-faq) .color-background-3{
    background: transparent !important;
    background-color: transparent !important;
  }

  /* 1) Put the fixed background on HTML (beats iOS bounce/overscroll) */
  html:has(.facety-faq){
    --ft-faq-bg: url("/cdn/shop/files/IMG_2152_2.jpg?v=1765254833");
  }

  html:has(.facety-faq)::before{
    content:"";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;

    background-image: var(--ft-faq-bg);
    background-repeat: no-repeat;
    background-size: 260%;
    background-position: 50% -80px;

    filter: saturate(1.05) contrast(1.05);
    transform: translateZ(0);
  }

  /* 2) Glass layer */
  html:has(.facety-faq)::after{
    content:"";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background: rgba(12, 9, 8, 0.14);
    backdrop-filter: blur(7px) saturate(1);
    -webkit-backdrop-filter: blur(7px) saturate(1);
  }

  /* 3) Keep content above layers */
  html:has(.facety-faq) #MainContent{
    position: relative;
    z-index: 0;
  }

  /* 4) Optional: reduce iOS “rubber band” visual flash */
  html:has(.facety-faq) body{
    overflow-x: hidden;
  }
}