.elementor-561 .elementor-element.elementor-element-5420d8ab{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-3854480e *//* General Article Styling */
article {
  font-family: 'Georgia', serif;
  line-height: 1.7;
  color: #000; /* Black text */
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Headings */
h1, h2, h3 {
  color: #000;
  font-family: 'Arial', sans-serif;
  margin-bottom: 15px;
}

h2 {
  border-bottom: 2px solid #EF4297;
  padding-bottom: 10px;
  font-size: 1.8em;
}

section {
  margin-bottom: 40px;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin: 20px 0;
  display: block;
}

.image-credit {
  font-size: 0.9em;
  color: #666;
  text-align: center;
  font-style: italic;
  margin-top: -10px;
}

/* Affiliate Disclosure */
#affiliate-disclosure {
  background: #FFF0F5;
  padding: 15px;
  border-left: 4px solid #EF4297;
  margin-bottom: 20px;
  font-size: 0.95em;
}

/* Pricing Section */
.pricing-container {
  display: grid;
  gap: 20px;
  margin: 20px 0;
}

.pricing-card {
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.pricing-card.recommended {
  border-color: #EF4297;
  background: #FFF0F5;
}

.price {
  font-size: 2.2em;
  color: #EF4297;
  font-weight: bold;
  margin: 10px 0;
}

/* ✅ List Styling (Scoped only to article) */
article ul {
  list-style-type: none;
  padding: 0;
  margin: 10px 0;
}

article ul li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  font-size: 1em;
}

article ul li::before {
  content: "✓";
  color: #EF4297; /* Pink ticks */
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Buttons */
.btn-buy,
.btn-review {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px 5px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
}

/* Buy Button */
.btn-buy {
  background: #EF4297;
  color: #fff;
}

.btn-buy:hover {
  background: #D63682;
  color: #fff;
}

/* Review Button */
.btn-review {
  background: transparent;
  color: #EF4297;
  border: 2px solid #EF4297;
}

.btn-review:hover {
  background: #EF4297;
  color: #fff;
}

/* Pros & Cons */
.pros-cons ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* FAQ */
details {
  margin: 10px 0;
  padding: 10px;
  background: #FFF0F5;
  border-radius: 8px;
}

summary {
  cursor: pointer;
  font-weight: bold;
  color: #EF4297;
}

/* Footer */
footer {
  background: #F9F9F9;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
  color: #666;
  border-top: 1px solid #E0E0E0;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 1.5em;
  }

  article {
    padding: 15px;
  }

  .pros-cons ul {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */