/* Start custom CSS for html, class: .elementor-element-9a7a836 *//* Product Research Chart Container */
.product-research-chart-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Chart Header */
.chart-header {
    text-align: center;
    margin-bottom: 30px;
}

.chart-header h3 {
    color: #1e293b;
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-header p {
    color: #64748b;
    font-size: 1em;
    margin: 0;
    font-weight: 400;
}

/* Chart Wrapper */
.chart-wrapper {
    position: relative;
    height: 400px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Canvas Styling */
canvas {
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.06));
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

/* Insight Cards */
.insight-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.insight-card:hover::before {
    transform: scaleX(1);
}

/* Insight Icons */
.insight-icon {
    font-size: 2em;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Insight Titles */
.insight-card h4 {
    color: #1e293b;
    font-size: 1.1em;
    font-weight: 650;
    margin: 0 0 10px 0;
}

/* Insight Text */
.insight-card p {
    color: #475569;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
}

/* Text Highlights */
.jungle-highlight {
    color: #10B981;
    font-weight: 700;
}

.helium-highlight {
    color: #F59E0B;
    font-weight: 700;
}

/* Card Specific Styling */
.elementor-50539 .elementor-element.elementor-element-9a7a836 .accuracy {
    border-left: 4px solid #10B981;
}

.elementor-50539 .elementor-element.elementor-element-9a7a836 .filtering {
    border-left: 4px solid #F59E0B;
}

.elementor-50539 .elementor-element.elementor-element-9a7a836 .tracking {
    border-left: 4px solid #6366f1;
}

.elementor-50539 .elementor-element.elementor-element-9a7a836 .opportunity {
    border-left: 4px solid #F59E0B;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-research-chart-container {
        padding: 20px 15px;
    }
    
    .chart-wrapper {
        height: 350px;
        padding: 20px;
    }
    
    .chart-header h2 {
        font-size: 1.5em;
    }
    
    .chart-header p {
        font-size: 0.9em;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .insight-card {
        padding: 18px;
    }
    
    .insight-icon {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .chart-wrapper {
        height: 300px;
        padding: 15px;
    }
    
    .insight-card h4 {
        font-size: 1em;
    }
    
    .insight-card p {
        font-size: 0.85em;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-388645b *//* ======= KEYWORD-RESEARCH WIDGET ================================== */
.keyword-research-chart-container {
  margin: 2rem auto;
  padding: 2rem 1.25rem;
  max-width: 960px;
  background: #f9fafb;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.55;
}

/* ---------- Header */
.keyword-research-chart-container .chart-header {
  text-align: center;
  margin-bottom: 2rem;
}
.keyword-research-chart-container .chart-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: .25rem;
}
.keyword-research-chart-container .chart-header p {
  font-size: .95rem;
  color: #6b7280;
}

/* ---------- Chart area */
.keyword-research-chart-container .chart-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  margin-bottom: 2rem;
}
.keyword-research-chart-container canvas {
  position: absolute;
  inset: 0;
}

/* ---------- Insight Grid: 2 columns x 2 rows */
.keyword-research-chart-container .insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 639px) {
  .keyword-research-chart-container .insights-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Cards */
.keyword-research-chart-container .insight-card {
  background: #ffffff;
  border-radius: .75rem;
  padding: 1.25rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.keyword-research-chart-container .insight-icon {
  font-size: 1.75rem;
  margin-bottom: .75rem;
}
.keyword-research-chart-container .insight-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: .35rem;
}
.keyword-research-chart-container .insight-card p {
  font-size: .9rem;
  color: #4b5563;
}

/* ---------- Highlights */
.keyword-research-chart-container .helium-highlight { color:#F59E0B; font-weight:600; }
.keyword-research-chart-container .amz-highlight    { color:#3B82F6; font-weight:600; }

/* ---------- Free Tool Note */
.keyword-research-chart-container .free-tool-note {
  margin-top: 2rem;
  padding: .85rem 1rem;
  border-left: 4px solid #3B82F6;
  background: #eef2ff;
  color: #4338ca;
  font-size: .9rem;
  border-radius: .75rem;
}
.keyword-research-chart-container .free-tool-note span {
  font-weight: 600;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b9e44f8 *//* ======= LISTING-BUILDER WIDGET ================================== */
.listing-builder-chart-container {
  margin: 2rem auto;
  padding: 2rem 1.25rem;
  max-width: 960px;
  background: #f9fafb;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.55;
}

/* ---------- Header */
.listing-builder-chart-container .chart-header {
  text-align: center;
  margin-bottom: 2rem;
}
.listing-builder-chart-container .chart-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: .25rem;
}
.listing-builder-chart-container .chart-header p {
  font-size: .95rem;
  color: #6b7280;
}

/* ---------- Chart area */
.listing-builder-chart-container .chart-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  margin-bottom: 2rem;
}
.listing-builder-chart-container canvas {
  position: absolute;
  inset: 0;
}

/* ---------- Insight Grid: 2 columns x 2 rows */
.listing-builder-chart-container .insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 639px) {
  .listing-builder-chart-container .insights-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Cards */
.listing-builder-chart-container .insight-card {
  background: #ffffff;
  border-radius: .75rem;
  padding: 1.25rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.listing-builder-chart-container .insight-icon {
  font-size: 1.75rem;
  margin-bottom: .75rem;
}
.listing-builder-chart-container .insight-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: .35rem;
}
.listing-builder-chart-container .insight-card p {
  font-size: .9rem;
  color: #4b5563;
}

/* ---------- Highlights */
.listing-builder-chart-container .helium-highlight { color:#F59E0B; font-weight:600; }
.listing-builder-chart-container .amz-highlight    { color:#3B82F6; font-weight:600; }/* End custom CSS */