/* ============================================================
   Splash.in.ua - SEO Styles for OkayCMS
   Version: 1.0
   Classes: .seo-content, .seo-h2, .seo-h3, .seo-intro,
            .seo-details-block, .seo-grid-3, .seo-advantage-item,
            .seo-step-item, .seo-step-num, .seo-step-content,
            .seo-faq-item, .seo-faq-question, .seo-faq-answer,
            .seo-note, .seo-related-tags, .seo-tag,
            .seo-cta-final, .seo-cta-btn-primary, .seo-cta-btn-secondary
   Tables: use inline styles (see category pages for reference)
   ============================================================ */

/* ----- MAIN CONTENT WRAPPER ----- */
.seo-content {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 15px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ----- HEADINGS ----- */
.seo-h2 {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin: 30px 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #2196F3;
}

.seo-h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 10px 0;
}

/* ----- INTRO TEXT ----- */
.seo-intro {
  font-size: 15px;
  line-height: 1.7;
  margin: 15px 0;
}

/* ----- DETAILS BLOCK (product specs) ----- */
.seo-details-block {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px 25px;
  margin: 20px 0;
}

.seo-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.seo-detail-row:last-child {
  border-bottom: none;
}

.seo-detail-label {
  color: #666;
  font-weight: 500;
}

.seo-detail-value {
  color: #2c3e50;
  font-weight: 600;
}

.price-current {
  color: #2196F3;
  font-size: 18px;
}

.in-stock {
  color: #4caf50;
}

.seo-price-old {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 8px;
}

.seo-discount {
  background: #ff5722;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
}

/* ----- GRID (advantages/cards) ----- */
.seo-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

/* ----- ADVANTAGE CARDS ----- */
.seo-advantage-item {
  background: #f0f8ff;
  border-left: 4px solid #2196F3;
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
}

.seo-advantage-item h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
}

.seo-advantage-item p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ----- STEPS ----- */
.seo-step-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e8e8e8;
}

.seo-step-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.seo-step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2196F3, #0d8bf2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.seo-step-content h3 {
  margin: 0 0 6px 0;
  font-size: 15px;
  color: #2c3e50;
}

.seo-step-content p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.seo-step-content a {
  color: #2196F3;
  text-decoration: none;
}

/* ----- SAFETY LIST ----- */
.seo-safety-block {
  margin: 25px 0;
}

.seo-safety-list {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 15px 0 0 0;
  padding-left: 20px;
}

.seo-safety-list li {
  margin-bottom: 8px;
}

/* ----- FAQ ACCORDION ----- */
.seo-faq-item {
  margin: 10px 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.seo-faq-question {
  padding: 18px 20px;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 16px;
  color: #2c3e50;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  position: relative;
  border: none;
  outline: none;
}

.seo-faq-question::-webkit-details-marker {
  display: none;
}

.seo-faq-question::before {
  content: "+";
  color: #2196F3;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}

.seo-faq-item[open] .seo-faq-question::before {
  content: "-";
}

.seo-faq-item[open] .seo-faq-question {
  background: #e8f4fd;
}

.seo-faq-answer {
  padding: 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid #e0e0e0;
}

.seo-faq-answer p {
  margin: 0;
}

/* ----- NOTE / WARNING BLOCKS ----- */
.seo-note {
  background: #e3f2fd;
  border-left: 4px solid #2196F3;
  border-radius: 0 8px 8px 0;
  padding: 15px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 15px 0;
}

.seo-warning {
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  border-radius: 0 8px 8px 0;
  padding: 15px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 15px 0;
}

/* ----- RELATED PRODUCTS TAGS ----- */
.seo-related-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.seo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e3f2fd;
  color: #1565c0;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 20px;
  text-decoration: none;
}

.seo-tag:hover {
  background: #bbdefb;
  text-decoration: none;
}

/* ----- BLUE CTA FINAL BLOCK ----- */
.seo-cta-final {
  background: linear-gradient(135deg, #2196F3, #0d8bf2);
  border-radius: 16px;
  padding: 35px 30px;
  margin: 30px 0;
  text-align: center;
  color: #fff;
}

.seo-cta-final-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 18px 0;
  color: #fff;
}

.seo-cta-final-details {
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-cta-final-item {
  white-space: nowrap;
}

.seo-cta-final-sep {
  opacity: 0.6;
}

.seo-cta-final-phone {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
}

.seo-cta-final-phone a {
  color: #fff;
  text-decoration: none;
}

.seo-cta-final-address {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.seo-cta-final-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.seo-cta-btn-primary {
  display: inline-block;
  background: #fff;
  color: #2196F3;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.seo-cta-btn-primary:hover {
  background: #f0f8ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.seo-cta-btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
}

.seo-cta-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ----- AEO BLOCK ----- */
.seo-aeo-block {
  margin: 25px 0;
}

/* ----- RESPONSIVE (mobile) ----- */
@media (max-width: 768px) {
  .seo-h2 {
    font-size: 18px;
  }

  .seo-cta-final {
    padding: 25px 20px;
  }

  .seo-cta-final-title {
    font-size: 18px;
  }

  .seo-cta-final-details {
    font-size: 13px;
  }

  .seo-cta-final-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .seo-cta-btn-primary,
  .seo-cta-btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }

  .seo-related-tags {
    gap: 8px;
  }

  .seo-tag {
    font-size: 13px;
    padding: 8px 12px;
  }

  .seo-step-item {
    gap: 12px;
  }

  .seo-grid-3 {
    grid-template-columns: 1fr;
  }

  .seo-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
/* ==================== BASE ==================== */
.seo-content {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 15px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.seo-h2 {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin: 30px 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #2196F3;
}

.seo-h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 10px 0;
}

.seo-intro {
  font-size: 15px;
  line-height: 1.7;
  margin: 15px 0;
}

/* ==================== DETAILS BLOCK ==================== */
.seo-details-block {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px 25px;
  margin: 20px 0;
}

.seo-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.seo-detail-row:last-child { border-bottom: none; }

.seo-detail-label { color: #666; font-weight: 500; }
.seo-detail-value { color: #2c3e50; font-weight: 600; }
.price-current { color: #2196F3; font-size: 18px; }
.in-stock { color: #4caf50; }

.seo-price-old {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 8px;
}

.seo-discount {
  background: #ff5722;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
}

/* ==================== ADVANTAGES ==================== */
.seo-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.seo-advantage-item {
  background: #f0f8ff;
  border-left: 4px solid #2196F3;
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
}

.seo-advantage-item h3 { margin: 0 0 8px 0; font-size: 16px; }
.seo-advantage-item p { margin: 0; font-size: 14px; color: #555; line-height: 1.6; }

/* ==================== STEPS ==================== */
.seo-step-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e8e8e8;
}

.seo-step-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.seo-step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2196F3, #0d8bf2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.seo-step-content h3 { margin: 0 0 6px 0; font-size: 15px; color: #2c3e50; }
.seo-step-content p { margin: 0; font-size: 14px; color: #666; line-height: 1.6; }
.seo-step-content a { color: #2196F3; text-decoration: none; }

/* ==================== SAFETY ==================== */
.seo-safety-block { margin: 25px 0; }

.seo-safety-list {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 15px 0 0 0;
  padding-left: 20px;
}

.seo-safety-list li { margin-bottom: 8px; }

/* ==================== FAQ ==================== */
.seo-faq-item {
  margin: 10px 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.seo-faq-question {
  padding: 18px 20px;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 16px;
  color: #2c3e50;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  position: relative;
  border: none;
  outline: none;
}

.seo-faq-question::-webkit-details-marker { display: none; }

.seo-faq-question::before {
  content: "+";
  color: #2196F3;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}

.seo-faq-item[open] .seo-faq-question::before { content: "-"; }
.seo-faq-item[open] .seo-faq-question { background: #e8f4fd; }

.seo-faq-answer {
  padding: 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid #e0e0e0;
}

.seo-faq-answer p { margin: 0; }

/* ==================== NOTE ==================== */
.seo-note {
  background: #e3f2fd;
  border-left: 4px solid #2196F3;
  border-radius: 0 8px 8px 0;
  padding: 15px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 15px 0;
}

/* ==================== RELATED TAGS ==================== */
.seo-related-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.seo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e3f2fd;
  color: #1565c0;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 20px;
  text-decoration: none;
}

/* ==================== BLUE CTA ==================== */
.seo-cta-final {
  background: linear-gradient(135deg, #2196F3, #0d8bf2);
  border-radius: 16px;
  padding: 35px 30px;
  margin: 30px 0;
  text-align: center;
  color: #fff;
}

.seo-cta-final-title { font-size: 22px; font-weight: 700; margin: 0 0 18px 0; }

.seo-cta-final-details {
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-cta-final-item { white-space: nowrap; }
.seo-cta-final-sep { opacity: 0.6; }

.seo-cta-final-phone { font-size: 16px; font-weight: 600; margin: 10px 0; }
.seo-cta-final-phone a { color: #fff; text-decoration: none; }
.seo-cta-final-address { font-size: 14px; opacity: 0.9; margin-bottom: 20px; }

.seo-cta-final-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.seo-cta-btn-primary {
  display: inline-block;
  background: #fff;
  color: #2196F3;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.seo-cta-btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .seo-h2 { font-size: 18px; }

  .seo-cta-final { padding: 25px 20px; }
  .seo-cta-final-title { font-size: 18px; }
  .seo-cta-final-details { font-size: 13px; }

  .seo-cta-final-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .seo-cta-btn-primary,
  .seo-cta-btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    box-sizing: border-box;
  }

  .seo-related-tags { gap: 8px; }
  .seo-tag { font-size: 13px; padding: 8px 12px; }
  .seo-step-item { gap: 12px; }
  .seo-grid-3 { grid-template-columns: 1fr; }

  .seo-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
}
