/* Reset / Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette (user requested) */
    --primary: #0274be;
    --primary-dark: #0266a0;
    --secondary: #d4af37; /* ersetzt #dbc3ad durch goldton */
    --bg: #fcfcf9;
    --text: #3a3a3a;
    --text-soft: #4b4f58;
    --border: #eaeaea;
    --footer: #1f1f1f;
    --footer-text: #f5f5f5;

    /* compatibility */
    --primary-color: var(--primary);
    --accent-color: var(--secondary);
    --text-dark: var(--text);
    --text-light: var(--text-soft);
    --bg-light: var(--bg);
    --bg-white: #ffffff;
    --bg-topbar: #E2CA78;
}

/* Base */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.65;
    background-color: var(--bg);
    font-size: 15px;
}

/* ===================================
   Top Bar
   =================================== */
.top-bar {
    background-color: var(--bg-topbar);
    border-bottom: 2px solid var(--border);
    padding: 20px 0;
}

.top-bar .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
}

.contact-info a {
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text);
    font-size: 16px;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary);
}

/* ===================================
   Main Header & Navigation
   =================================== */
.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo img {
    height: 60px;
    width: auto;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 25px 0;
    position: relative;
    transition: color 0.3s;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
}

/* when mobile menu is open */
.main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 20px;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url("../images/index-galerie/galerie-2.jpg"); /* dein neues Hero-Bild */
  background-size: cover;        /* skaliert das Bild proportional */
  background-position: center;   /* hält das Motiv zentriert */
  background-repeat: no-repeat;
  color: #fff;                   /* Text bleibt gut lesbar */
  text-align: center;
  padding: 180px 20px;           /* Höhe des Hero-Bereichs */
  position: relative;
}


.hero h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--bg-white);
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--primary-dark);
}

/* ===================================
   Page Header (for subpages)
   =================================== */
.page-header {
    padding: 40px 0;
    background: transparent;
    text-align: center;
}

.page-header h1 {
    color: var(--text);
    font-size: 32px;
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-soft);
    margin-bottom: 0;
}

/* ===================================
   Content Sections
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* services section background moved from inline */
.services-section {
    background-color: var(--bg);
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--text);
    margin-bottom: 50px;
    font-weight: 600;
}

/* Bereinigte text-content Definition: nur einmal sinnvoll definiert */
.text-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-soft);
}

.text-content p {
    margin-bottom: 20px;
}

/* ===================================
   Services Grid
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px 0;
    letter-spacing: 0.2px;
    position: relative;
    padding-bottom: 10px;
}

.service-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, rgba(219,195,173,1), var(--primary));
    border-radius: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: left center;
}

.service-card p {
    color: var(--text-soft);
    margin: 0;
    line-height: 1.6;
}

/* hide legacy .service-icon if present */
.service-icon { display: none; }

/* responsive tweak: center titles on small cards if desired */
@media (max-width: 720px) {
  .service-card { align-items: stretch; text-align: left; }
  .service-title { font-size: 1.05rem; }
}

/* ===================================
   Gallery Grid
   =================================== */
/* Bereinigte Gallery- und Text-Styles (duplikate/ungueltige Regeln entfernt) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    background-color: #fafafa;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===================================
   Team Section
   =================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  justify-items: center;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 10px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-member h3 {
  margin-top: 15px;
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 600;
}

.team-role {
  color: var(--text-soft);
  font-size: 1rem;
  margin-top: 5px;
}


/* ===================================
   Price Lists
   =================================== */
.price-category {
    margin-bottom: 30px;
    background: transparent;
}

.category-title {
    color: var(--text);
    font-size: 22px;
    margin-bottom: 15px;
}

.price-list {
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    
}

.service-name {
    color: var(--text);
}

.price-dots {
    flex: 1;
    margin: 0 8px;
    border-bottom: 1px dotted rgba(0,0,0,0.06);
}

.service-price {
    color: var(--text);
    font-weight: 600;
}

.price-note {
    margin-top: 20px;
    color: var(--text-soft);
}

.price-note p {
    color: var(--text-soft);
}

/* ===================================
   News/Blog Grid
   =================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.news-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image img {
    transform: scale(1.03);
}

.news-content {
    padding: 20px;
}

.news-date {
    display: inline-block;
    color: var(--text-soft);
    font-size: 13px;
    margin-bottom: 10px;
}

.news-content h2 {
    color: var(--text);
    font-size: 20px;
    margin: 8px 0 12px;
}

.news-content p {
    color: var(--text-soft);
    line-height: 1.6;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    color: var(--primary-dark);
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: var(--bg);
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background: var(--primary);
    color: var(--bg-white);
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
}

.submit-button:hover {
    background: var(--primary-dark);
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.info-icon {
    font-size: 24px;
    color: var(--primary);
    margin-top: 5px;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
}

.info-content p {
    color: var(--text-soft);
    line-height: 1.6;
}

/* ===================================
   Map Container
   =================================== */
.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map {
    width: 100%;
    height: 240px; /* mobilfreundlich */
    border-radius: 8px;
    overflow: hidden;
}

/* optional größere Karte auf Desktop */
@media (min-width: 768px) {
    .map { height: 320px; }
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--accent-color));
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-section .cta-button {
    background: white;
    color: var(--primary);
}

.cta-section .cta-button:hover {
    background: var(--text-dark);
    color: white;
}

.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.social-button:hover {
    background: var(--text-dark);
    color: white;
}

/* ===================================
   Legal Content (Impressum/Datenschutz)
   =================================== */
.legal-content {
    background: var(--bg-white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

.legal-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--footer);
    color: var(--footer-text);
    padding: 40px 0 20px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--footer-text);
}

.footer p,
.footer a {
    color: rgba(245,245,245,0.9); /* keep slightly muted footer text */
    line-height: 1.8;
    text-decoration: none;
}

.footer a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(245,245,245,0.7);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 921px) {
    .social-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 25px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* hide desktop nav; mobile nav relies on .open */
    .main-nav {
        display: none;
    }
}

@media (max-width: 544px) {
    .hero {
        padding: 80px 20px;
    }

    .section {
        padding: 50px 0;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* Öffnungszeiten / Salon block — three-column layout, responsive */
.opening-section .hours-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
  margin-top: 12px;
}

.opening-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opening-card address {
  font-style: normal;
  color: var(--text);
  line-height: 1.6;
}

.opening-hours dt {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.opening-hours dd {
  margin: 0 0 12px 0;
  color: var(--text-soft);
}

.opening-card .note {
  margin-top: 6px;
  font-size: 0.95rem;
 
}

.opening-card .btn-primary {
  margin-top: 8px;
  align-self: start;
}

/* small screens: stacked, compact spacing */
@media (max-width: 544px) {
  .opening-section { padding-top: 40px; padding-bottom: 40px; }
  .opening-card { padding: 16px; }
  .opening-hours dd { margin-bottom: 10px; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fafafa;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* Füllt den Rahmen proportional aus */
  aspect-ratio: attr(width) / attr(height);
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.blog-post {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg-white);
  border-radius: 8px;
}

.blog-hero {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.blog-title {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--text);
  text-align: center;
}

.blog-meta {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.blog-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--text);
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-content blockquote {
  border-left: 4px solid var(--accent-color);
  margin: 25px 0;
  padding-left: 20px;
  font-style: italic;
  color: var(--text-soft);
}

.btn-back {
  background-color: var(--primary);
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-back:hover {
  background-color: var(--primary-dark);
}

.blog-content {
  position: relative;
  padding-bottom: 50px; /* Platz schaffen unten */
  text-align: center; /* Zentriert Button */
}

.btn-back {
  margin-top: 30px;
  padding: 12px 36px;
  background-color: var(--primary);
  border: none;
  border-radius: 6px;
  color: var(--bg-white);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(2, 116, 190, 0.4); /* Farbe von --primary mit leichter Transparenz */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-back:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 15px rgba(2, 102, 160, 0.6); /* Farbe von --primary-dark mit Transparenz */
}

.gallery-section {
  margin-top: 40px;
}

.gallery-grid-blog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.gallery-grid-blog img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid-blog img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.text-with-image {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.text-content {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--text);
}

.image-container {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

/* Hintergrund für den Container in der About-Sektion */
#about .container {
    background-color: #D9E7FD;
    border-radius: 15px;
}

#about .container .text-content, .section-title {
    padding: 2rem;
}

/* Hintergrund für den Container in der Öffnungszeiten sektion */
#opening-hours .container {
    background-color: #B6D6CC;
    border-radius: 15px;
}

#opening-hours .container .opening-card {
    padding: 2rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  z-index: 9999;
  background: rgba(31,31,31,0.95);
  color: #fff;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.cookie-consent .cookie-inner {
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.cookie-consent p { margin: 0; flex: 1 1 60%; color: #fff; }
.cookie-actions { display:flex; gap:10px; }
.cookie-btn { padding: 10px 16px; border-radius:6px; border: none; cursor: pointer; background: rgba(255,255,255,0.12); color: #fff; }
.cookie-btn.primary { background: var(--primary); color: #fff; }
@media (max-width:720px) { .cookie-consent .cookie-inner { flex-direction: column; align-items:flex-start; } }

/* Cookie-Banner (kleines Window unten links) */
.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  width: calc(100% - 32px);
  background: #fff;
  color: #111;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 14px;
  z-index: 9999;
  display: flex;
  gap: 12px;
  align-items: center;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 320ms cubic-bezier(.2,.9,.3,1), opacity 320ms ease;
  font-size: 14px;
  line-height: 1.3;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p { margin: 0; flex: 1 1 auto; color: #222; }
.cookie-banner a { color: var(--primary, #b45c3a); text-decoration: underline; }

/* Buttons */
.cookie-banner button {
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}
.cookie-banner button#cookieDecline {
  background: transparent;
  color: #444;
  border: 1px solid rgba(0,0,0,0.06);
}
.cookie-banner button#cookieAccept {
  background: var(--primary, #b45c3a);
  color: #fff;
}

/* Kleine "Einstellungen" Schaltfläche um Banner wieder zu öffnen */
.cookie-settings {
  position: fixed;
  left: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary, #b45c3a);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  z-index: 9998;
  cursor: pointer;
  font-size: 18px;
  border: none;
}
.cookie-settings.hidden { display: none; }

/* Floating action button (Back-to-top style) */
.floating-action {
  position: fixed;
  right: 16px;               /* default: right side (back-to-top) */
  bottom: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary, #b45c3a);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  z-index: 9999;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

/* cookie-settings uses same visual style but sits left */
.cookie-settings {
  left: 16px;
  right: auto;
  position: fixed;
  bottom: 16px;
}

/* keep compatibility: hidden state */
.cookie-settings.hidden { display: none; }

/* if you also have a back-to-top button, give it class "floating-action to-top" */
.to-top { /* example usage for back-to-top */ }

/* ensure cookie banner (the small panel) doesn't overlap the button */
.cookie-banner {
  margin-left: 72px; /* leaves space for cookie-settings on small widths */
}
/* mobile tweak */
@media (max-width: 420px) {
  .floating-action { width: 44px; height: 44px; font-size: 18px; }
  .cookie-banner { margin-left: 0; bottom: 72px; }
}

/* Watercolor badges für .subcategory (Frauen: pastell-rosa, Männer: pastell-blau) */
.subcategory {
    position: relative;
    display: inline-block;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
    margin: 0 0 12px 0;
    z-index: 1;
}

/* 'Aquarell‑Wäsche' hinter der Überschrift */
.subcategory::before {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    top: -8px;
    bottom: -8px;
    z-index: -1;
    border-radius: 14px;
    filter: blur(8px) saturate(120%);
    opacity: 0.95;
    transform: rotate(-2deg);
}

/* Pastellrosa (Frauen) */
.subcategory.female::before {
    background: radial-gradient(120% 80% at 10% 20%,
      rgba(255,219,233,0.95) 0%,
      rgba(255,239,245,0.72) 36%,
      rgba(255,255,255,0) 72%);
}
.subcategory.female { color: #5a2740; }

/* Pastellblau (Männer) */
.subcategory.male::before {
    background: radial-gradient(120% 80% at 90% 30%,
      rgba(219,236,255,0.95) 0%,
      rgba(240,248,255,0.76) 36%,
      rgba(255,255,255,0) 72%);
}
.subcategory.male { color: #0b3b66; }

/* Optional: neutral fallback */
.subcategory:not(.female):not(.male)::before {
    background: linear-gradient(90deg, rgba(250,250,250,0.6), rgba(245,245,245,0.6));
    opacity: 0.8;
}

/* Responsive Anpassungen */
@media (max-width: 720px) {
    .subcategory { padding: 8px 12px; border-radius: 10px; }
    .subcategory::before { left: -8px; right: -8px; top: -6px; bottom: -6px; filter: blur(6px); }
}


