/*
 Theme Name:   Care4Paws Elementor Child
 Theme URI:    https://care4paws.de/
 Description:  Child-Theme für interaktive Angebotsseiten (Quote) mit Alpine.js & Elementor
 Author:       Care4Paws
 Version:      1.0.0
 Template:     hello-elementor
*/

/* === Angebotskarten (Quote Page) === */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

body {
  font-family: 'Inter', sans-serif;
}

.t-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.t-card h3 {
  margin-top: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1d3557;
}

.t-card .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e63946;
  margin: 0.5rem 0 1rem;
}

.t-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.t-card ul li {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: #333;
}

.t-card button {
  background: #457b9d;
  color: #fff;
  padding: 0.75rem 1rem;
  border: none;
  width: 100%;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.t-card button:hover {
  background: #1d3557;
}

.t-card button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.quote-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.tarif-vergleich {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.vergleich-zeile {
  display: table-row;
}
.vergleich-zelle {
  display: table-cell;
  padding: 0.75rem;
  border: 1px solid #ccc;
  vertical-align: middle;
}
.vergleich-label {
  font-weight: bold;
  background: #f8f8f8;
  width: 33%;
}
.btn-klein {
  background: #111;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.95rem;
}

.empfehlung-header,
.empfehlung-zelle {
  background-color: #e8f6ec; /* zartes Grün */
}

.vergleich-zelle.alternative-header {
  background-color: #f9f9f9;
  font-weight: bold;
  text-align: center;
}