/* =============================================================================
📄 FILE: store-help.css
🎯 PURPOSE: Styling for Help / FAQ page info section
🛠 VERSION: Phase III — Reduced Top Padding for FAQ Container
============================================================================= */

/* -----------------------------------------------------------------------------
📦 Info Section Wrapper
----------------------------------------------------------------------------- */
.store-info-section-wrapper {
  width: 100%;
  margin: 4px auto 0;
  padding: 0 20px 10px; /* reduced top padding */
  background: #ffffff;
  border: 2px solid #004f5a;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

/* -----------------------------------------------------------------------------
📦 Info Box
----------------------------------------------------------------------------- */
.store-info-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px 10px; /* reduced top padding inside box */
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  margin: 24px auto 0;
  max-width: 900px;
}

.store-info-box img {
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 10px;
}

.store-info-box--image-right {
  flex-direction: row-reverse;
}

.store-info-box--image-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.store-info-box--image-center img {
  margin: 0 auto;
}

.store-info-text {
  flex: 1;
  min-width: 200px;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

/* -----------------------------------------------------------------------------
❓ FAQ Styling
----------------------------------------------------------------------------- */
.store-info-text .faq-list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}

.store-info-text .faq-list li {
  margin-bottom: 16px;
}

.store-info-text .faq-list li:last-child {
  margin-bottom: 0;
}

.store-info-text .faq-list strong {
  font-weight: bold;
  color: #004f5a;
  margin-right: 4px;
}

/* -----------------------------------------------------------------------------
📱 Responsive
----------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .store-info-box {
    flex-direction: column;
    text-align: center;
  }

  .store-info-box img {
    margin: 0 auto;
  }
}
