/** Shopify CDN: Minification failed

Line 236:0 Expected "}" to go with "{"

**/
/* ================================
   DRYE – FAQ Section (layout only)
   ================================ */

/* Wrapper – spacing styrs helt av sektionens settings */
.drye-faq-section{
  box-sizing: border-box;
  padding-top: var(--faq-pad-top, 0px);
  padding-bottom: var(--faq-pad-bottom, 0px);
}

@media (max-width: 767px){
  .drye-faq-section{
    padding-top: var(--faq-pad-top-mobile, 0px);
    padding-bottom: var(--faq-pad-bottom-mobile, 0px);
  }
}

.drye-faq-inner{
  width: 100%;
  max-width: 880px;   /* justera 820 / 900 / 960 tills det matchar din röda ram */
  margin-inline: auto;
}


/* -------------------------------------
   Accordion wrapper
   ------------------------------------- */
.drye-faq-accordion{
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid color-mix(in srgb, currentColor 25%, transparent);
  border-bottom: 1px solid color-mix(in srgb, currentColor 25%, transparent);
  background: transparent;
  overflow: hidden;
}

/* Enskilt FAQ-item */
.drye-faq-item{
  position: relative;
  background: transparent;
  border-top: 1px solid color-mix(in srgb, currentColor 25%, transparent);
}

/* Toggle-input (dold) */
.drye-faq-item-input{
  position: absolute;
  inset: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* -------------------------------------
   Frågerad (label med rubrik + ikon)
   ------------------------------------- */
.drye-faq-item-label{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding-block: 20px;
  padding-inline: 0;      /* desktop – följer page-width */
  background: transparent;
  /* ingen color/font – Base styr */
}

/* Rubriken – låter Base bestämma all typografi och färg */
.drye-faq-item-label h4{
  margin: 0;
}

@media (max-width: 767px){
  .drye-faq-item-label{
    padding-block: 16px;
    padding-inline: 1rem;  /* mobil – drar in från kanterna, samma känsla som andra sektioner */
    gap: 10px;
  }
}

/* -------------------------------------
   Plus/Minus-ikon – följer currentColor
   ------------------------------------- */
.drye-faq-plus{
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.drye-faq-plus .vertical-line,
.drye-faq-plus .horizontal-line{
  stroke: currentColor;
  transition: transform .2s ease;
  transform-origin: 50% 50%;
}

.drye-faq-item-input:checked ~ .drye-faq-item-label .vertical-line{
  transform: scaleY(0);
}

@media (max-width: 767px){
  .drye-faq-plus{
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }
}

/* -------------------------------------
   Svar (content wrapper)
   ------------------------------------- */
.drye-faq-content-wrapper{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.drye-faq-item-input:checked ~ .drye-faq-content-wrapper{
  max-height: 100rem;
}

/* Inre layout för innehåll – text + ev. bild senare */
.drye-faq-content{
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.drye-faq-content > *{
  flex: 1 1 0;
}

@media (max-width: 767px){
  .drye-faq-content{
    flex-direction: column;
    gap: 16px;
  }
}

/* Svarstext – bara spacing, ingen färg/font */
.drye-faq-body{
  padding: 0 0 18px 0;
  background: transparent;
}

.drye-faq-body p,
.drye-faq-body ol,
.drye-faq-body ul{
  margin: 0 0 1rem 0;
}

@media (max-width: 767px){
  .drye-faq-body{
    padding: 0 1rem 16px 1rem;  /* samma horisontella padding som rubriken på mobil */
}

/* Länkar – bara underline */
.drye-faq-body a{
  text-decoration: underline;
}
.drye-faq-body a:hover{
  text-decoration: none;
}

/* Fokus-stöd */
.drye-faq-item-label:focus-visible{
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Mindre rörelse om användaren valt det */
@media (prefers-reduced-motion: reduce){
  .drye-faq-content-wrapper{
    transition: none;
  }
}
/* -------------------------------------
   Plus/Minus-ikon – följer currentColor
   ------------------------------------- */
.drye-faq-plus{
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease; /* själva "bollen" roterar */
}

.drye-faq-plus .vertical-line,
.drye-faq-plus .horizontal-line{
  stroke: currentColor;
  transform-origin: 50% 50%;
  transition: transform .25s ease, opacity .25s ease;
}

/* När raden är öppen: rotera ikonen + göm vertikala linjen */
.drye-faq-item-input:checked
  ~ .drye-faq-item-label
  .drye-faq-plus{
  transform: rotate(90deg);        /* ger “halv cirkel”-känslan */
}

.drye-faq-item-input:checked
  ~ .drye-faq-item-label
  .drye-faq-plus .vertical-line{
  transform: scaleY(0);
  opacity: 0;
}

@media (max-width: 767px){
  .drye-faq-plus{
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }
}
@media (prefers-reduced-motion: reduce){
  .drye-faq-content-wrapper{
    transition: none;
  }
  .drye-faq-plus,
  .drye-faq-plus .vertical-line,
  .drye-faq-plus .horizontal-line{
    transition: none;
  }
}
