/*
 * SEO Content Stylesheet IMP Multimedia
 * Shared stylesheet for all store SEO content across all domains.
 * 
 * Usage: Include this CSS file in the page <head> or add to your site's main stylesheet.
 * All content uses the .seo-content wrapper to scope styles and avoid conflicts.
 * 
 * Version: 1.0.0
 * Last updated: 2026-05-26
 */

/* ===== WRAPPER ===== */
.seo-content {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.seo-content > :first-child {
  margin-top: 0;
}

.seo-content > :last-child {
  margin-bottom: 0;
}

.seo-content h2 {
  font-size: 1.4em;
  font-weight: 700;
  margin: 1.8em 0 0.6em;
  color: #1a1a1a;
  line-height: 1.3;
  border-bottom: 2px solid #e8e8e8;
  padding-bottom: 0.3em;
}

.seo-content h3 {
  font-size: 1.15em;
  font-weight: 600;
  margin: 1.4em 0 0.4em;
  color: #2a2a2a;
  line-height: 1.4;
}

.seo-content p {
  margin: 0 0 1em;
}

.seo-content ul, .seo-content ol {
  margin: 0 0 1em;
  padding-left: 1.5em;
}

.seo-content li {
  margin: 0.3em 0;
}

.seo-content strong {
  font-weight: 600;
}

.seo-content a {
  color: #1a73e8;
  text-decoration: none;
}

.seo-content a:hover {
  text-decoration: underline;
}

/* ===== STORE INFO SIDEBAR ===== */
.store-info {
  background: #f7f8fa;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 0 0 1.5em;
  font-size: 14px;
}

.store-info__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eaedf2;
}

.store-info__row:last-child {
  border-bottom: none;
}

.store-info__label {
  font-weight: 600;
  color: #555;
  flex: 0 0 45%;
  max-width: 200px;
}

.store-info__value {
  color: #222;
  flex: 1;
  text-align: right;
}

.store-info__value a {
  color: #1a73e8;
  word-break: break-all;
}

/* ===== SECTION ===== */
.section {
  margin: 0 0 1.5em;
}

/* ===== STEPS (How-to / numbered list) ===== */
.steps {
  counter-reset: seo-step;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em;
}

.steps li {
  counter-increment: seo-step;
  position: relative;
  padding: 10px 0 10px 44px;
  margin: 0 0 8px;
  background: #fafbfc;
  border-radius: 6px;
  min-height: 20px;
}

.steps li::before {
  content: counter(seo-step);
  position: absolute;
  left: 12px;
  top: 10px;
  width: 24px;
  height: 24px;
  background: #1a73e8;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== TIP BOX ===== */
.tip-box {
  background: #e8f5e9;
  border-left: 4px solid #43a047;
  border-radius: 6px;
  padding: 14px 18px;
  margin: 0 0 1.5em;
  font-size: 14px;
}

.tip-box__title {
  font-weight: 700;
  color: #2e7d32;
  margin: 0 0 6px;
  font-size: 14px;
}

/* ===== WARNING BOX ===== */
.warning-box {
  background: #fff3e0;
  border-left: 4px solid #ef6c00;
  border-radius: 6px;
  padding: 14px 18px;
  margin: 0 0 1.5em;
  font-size: 14px;
}

.warning-box__title {
  font-weight: 700;
  color: #e65100;
  margin: 0 0 6px;
  font-size: 14px;
}

/* ===== TAX TABLE (for Zoll/customs) ===== */
.tax-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5em;
  font-size: 14px;
}

.tax-table th {
  background: #1a73e8;
  color: #fff;
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.tax-table th:first-child {
  border-radius: 6px 0 0 0;
}

.tax-table th:last-child {
  border-radius: 0 6px 0 0;
}

.tax-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e8e8e8;
}

.tax-table tr:nth-child(even) td {
  background: #f7f8fa;
}

.tax-table tr:last-child td:first-child {
  border-radius: 0 0 0 6px;
}

.tax-table tr:last-child td:last-child {
  border-radius: 0 0 6px 0;
}

/* ===== SEASONAL TABLE (sale calendar) ===== */
.seasonal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5em;
  font-size: 14px;
}

.seasonal-table th {
  background: #333;
  color: #fff;
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  font-size: 13px;
}

.seasonal-table th:first-child {
  border-radius: 6px 0 0 0;
}

.seasonal-table th:last-child {
  border-radius: 0 6px 0 0;
}

.seasonal-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e8e8e8;
}

.seasonal-table tr:nth-child(even) td {
  background: #fafbfc;
}

/* ===== CATEGORY GRID (store categories) ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 0 0 1.5em;
}

.category-card {
  background: #f7f8fa;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
}

.category-card strong {
  display: block;
  margin: 0 0 4px;
  color: #1a1a1a;
  font-size: 14px;
}

.category-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* ===== FAQ ===== */
.faq-item {
  margin: 0 0 12px;
  border: 1px solid #e0e4ea;
  border-radius: 6px;
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
  padding: 12px 16px;
  background: #f7f8fa;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  border-bottom: 1px solid #e0e4ea;
}

.faq-item p {
  padding: 12px 16px;
  margin: 0;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* ===== RELATED STORES ===== */
.related-stores {
  margin: 2em 0 0;
  padding: 20px 0 0;
  border-top: 2px solid #e8e8e8;
}

.related-stores h2 {
  font-size: 1.2em;
  margin: 0 0 12px;
  border-bottom: none;
  padding-bottom: 0;
}

.related-stores__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}

.related-stores__grid a {
  display: block;
  padding: 8px 12px;
  background: #f7f8fa;
  border: 1px solid #e0e4ea;
  border-radius: 6px;
  font-size: 13px;
  color: #1a73e8;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}

.related-stores__grid a:hover {
  background: #e8f0fe;
  border-color: #1a73e8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .seo-content {
    font-size: 14px;
    padding: 12px 0;
  }

  .store-info__row {
    flex-direction: column;
    gap: 2px;
  }

  .store-info__label {
    max-width: 100%;
  }

  .store-info__value {
    text-align: left;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tax-table, .seasonal-table {
    font-size: 13px;
  }

  .tax-table th, .seasonal-table th,
  .tax-table td, .seasonal-table td {
    padding: 8px 10px;
  }

  .related-stores__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}