:root{
  --bg:#f8fafc;
  --surface:#ffffff;
  --primary:#2563eb;
  --text:#0f172a;
  --muted:#64748b;
  --border:#e5e7eb;
  --radius:14px;
}

*{box-sizing:border-box;margin:0;padding:0}

body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  font-size: .95rem;
}

a{text-decoration:none;color:inherit}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 16px;
}

/* HEADER */
header{
  background:#fff;
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}

.logo{
  font-weight:800;
  font-size:1.4rem;
  color:var(--primary);
}

nav{position:relative}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  padding:6px 10px;
  border-radius:8px;
}

.nav-list{
  list-style:none;
  display:flex;
  gap:18px;
}

.nav-list a{
  color:var(--muted);
  font-size:.9rem;
}

.nav-list .cta{
  padding:6px 12px;
  border:1px solid var(--border);
  border-radius:999px;
}

.nav-list .login{
  color:var(--primary);
  font-weight:600;
}

@media(max-width:800px){
  .nav-toggle{display:block}
  .nav-list{
    display:none;
    position:absolute;
    right:0;
    top:44px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:14px;
    flex-direction:column;
    gap:14px;
  }
  .nav-list.show{display:flex}
}

/* BREADCRUMB */
.breadcrumb{
  font-size:.85rem;
  color:var(--muted);
  margin:16px 0 8px;
}

.breadcrumb span{
  margin:0 6px;
}

/* PROFILE HEADER */
.profile-header{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  display:flex;
  gap:20px;
  align-items:center;
  margin-top:8px;
}

.logo-box{
  width:100px;
  height:100px;
  border-radius:12px;
  background:linear-gradient(135deg,#2563eb,#38bdf8);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:1.4rem;
}

/* CONTENT */
.content{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  margin:32px 0;
}

@media(min-width:900px){
  .content{grid-template-columns:2fr 1fr}
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
}

.card h2{margin-bottom:12px}

/* TAGS */
.tags{display:flex;flex-wrap:wrap;gap:8px}
.tag{
  background:#eef2ff;
  color:var(--primary);
  padding:5px 12px;
  border-radius:999px;
  font-size:.8rem;
}

/* MAP */
.map{
  width:100%;
  height:220px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid var(--border);
  margin-top:12px;
}

/* INFO */
.info-list{display:grid;gap:8px;font-size:.9rem;border-bottom:1px solid var(--border)}
.info-list div{display:flex;justify-content:space-between;color:var(--muted)}
.info-list li{list-style-type:none}

.hours div{display:flex;justify-content:space-between;color:var(--muted);font-size:.9rem}

/* RATING */
.rating-box{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid var(--border);
  font-size:.9rem;
}

.rating-question{
  margin:14px 0 10px;
  font-weight:600;
}

.rating-options{
  display:flex;
  gap:12px;
}

.rating-option{
  flex:1;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px;
  background:#f9fafb;
  text-align:center;
  cursor:pointer;
}

.rating-option:hover{background:#eef2ff}

/* SIMILAR */
.similar-grid{
  display:grid;
  gap:16px;
  margin-bottom:48px;
}

@media(min-width:700px){
  .similar-grid{grid-template-columns:repeat(3,1fr)}
}

.similar-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px;
  text-align:center;
}

.similar-logo{
  width:100px;
  height:100px;
  border-radius:12px;
  background:linear-gradient(135deg,#2563eb,#38bdf8);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  margin:0 auto 10px;
}

/* SEARCH BOX */
.search-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  margin-bottom:32px;
}

.search-form{
  display:grid;
  gap:14px;
}

@media(min-width:700px){
  .search-form{
    grid-template-columns:2fr 1.5fr auto;
    align-items:center;
  }
}

.search-form input{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:10px;
  font-size:.9rem;
}

.search-form input:focus{
  outline:none;
  border-color:var(--primary);
}

.search-form button{
  padding:12px 20px;
  border:none;
  background:var(--primary);
  color:#fff;
  border-radius:10px;
  font-size:.9rem;
  font-weight:600;
  cursor:pointer;
  transition:.15s ease;
}

.search-form button:hover{
  opacity:.9;
}

/* FOOTER */
.site-footer{
  background:#f1f5f9;
  border-top:1px solid var(--border);
  margin-top:64px;
}

.footer-grid{
  display:grid;
  gap:32px;
  padding:36px 0;
}

@media(min-width:900px){
  .footer-grid{
    grid-template-columns:1fr 1fr 1fr;
  }
}
@media(max-width:1200px){
  .footer-grid{
    margin-left: 25px;
	margin-right: 25px;
  }
}

.footer-box h2{
  font-size:.95rem;
  margin-bottom:12px;
}

.footer-box ul{
  list-style:none;
  padding:0;
}

.footer-box ul li{
  margin-bottom:8px;
}

.footer-box a{
  font-size:.85rem;
  color:var(--muted);
}

.footer-box a:hover{
  color:var(--primary);
}

.footer-box p{
  font-size:.85rem;
  color:var(--muted);
  line-height:1.6;
}

.footer-note{
  margin-top:10px;
}

.footer-bottom{
  border-top:1px solid var(--border);
  padding:12px 0;
  font-size:.8rem;
  color:var(--muted);
}
.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.footer-socials{
  display:flex;
  gap:14px;
}

/* Mobile */
@media(max-width:600px){
  .footer-bottom-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}
iframe {
    border: none;
    width: 100%;
    height: 220px;
}


.bewertung_icon {
  height:60px
}




#anbieter-tags {
  margin-top: 30px;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
}

#anbieter-tags h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.bewertung-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.bewertung-item:last-child {
  border-bottom: none;
}

.bewertung-header {
  display: flex;
  align-items: center;
}

.bewertung-icon {
  font-size: 1.5em;
  margin-right: 10px;
}

.bewertung-name {
  font-weight: bold;
  margin-right: 15px;
  font-size: 1em;
}

.bewertung-text {
  margin-top: 5px;
  font-size: 1em;
  color: #555;
}
.mittig {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
/* Modal-Stil */
.modal {
  display: none; /* Anfangs ausgeblendet */
  position: fixed; /* Bleibt auf dem Bildschirm */
  z-index: 1; /* Vor anderen Elementen */
  left: 0;
  top: 0;
  width: 100%; /* Vollbild */
  height: 100%; /* Vollbild */
  overflow: auto; /* Verhindert Scrollen */
  background-color: rgba(0, 0, 0, 0.4); /* Dunkler Hintergrund */
}

/* Modal-Inhalt */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Breite des Modals */
  max-width: 500px; /* Maximale Breite */
}

/* Styling für die Textfelder und Textarea */
.modal input[type="text"], textarea {
  width: 100%;  /* Volle Breite der Eingabefelder */
  padding: 10px;  /* Innenabstand für bessere Lesbarkeit */
  margin-bottom: 15px;  /* Abstand nach unten */
  border: 1px solid #ccc;  /* Heller Rand */
  border-radius: 5px;  /* Abgerundete Ecken */
  box-sizing: border-box;  /* Verhindert, dass Padding und Border die Gesamtbreite überschreiten */
  font-size: 16px;  /* Erhöht die Lesbarkeit */
}

/* Fokussierung auf Eingabefelder */
.modal input[type="text"]:focus, textarea:focus {
  border-color: #4CAF50;  /* Grüner Rand bei Fokussierung */
  outline: none;  /* Verhindert den Standard-Rahmen von Fokus */
  box-shadow: 0 0 8px rgba(72, 168, 95, 0.5);  /* Grüner Schlagschatten beim Fokussieren */
}

/* Styling für die Textarea */
.modal textarea {
  resize: vertical;  /* Nur vertikale Größenänderung erlauben */
  min-height: 100px;  /* Mindestens 100px Höhe */
}

/* Styling für die "Abschicken"-Schaltfläche */
.modal-footer button {
  padding: 10px 20px;
  background-color: #28a745;  /* Grüner Hintergrund */
  color: white;  /* Weiße Schrift */
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.modal-footer button:hover {
  background-color: #218838;  /* Dunklerer Grünton beim Hover */
}

/* Modal-Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Sicherstellen, dass die Schaltflächen oben ausgerichtet sind */
  position: relative; /* Positionierung des Schließen-Buttons */
}

.close {
  position: absolute; /* Absolute Positionierung innerhalb des Modal-Headers */
  top: 10px; /* Abstand von oben */
  right: 10px; /* Abstand von der rechten Seite */
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Modal-Body */
.modal-body {
  margin-top: 10px;
}

/* Footer */
.modal-footer {
  margin-top: 20px;
  text-align: right;
}
.bewertungueberschrift_super {
  font-weight:bold;color:#45B64C
}
.bewertungueberschrift_okay {
  font-weight:bold;color:#E9B815
}
.bewertungueberschrift_schlecht {
  font-weight:bold;color:#E61D25
}
.bewertungen_icon {
  height:60px
}
.f_text {
 font-weight:bold
}


details {
  border: 1px solid #ddd;
  margin-bottom: 3px;
  padding: 5px;
}

summary {
  cursor: pointer;
  font-weight: bold;
  list-style: none;
}

summary::before {
  content: "+ ";
}

details[open] summary::before {
  content: "− ";
}
.open {
  color: #2e7d32;
}

.closing-soon {
  color: #ef6c00;
}

.closed {
  color: #c62828;
}