/* ==========================================
   MAKITA LADEGERÄTE KARTEN (TABS)
   ========================================== */
.charger-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  border: 1px solid #e2e8f0;
}

.cg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 8px;
}

.cg-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
}

.cg-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cg-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Badge Farben */
.badge-orange { color: #b54708; border: 1px solid #b54708; }
.badge-green  { color: #08746f; border: 1px solid #08746f; }
.badge-grey   { color: #64748b; background: #f8fafc; border: 1px solid #cbd5e1; }
.badge-red    { color: #b91c1c; border: 1px solid #b91c1c; background: #fef2f2; }

.cg-sub {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 30px;
  display: block;
}

.cg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-bottom: 35px;
}

.cg-stat {
  background: #f8fafc;
  padding: 15px;
  border-radius: 8px;
}

.stat-lbl {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 5px;
  display: block;
}

.stat-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  display: block;
}

.val-teal { color: #08746f; }
.val-red { color: #b91c1c; }

.cg-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 25px;
}

.cg-text strong {
  color: #1e293b;
  font-weight: 700;
}

/* Info Boxen (Sicherheit & Tipps) */
.cg-alert-red, .cg-alert-yellow {
  border-radius: 8px;
  padding: 20px 25px;
  margin: 30px 0;
}

.cg-alert-red {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.cg-alert-yellow {
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.cg-alert-title {
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.cg-alert-red .cg-alert-title { color: #b91c1c; }
.cg-alert-yellow .cg-alert-title { color: #b45309; }

/* Pro & Contra Listen */
.cg-pro-con {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.pc-title {
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.pro-title { color: #166534; }
.con-title { color: #b91c1c; }

.pc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #334155;
  line-height: 1.5;
}

.pc-icon {
  font-weight: bold;
  margin-top: 2px;
}

.pro-icon { color: #166534; }
.con-icon { color: #b91c1c; }

@media (max-width: 600px) {
  .cg-pro-con { grid-template-columns: 1fr; gap: 20px; }
  .charger-card { padding: 20px; }
}

/* Perfektes Werkzeug – responsive Vergleichstabellen */
.pw-table-wrap {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(30, 30, 30, 0.08);
}

.pw-comparison-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    font-family: 'Open Sans', sans-serif;
    background: #ffffff;
}

.pw-comparison-table th {
    background: #2C3E50;
    color: #ffffff;
    padding: 14px 16px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    vertical-align: top;
}

.pw-comparison-table th i {
    color: #0aa19a;
    margin-right: 8px;
}

.pw-comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5edf2;
    vertical-align: top;
    color: #334155;
    line-height: 1.55;
}

.pw-comparison-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.pw-comparison-table tbody tr:hover {
    background: #f0fdfd;
}

.pw-comparison-table .pw-highlight-row {
    background: #f0fdf4;
    border-left: 5px solid #0aa19a;
}

.pw-comparison-table td:first-child {
    width: 23%;
    color: #2C3E50;
}

.pw-comparison-table td:nth-child(2),
.pw-comparison-table td:nth-child(3) {
    width: 38.5%;
}

/* Mini-Kartenraster in Highlight-/Warning-Boxen */
.pw-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.pw-mini-card {
    background: #ffffff;
    border: 1px solid #dbe4ea;
    border-radius: 8px;
    padding: 14px 16px;
    box-shadow: 0 4px 14px rgba(30, 30, 30, 0.06);
}

.pw-mini-card-icon {
    display: inline-block !important;
    font-size: 2em !important;
    line-height: 1 !important;
    margin-bottom: 8px !important;
}

.pw-mini-card p {
    margin: 0 0 6px 0;
}

.pw-mini-card p:last-child {
    margin-bottom: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .pw-mini-grid {
        grid-template-columns: 1fr;
    }
}

