/* Store FAQ (Premium, Bootstrap 5) */

.store-faq{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-faq-item{
  border: 1px solid rgba(17,24,39,.08) !important;
  border-radius: 8px !important; /* ✅ minimal but elegant */
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 22px rgba(17,24,39,.04);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.store-faq-item:hover{
  border-color: rgba(17,24,39,.12) !important;
  box-shadow: 0 18px 36px rgba(17,24,39,.06);
  transform: translateY(-1px);
}

/* ✅ Header button */
.store-faq-btn{
  font-weight: 900;
  background: #fff !important;
  color: var(--text);
  padding: 16px 16px;
  box-shadow: none !important;
  border: 0 !important;
}

/* remove bootstrap default arrow */
.store-faq-btn::after{
  background-image: none !important;
  transform: none !important;
  content: "+"; /* ✅ default plus */
  font-weight: 900;
  font-size: 18px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: auto;
  color: var(--text);
  background: rgba(17,24,39,.04);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

/* when opened => minus */
.store-faq-btn:not(.collapsed)::after{
  content: "−";
  background: rgba(13,110,253,.10);
  color: var(--secondary);
}

/* hover effect for plus */
.store-faq-btn:hover::after{
  background: rgba(17,24,39,.06);
}

/* focus */
.store-faq-btn:focus{
  box-shadow: none !important;
}

/* Question typography */
.store-faq-q{
  font-size: 14px;
  line-height: 1.45;
  padding-inline-end: 10px;
}

/* Answer */
.store-faq-body{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
  padding: 14px 16px 18px 16px;
  border-top: 1px solid rgba(17,24,39,.06);
  background: rgba(17,24,39,.01);
}

/* Mobile comfort */
@media (max-width: 575px){
  .store-faq-btn{
    padding: 14px 14px;
  }
  .store-faq-body{
    padding: 12px 14px 16px 14px;
  }
  .store-faq-btn::after{
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
}
