/** Shopify CDN: Minification failed

Line 94:8 Expected identifier but found whitespace
Line 94:10 Unexpected "{"
Line 94:19 Expected ":"
Line 106:8 Expected identifier but found whitespace
Line 106:10 Unexpected "{"
Line 106:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.faq-section {
  position: relative;
  padding: 80px 20px;
  border-radius: 20px;
  max-width: 100%;
  margin: 2rem auto;
  color: inherit;
  overflow: hidden;
}

/* Gradient Background */
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0.15;
  z-index: 0;
}

/* Decorative blur circles */
.faq-section::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  filter: blur(120px);
  opacity: 0.4;
  z-index: 0;
}

.faq-section h2 {
  position: relative;
  text-align: center;
  font-weight: 500;
  margin-bottom: 50px;
  color: inherit;
  z-index: 1;
  font-size: clamp(1.4rem, 5vw, 2.4rem); /* ✅ responsive font-size */
  line-height: 1.3; /* ✅ better spacing */
  word-wrap: break-word; /* ✅ long words wrap ho jaye */
  hyphens: auto; /* ✅ agar lamba word ho to hyphen ke saath wrap ho */
}

/* Keep FAQ content centered and not full width */
.faq-list {
  max-width: 800px; /* controls width */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: #edf2fb;
  border-radius: 14px;
  padding: 22px 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(10px);
}
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  background-color: #f5f5f5;
}

.faq-question {
  font-weight: 600;
  font-size: 1.15rem;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: {{ section.settings.accent_color }};
}
.faq-question::after {
  content: "➕";
  position: absolute;
  right: 0;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}
.faq-question.active::after {
  content: "➖";
  transform: rotate(180deg);
  color: {{ section.settings.accent_color }};
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.45s ease;
  opacity: 0;
  margin-top: 0;
  line-height: 1.6;
  color: inherit;
}
.faq-answer.show {
  max-height: 600px;
  opacity: 1;
  margin-top: 14px;
}
@media (max-width: 700px) {
  .faq-section h2 {
    font-size: 1.6rem;  /* mobile ke liye chhota size */
    line-height: 1.4;   /* proper spacing */
    padding: 0 10px;    /* thoda space left/right */
    word-break: break-word; /* agar lamba word ho to wrap ho jaye */
    text-align: center; /* center align rehne ke liye */
  }
}
@media (max-width: 450px) {
  .faq-section h2 {
    font-size: 1.6rem;  /* mobile ke liye chhota size */
    line-height: 1.4;   /* proper spacing */
    padding: 0 10px;    /* thoda space left/right */
    word-break: break-word; /* agar lamba word ho to wrap ho jaye */
    text-align: center; /* center align rehne ke liye */
  }
}