/* Add custom CSS styles below */ 
.s-block__title {
  display: flex;
  justify-content: center;
  align-items: center; 
}



.footer-is-light .store-footer .store-footer__inner {
text-align:center;
    color:#fff;
  background-color:rgb(181 140 113);
  }
 
.max-w-sm {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.s-contacts-list-vertical {
  display: flex;
  flex-direction: column; 
  align-items: center; 
}

.s-contacts-item {
  display: flex;
  align-items: center; 
  gap: 8px; 
  margin-bottom: 10px; 
  justify-content: center; 
}

.s-contacts-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-footer .contact-social ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

/* ===== FAQ Section ===== */
.faq-section {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  direction: rtl;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
}

.faq-item {
  border-top: 1px solid #eee;
  padding: 15px 0;
}

.faq-question {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #222;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #2f855a;
}

.faq-icon {
  font-size: 1.3rem;
  color: #2f855a;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #555;
  line-height: 1.8;
  transition: max-height 0.4s ease;
  padding-right: 5px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}