/* ============================================
   BASIS & VARIABLEN
   ============================================ */

:root {
    /* Container & Abstände */
    --container-max: 1100px;
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;

    /* Farben */
    --border-color: #e5e7eb;
    --muted: #696666;
    --primary-color: #4da3ff;
    --background-light: #f8f8f8;
}

/* ============================================
   RESET & GRUNDLEGENDE ELEMENTE
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: #EAE9E7;
    background: linear-gradient(rgb(234, 233, 231) 76.47%, rgb(241, 148, 131));
    color: #000;
    font-family: Baghdad, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}


/* ============================================
   UTILITY & ACCESSIBILITY CLASSES
   ============================================ */

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:target {
    outline: none;
    outline-offset: 0;
    scroll-margin-top: 0;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   MEDIEN & INTERAKTIVE ELEMENTE
   ============================================ */

img, iframe, video {
    max-width: 100%;
    height: auto;
}

iframe {
    display: block;
    border: 0;
}

a {
    text-decoration: none;
    color: #000;
    transition: color .2s ease;
    font-size: 20px;
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-skip-ink: auto;
}

a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    background: #EAE9E7;
    border-bottom: 2px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    width: 100%;
    position: relative;
    z-index: 100;
}

.header-top {
    border-bottom: 1px solid #f0f0f0;
    background: #EAE9E7;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.title-row h1 {
    font-family: Kokonor, cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin: 0;
    text-align: center;
    letter-spacing: 1px;
}
.title-row a:hover{
    text-decoration: none;
}

.main-nav {
    background: #EAE9E7;
}

.nav-container {
    display: flex;
    justify-content: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-content > li {
    margin: 0;
    padding: 0;
}

.nav-content a {
    display: inline-block;
    padding: 1.2rem 0.5rem;
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    white-space: nowrap;
}

.nav-content a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-content a.active {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 3px solid var(--primary-color);
}

.nav-content a.active:focus-visible {
    outline: none;
}

.nav-content a:not(.active):hover::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    opacity: 0.7;
}

/* ============================================
   HAUPINHALT (MAIN CONTENT)
   ============================================ */

main {
    padding-top: 2rem;
}

/* Studio Übersicht */
.main-content-studio-uebersicht {
    padding-top: 2rem;
    justify-content: center;
}

.main-content-studio-uebersicht h4 {
    margin-top: 40px;
}

.main-content-studio-uebersicht article {
    padding: 0 100px;
}

.studio-banner {
    display: flex;
}

.studio-banner img {
    width: 50%;
}

/* Galerie */
.main-content-galerie {
    text-align: center;
    padding-top: 2rem;
}

/* Bewertungen */
#review-container {
    padding-top: 2rem;
    width: 100%;
    text-align: center;
}

/* Team Seite */
.team-grid {
    padding-top: 1rem;
}

/* Preisliste */
body.preisliste-seite .preise {
    padding-top: 1rem;
}

/* ============================================
   SEITENSPEZIFISCHE LAYOUTS
   ============================================ */

/* GALERIE */
.bilder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 70%;
    margin: 0 auto;
}

.bilder img,
.gallery-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item {
    position: relative;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: hidden;
}

.gallery-item img {
    display: block;
    height: 100%;
}

.bilder img:hover,
.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-play-badge {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    padding-left: 3px;
    z-index: 1;
}

/* BEWERTUNGEN */
.reviews-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: min(70%, var(--container-max));
    margin: auto;
    padding: 5px;
    align-items: start;
    gap: var(--space-4);
}

.review {
    max-width: 100%;
    text-align: left;
    margin: 0;
    padding: var(--space-3);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.review-text {
    font-style: italic;
    margin: 0 0 8px;
}

.review-name {
    font-family: "Arial Unicode MS", Arial, sans-serif;
}

.rating-stars {
    color: #d4af37;
}
/* ============================================
   RECHTLICHE SEITEN STYLES
   ============================================ */

body.rechtliche-seite main {
    padding-top: 2rem;
}

.rechtliche-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem 4rem;
}

.rechtlicher-block {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.rechtlicher-block h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.rechtlicher-block h3 {
    color: #333;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
}

.rechtliche-kategorie {
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.adresse-block,
.kontakt-block,
.rechtliche-details {
    margin-bottom: 1.5rem;
}

.datenschutz-abschnitt {
    margin-bottom: 2rem;
}

.datenschutz-abschnitt:last-child {
    margin-bottom: 0;
}

.rechte-liste {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.rechte-liste li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.external-link {
    word-break: break-all;
}


/* TEAM SEITE */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    width: min(90%, var(--container-max));
    margin: 2rem auto 4rem;
    padding: 1rem;
}

.page-header {
    text-align: center;
    padding: 2rem 1rem 1rem;
    margin-bottom: 1rem;
}

.page-header h2 {
    margin-bottom: var(--space-3);
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.5;
}

.team-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.team-media {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.team-media img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 0;
    background-color: transparent;
    box-shadow: 0 0 0 3px var(--border-color);
}

.team-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.team-role {
    font-size: .95rem;
    color: var(--muted);
    margin: 0;
}

.team-bio {
    font-size: .9rem;
    color: #444;
    line-height: 1.5;
    margin-top: .5rem;
}

.team-cta {
    background-color: var(--background-light);
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.team-cta p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.team-cta a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.team-cta .booking-link {
    margin-top: 1rem;
}

.team-cta-secondary {
    margin-top: 1rem;
    color: #555;
}

/*!* PREISLISTE *!*/
/*body.preisliste-seite .preise {*/
/*    max-width: 1000px;*/
/*    margin: 28px auto 80px;*/
/*    padding: 0 16px;*/
/*}*/

/*body.preisliste-seite .preise h3,*/
/*body.preisliste-seite .preise h4,*/
/*body.preisliste-seite .preise h5 {*/
/*    text-align: center;*/
/*    margin: 0 0 .75rem 0;*/
/*}*/

/*body.preisliste-seite main li {*/
/*    text-align: left;*/
/*}*/

/*body.preisliste-seite .preise ul {*/
/*    list-style: none;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

/*body.preisliste-seite .preise li {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr auto;*/
/*    column-gap: 12px;*/
/*    align-items: baseline;*/
/*    padding: 6px 0;*/
/*}*/

/*body.preisliste-seite .preise .preisliste-beschreibung-text {*/
/*    min-width: 0;*/
/*}*/

/*body.preisliste-seite .preise .preisliste-preis {*/
/*    text-align: right;*/
/*    white-space: nowrap;*/
/*    font-variant-numeric: tabular-nums;*/
/*    color: inherit;*/
/*}*/

/*body.preisliste-seite {*/
/*    --preis-indent: 1.1rem;*/
/*}*/

/*body.preisliste-seite .preise li > ul {*/
/*    grid-column: 1 / -1;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

/*body.preisliste-seite .preise ul > ul {*/
/*    grid-column: 1 / -1;*/
/*}*/

/*body.preisliste-seite .preise ul ul li {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr auto;*/
/*    column-gap: 12px;*/
/*    align-items: baseline;*/
/*}*/

/*body.preisliste-seite .preise ul ul .preisliste-beschreibung-text {*/
/*    position: relative;*/
/*    padding-left: var(--preis-indent);*/
/*}*/

/*body.preisliste-seite .preise ul ul .preisliste-beschreibung-text::before {*/
/*    content: "•";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: .2em;*/
/*    color: #6b7280;*/
/*    font-size: .9em;*/
/*}*/

/*body.preisliste-seite .preise ul > li + li {*/
/*    border-top: 1px dashed var(--border-color);*/
/*}*/

/*body.preisliste-seite .preise > div {*/
/*    margin: 1.25rem 0 2rem;*/
/*}*/
/* ============================================
   PREISLISTE GRID STYLES
   ============================================ */

.preise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: var(--container-max);
    margin: 2rem auto;
    padding: 0 1rem;
}

.preis-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.preis-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.preis-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--background-light);
}

.preis-card-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}

.preis-kategorie-icon {
    font-size: 1.5rem;
    opacity: 0.7;
}

.preis-card-subtitle {
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.4;
    border-left: 3px solid var(--border-color);
}

.preis-card-subtitle p {
    margin: 0;
}

/* Preis Liste */
.preis-liste {
    list-style: none;
    margin: 0;
    padding: 0;
}

.preis-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
    gap: 1rem;
}

.preis-item:hover {
    background-color: var(--background-light);
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 6px;
}

.preis-item:last-child {
    border-bottom: none;
}

.dienstleistung {
    flex: 1;
    color: #333;
    line-height: 1.4;
    font-size: 0.95rem;
}

.preis {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    white-space: nowrap;
    min-width: 80px;
    text-align: right;
}

.mit-zuschlag .preis {
    color: var(--muted);
    font-weight: 500;
    font-style: italic;
}

.preis-card-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--muted);
    border-left: 3px solid var(--border-color);
}

.preis-card-info.highlight {
    background: var(--background-light);
    border-left: 3px solid var(--primary-color);
}

.preis-card-info p {
    margin: 0.5rem 0;
}

.preis-card-info p:first-child {
    margin-top: 0;
}

.preis-card-info p:last-child {
    margin-bottom: 0;
}

/* Preis Optionen für Wimpern */
.preis-optionen {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.preis-option {
    flex: 1;
    min-width: 120px;
    background: var(--background-light);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.preis-option h4 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1rem;
    text-align: center;
    padding: 0.5rem;
    background: white;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.preis-option-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.preis-option-details:last-child {
    border-bottom: none;
}
/* Preis Tabelle Styles */
.preis-tabelle {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin: 1.5rem 0;
}

.preis-tabelle th {
    background: var(--background-light);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid var(--border-color);
    font-size: 1rem;
}

.preis-tabelle td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.preis-tabelle tbody tr:last-child td {
    border-bottom: none;
}

.preis-tabelle td:first-child {
    text-align: left;
    font-weight: 500;
    color: #333;
}

.preis-tabelle td:not(:first-child) {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Flyerartige Preisliste nach Salonvorlage */
.preisliste-seite .page-header {
    display: none;
}

.preis-poster {
    --poster-ink: #0f0c08;
    --poster-brown: #5b2d16;
    --poster-gold-dark: #9a6823;
    --poster-gold-mid: #d8b15d;
    --poster-gold-light: #f1ddac;
    width: min(1120px, calc(100% - 32px));
    margin: 44px auto 56px;
    padding: clamp(24px, 4vw, 52px);
    color: var(--poster-ink);
    background:
        radial-gradient(circle at 18% 8%, rgba(255,255,255,0.96), transparent 32%),
        radial-gradient(circle at 85% 20%, rgba(240,222,186,0.3), transparent 28%),
        linear-gradient(135deg, #fbf8ef 0%, #fffdf7 46%, #f7efe0 100%);
    border: 1px solid rgba(164, 117, 50, 0.28);
    box-shadow: 0 18px 48px rgba(45, 27, 12, 0.14);
}

.poster-title,
.poster-block h3,
.poster-block h4,
.poster-box h3,
.poster-box h4 {
    font-family: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.poster-title {
    display: inline-block;
    margin: 0 0 34px 8%;
    color: transparent;
    font-size: clamp(3.2rem, 6.5vw, 5.7rem);
    line-height: 0.85;
    background: linear-gradient(90deg, #9f6620 0%, #e9cb7a 40%, #b0772d 68%, #6f3a16 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 2px 3px 0 #120b06, 0 5px 0 rgba(91,45,22,0.55);
    border-bottom: 3px solid var(--poster-brown);
}

.poster-top {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 58px);
}

.poster-column,
.lash-prices {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.poster-block,
.poster-box {
    position: relative;
}

.poster-block h3,
.poster-block h4 {
    margin: 0 0 18px;
    color: var(--poster-brown);
    font-size: clamp(1.7rem, 2.6vw, 2.25rem);
    line-height: 1;
}

.gold-bar {
    display: block;
    width: 100%;
    padding: 12px 18px 10px;
    color: #060403 !important;
    text-align: center;
    background: linear-gradient(90deg, var(--poster-gold-dark), var(--poster-gold-light), var(--poster-gold-mid));
}

.section-line {
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-line::after {
    content: "";
    flex: 1;
    height: 2px;
    background: var(--poster-brown);
}

.poster-price-table {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) 118px 118px;
    gap: 13px 20px;
    align-items: center;
    font-size: clamp(1.25rem, 2.1vw, 1.95rem);
}

.poster-price-table > div:first-child,
.poster-list li::before {
    color: #000;
}

.poster-price-table .table-heading {
    font-family: Impact, "Arial Narrow", Arial, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
}

.poster-price-table > div:not(.table-heading) {
    font-weight: 700;
}

.nail-table > div:nth-child(3n+1):not(:first-child),
.compact-table > div:nth-child(3n+1) {
    position: relative;
    padding-left: 28px;
}

.nail-table > div:nth-child(3n+1):not(:first-child)::before,
.compact-table > div:nth-child(3n+1)::before {
    content: "•";
    position: absolute;
    left: 0;
}

.poster-price-table strong,
.poster-list strong {
    font-size: 1em;
    text-align: right;
    white-space: nowrap;
}

.nail-systems {
    min-height: 245px;
}

.nail-table {
    padding-right: 12px;
}

.compact-table {
    grid-template-columns: minmax(170px, 1fr) 118px 118px;
}

.poster-round {
    position: absolute;
    width: clamp(100px, 11vw, 130px);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(63, 34, 16, 0.18);
}

.poster-round-acryl {
    right: 36%;
    top: 82px;
}

.poster-round-feet {
    right: 13%;
    bottom: 10px;
}

.poster-round-design {
    right: 11%;
    top: 118px;
}

.poster-box {
    overflow: hidden;
    border: 1px solid rgba(154, 104, 35, 0.8);
    border-radius: 8px;
    background: rgba(255,255,255,0.45);
}

.poster-box h3,
.poster-box h4 {
    margin: 0;
    padding: 8px 16px 6px;
    color: #050403;
    text-align: center;
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    line-height: 1;
    background: linear-gradient(90deg, var(--poster-gold-dark), var(--poster-gold-light), var(--poster-gold-mid));
}

.poster-box .poster-list {
    padding: 16px 22px 18px;
}

.poster-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: clamp(1.22rem, 2vw, 1.9rem);
    font-weight: 700;
}

.poster-list li {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 18px;
    align-items: baseline;
    padding: 7px 0 7px 28px;
}

.poster-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 7px;
}

.poster-list small {
    font-size: 0.62em;
    font-weight: 700;
}

.poster-list em {
    font-style: normal;
    font-size: 0.76em;
}

.manicure-block .poster-list {
    font-size: clamp(1.15rem, 1.75vw, 1.75rem);
}

.design-block .poster-list {
    padding-right: 12px;
}

.design-block .poster-list li,
.lash-extra .poster-list li {
    grid-template-columns: 1fr auto auto;
}

.lash-section {
    margin-top: 50px;
}

.lash-title {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 42px;
    font-size: clamp(3rem, 6vw, 5.3rem);
    text-align: center;
}

.lash-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 190px;
    gap: 36px;
    align-items: start;
}

.lash-block h4 {
    font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.lash-list {
    font-size: clamp(1.1rem, 1.75vw, 1.65rem);
}

.lash-list .indent {
    display: block;
    padding-left: 34%;
}

.lash-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lash-images img {
    width: 100%;
    aspect-ratio: 1.15;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(63, 34, 16, 0.13);
}

.preisliste-seite .preis-info {
    margin-top: 0;
}

@media (max-width: 980px) {
    .poster-top,
    .lash-grid {
        grid-template-columns: 1fr;
    }

    .lash-images {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .poster-round-acryl,
    .poster-round-feet,
    .poster-round-design {
        position: static;
        display: block;
        margin: 16px auto 0;
    }

    .nail-systems {
        min-height: 0;
    }
}

@media (max-width: 680px) {
    .preis-poster {
        width: min(100% - 20px, 560px);
        padding: 22px 16px;
        margin-top: 24px;
    }

    .poster-title {
        margin-left: 0;
    }

    .poster-price-table,
    .compact-table {
        grid-template-columns: minmax(0, 1fr) 86px 86px;
        gap: 10px 12px;
        font-size: 1.12rem;
    }

    .poster-price-table .table-heading {
        font-size: 0.78rem;
    }

    .poster-list {
        font-size: 1.12rem;
    }

    .poster-list li {
        gap: 10px;
        padding-left: 22px;
    }

    .gold-bar {
        padding-inline: 10px;
    }

    .lash-images {
        grid-template-columns: 1fr;
    }

    .lash-images img {
        max-width: 240px;
        margin: 0 auto;
    }
}

/* Preisliste nach bereitgestelltem Aufbau */
.preis-gemini {
    --preis-gold: #c7a25b;
    --preis-gold-dark: #8d5b24;
    --preis-gold-light: #f0dfb3;
    --preis-brown: #633417;
    --preis-ink: #120d09;
    max-width: 950px;
    box-sizing: border-box;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.96), transparent 34%),
        radial-gradient(circle at 84% 17%, rgba(232, 205, 150, 0.26), transparent 30%),
        linear-gradient(135deg, #fdfbf7 0%, #fffefa 43%, #f3ecdf 100%);
    border-radius: 6px;
}

.preis-gemini *,
.preis-gemini *::before,
.preis-gemini *::after {
    box-sizing: border-box;
    min-width: 0;
}

.preis-poster-title,
.preis-lash-header h3,
.preis-category h3,
.preis-category h4,
.preis-gold-box h3,
.preis-gold-box h4 {
    font-family: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.preis-poster-title {
    display: inline-block;
    margin: 0 0 34px 8%;
    color: transparent;
    font-size: clamp(3.05rem, 6vw, 4.75rem);
    line-height: 0.85;
    background: linear-gradient(90deg, #8a561c 0%, #e7c879 42%, #ad742c 72%, #5f3214 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 2px 3px 0 #130b05, 0 5px 0 rgba(91, 45, 22, 0.46);
    border-bottom: 3px solid var(--preis-brown);
}

.preis-gemini-grid,
.preis-lash-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 60px);
}

.preis-gemini-column,
.preis-lash-prices {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.preis-category,
.preis-gold-box {
    position: relative;
}

.preis-category h3,
.preis-category h4 {
    margin: 0 0 18px;
    color: var(--preis-brown);
    font-size: clamp(1.32rem, 2.1vw, 1.65rem);
    line-height: 1;
}

.preis-gold-heading,
.preis-gold-box h3,
.preis-gold-box h4 {
    padding: 10px 16px 8px;
    color: #050403 !important;
    text-align: center;
    background: linear-gradient(90deg, var(--preis-gold-dark), var(--preis-gold-light), var(--preis-gold));
}

.preis-line-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.preis-line-heading::after {
    content: "";
    flex: 1;
    height: 2px;
    background: var(--preis-brown);
}

.preis-table {
    display: grid;
    align-items: center;
    color: var(--preis-ink);
    font-size: clamp(0.98rem, 1.5vw, 1.16rem);
    font-weight: 700;
}

.preis-table-three {
    grid-template-columns: minmax(112px, 1fr) 100px 78px;
    gap: 10px 12px;
}

.preis-table strong {
    font-family: Impact, "Arial Narrow", Arial, sans-serif;
    font-size: 0.64rem;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.preis-table b,
.preis-list b {
    color: var(--preis-ink);
    font-size: 1em;
    text-align: right;
    white-space: nowrap;
}

.preis-table span:nth-child(3n+1):not(:first-child) {
    position: relative;
    padding-left: 20px;
}

.preis-table span:nth-child(3n+1):not(:first-child)::before,
.preis-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

.preis-table span:nth-child(3n+1):not(:first-child)::before {
    top: 0;
}

.preis-with-circle {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(58px, 6vw, 82px);
    gap: 16px 18px;
    align-items: center;
    min-height: 0;
}

.preis-with-circle > h3 {
    grid-column: 1 / -1;
}

.preis-with-circle > .preis-table,
.preis-with-circle > .preis-list {
    grid-column: 1;
    min-width: 0;
}

.preis-circle {
    position: static;
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 0;
    background: transparent;
    box-shadow: 0 6px 16px rgba(63, 34, 16, 0.16);
    clip-path: circle(47% at 50% 50%);
}

.preis-circle-acryl {
    object-position: 52% 50%;
}

.preis-circle-feet {
    object-position: 50% 53%;
}

.preis-circle-design {
    object-position: 50% 49%;
}

.preis-gold-box {
    overflow: hidden;
    border: 1px solid rgba(154, 104, 35, 0.78);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.48);
}

.preis-gold-box h3,
.preis-gold-box h4 {
    margin: 0;
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    line-height: 1;
}

.preis-gold-box .preis-list {
    padding: 16px 22px 18px;
}

.preis-list {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--preis-ink);
    font-size: clamp(0.98rem, 1.5vw, 1.16rem);
    font-weight: 700;
}

.preis-list li {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    align-items: baseline;
    padding: 7px 0 7px 20px;
}

.preis-list li::before {
    top: 7px;
}

.preis-list small {
    font-size: 0.62em;
    font-weight: 700;
}

.preis-list em {
    color: var(--preis-ink);
    font-size: 0.78em;
    font-style: normal;
    text-align: right;
    white-space: nowrap;
}

.preis-list-extra {
    padding-right: 12px;
}

.preis-separated {
    margin-top: 8px;
    padding-top: 12px !important;
    border-top: 1px dashed rgba(197, 160, 89, 0.75);
}

.preis-lash-section {
    margin-top: 52px;
}

.preis-lash-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.preis-lash-header h3 {
    margin: 0;
    color: transparent;
    font-size: clamp(2.7rem, 5.5vw, 4.65rem);
    line-height: 0.9;
    text-align: center;
    background: linear-gradient(90deg, #8a561c 0%, #e7c879 44%, #a86e26 74%, #5b2d16 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 2px 3px 0 #130b05, 0 5px 0 rgba(91, 45, 22, 0.45);
    border-bottom: 3px solid var(--preis-brown);
}

.preis-lash-header span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 16px;
    color: #fff;
    font-family: Impact, "Arial Narrow", Arial, sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.75rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--preis-brown);
    border-radius: 4px;
    box-shadow: 0 8px 18px rgba(63, 34, 16, 0.16);
}

.preis-lash-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 190px;
    gap: 30px;
    align-items: start;
}

.preis-lash-list {
    font-size: clamp(0.88rem, 1.18vw, 1rem);
}

.preis-lash-list li {
    grid-template-columns: minmax(0, 1fr) 42px 48px 72px;
    gap: 8px;
}

.preis-lash-list s {
    color: #856044;
    text-decoration-thickness: 2px;
}

.preis-lash-list mark {
    color: var(--preis-gold-dark);
    font-size: 0.85em;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
    background: transparent;
}

.preis-lash-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.preis-lash-images img {
    width: 100%;
    aspect-ratio: 1.04;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(63, 34, 16, 0.13);
}

.preis-poster-note {
    margin: 34px 0 0;
    color: #5c4636;
    font-size: 0.98rem;
    text-align: center;
}

@media (max-width: 980px) {
    .preis-gemini-grid,
    .preis-lash-grid {
        grid-template-columns: 1fr;
    }

    .preis-lash-images {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 680px) {
    .preis-poster-title {
        margin-left: 0;
        font-size: clamp(2.85rem, 14vw, 4.2rem);
    }

    .preis-table-three {
        grid-template-columns: minmax(0, 1fr) 88px 74px;
        gap: 10px 10px;
        font-size: 0.92rem;
    }

    .preis-table strong {
        font-size: 0.58rem;
    }

    .preis-list {
        font-size: 0.98rem;
    }

    .preis-list li {
        gap: 8px;
        padding-left: 18px;
    }

    .preis-with-circle {
        grid-template-columns: 1fr;
    }

    .preis-with-circle > .preis-table,
    .preis-with-circle > .preis-list,
    .preis-circle {
        grid-column: 1;
    }

    .preis-circle {
        grid-row: auto;
        width: min(34vw, 120px);
        justify-self: center;
    }

    .preis-lash-list li {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .preis-lash-list em,
    .preis-lash-list mark {
        display: none;
    }

    .preis-lash-images {
        grid-template-columns: 1fr;
    }

    .preis-lash-images img {
        max-width: 260px;
        margin: 0 auto;
    }
}

@media (max-width: 430px) {
    .preis-poster.preis-gemini {
        width: calc(100% - 12px);
        padding: 18px 10px;
        margin-inline: auto;
    }

    .preis-poster-title {
        font-size: clamp(2.3rem, 15vw, 3.1rem);
        margin-bottom: 26px;
    }

    .preis-category h3,
    .preis-category h4 {
        font-size: 1.2rem;
    }

    .preis-gold-heading,
    .preis-gold-box h3,
    .preis-gold-box h4 {
        padding-inline: 8px;
        font-size: 1.7rem;
    }

    .preis-table-three {
        grid-template-columns: minmax(0, 1fr) 74px 62px;
        gap: 9px 6px;
        font-size: 0.86rem;
    }

    .preis-table strong {
        font-size: 0.5rem;
        letter-spacing: 0.02em;
    }

    .preis-list {
        font-size: 0.9rem;
    }

    .preis-list li {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 6px;
        padding-left: 16px;
    }

    .preis-circle {
        width: min(30vw, 96px);
    }

    .preis-lash-header {
        gap: 12px;
    }

    .preis-lash-header h3 {
        font-size: clamp(2.05rem, 13vw, 2.8rem);
    }

    .preis-lash-header span {
        min-height: 34px;
        padding: 6px 12px;
        font-size: 1rem;
    }

    .preis-lash-list {
        font-size: 0.86rem;
    }
}

/* Responsive für Mobile */
@media (max-width: 768px) {
    .preis-tabelle {
        font-size: 0.9rem;
    }

    .preis-tabelle th,
    .preis-tabelle td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .preis-tabelle {
        font-size: 0.85rem;
    }

    .preis-tabelle th,
    .preis-tabelle td {
        padding: 0.6rem 0.3rem;
    }
}

/* Info Bereich */
.preis-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--container-max);
    margin: 3rem auto;
    padding: 0 1rem;
}

.info-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.info-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.kontakt-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: #333333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.button:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

.booking-link,
.booking-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    background: #ffffff;
    color: #333333;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    padding: 0.78rem 1.35rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.booking-link:hover,
.booking-button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .preise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .preis-card {
        padding: 1.5rem;
    }

    .preis-card-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .preis-optionen {
        flex-direction: column;
        gap: 1rem;
    }

    .preis-option {
        min-width: auto;
    }

    .kontakt-links {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .booking-link,
    .booking-button {
        width: min(100%, 300px);
    }
}

@media (max-width: 480px) {
    .preis-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .preis {
        margin-left: 0;
        align-self: flex-start;
        text-align: left;
    }

    .dienstleistung {
        font-size: 0.9rem;
    }

    .preis-card-subtitle,
    .preis-card-info {
        font-size: 0.85rem;
    }
}
/* ============================================
   FOOTER & KONTAKT
   ============================================ */

.footer-simple {
    width: min(100%, var(--container-max));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
}

.footer-section {
    width: 100%;
    text-align: center;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.contact-item {
    margin: 1rem 0;
    font-size: 1rem;
}

.contact-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #666;
}

.contact-link {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    margin-top: 0.25rem;
}

.contact-link.booking-link {
    color: #333333;
    margin-top: 0.4rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 300px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    text-align: left;
}

.time {
    color: var(--muted);
    text-align: right;
}

.hours-item.closed .time {
    font-style: italic;
    color: #999;
}

.footer-map {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    border: none;
}

.footer {
    text-align: center;
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
    font-family: Kokonor, cursive;
}

.datenschutz {
    width: 100%;
    background-color: var(--muted);
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

.datenschutz p {
    margin: 0;
    color: white;
    font-size: 0.9rem;
}
/* ============================================
   FOOTER LINKS STYLES
   ============================================ */

.datenschutz {
    width: 100%;
    background-color: var(--muted);
    padding: 1rem;
    margin-top: 2rem;
    color: white;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: center; /* sorgt für zentrierten Inhalt */
    position: relative; /* erlaubt exaktes Positionieren der Social Media-Icons */
}

/* Social Media linksbündig */
.social-media {
    position: absolute;
    right: 1rem;
    margin: 0;
}

.social-media img {
    width: 30px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Info-Text zentriert */
.footer-info {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
}

.datenschutz a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.datenschutz a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* RESPONSIVE Anpassungen */
@media (max-width: 600px) {
    .footer-row {
        flex-direction: column;
        position: static;
        text-align: center;
        gap: 0.5rem;
    }

    .social-media {
        position: static;
        margin-bottom: 0.5rem;
    }

    .social-media img {
        width: 35px;
    }
}

/* ============================================
   GALERIE LIGHTBOX
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-img,
.lightbox-video {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-video {
    display: none;
    background: #000;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.mehr-button {
    display: block;
    margin: 40px auto;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(77, 163, 255, 0.3);
}

.mehr-button:hover {
    background-color: #6ab5ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 163, 255, 0.4);
}

.mehr-button:active {
    transform: translateY(0);
}

.mehr-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ============================================
   LAZY LOADING & PERFORMANCE
   ============================================ */

.lazy-image {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background: #f8f8f8;
    border-radius: 6px;
}

.lazy-image.loaded {
    opacity: 1;
}

.lightbox-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    z-index: 10002;
}

.lightbox-loading.active {
    display: block;
}

.lightbox-img.blur {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

.lightbox-img.sharp {
    filter: blur(0);
}

/* Performance Optimierungen */
.bilder img,
.gallery-item {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.bilder img:hover,
.gallery-item:hover {
    transform: scale(1.05) translateZ(0);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-img,
.lightbox-video {
    transform: translateZ(0);
    will-change: transform, opacity;
}

/* ============================================
   MODALS & OVERLAYS
   ============================================ */

.modal-backdrop[hidden] {
    display: none !important;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: grid;
    place-items: center;
    padding: 1rem;
    z-index: 9999;
}

.modal-window {
    width: min(940px, 100%);
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    display: flex;
    flex-direction: column;
    outline: none;
}

.modal-header,
.modal-footer {
    padding: 1rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    border-bottom: none;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    margin-left: auto;
}

.modal-body {
    padding: 1rem;
    overflow: auto;
}

.modal-body h3 {
    margin: 1rem 0 .25rem;
    font-size: 1.1rem;
}

.modal-body p,
.modal-body li {
    color: var(--muted);
}

.modal-body ul {
    margin: .25rem 0 1rem;
    padding-left: 1.2rem;
}

.privacy-updated {
    margin-top: 1rem;
    font-size: .9rem;
    color: #888;
}

.button {
    display: inline-block;
    padding: .6rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--background-light);
    cursor: pointer;
}

.button:hover {
    background: #f1f5f9;
}

.button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.9);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    font-size: .9rem;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner button {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-banner button:hover {
    background: #6ab5ff;
}

.site-legal {
    width: min(100%, var(--container-max));
    margin: 0.5rem auto 2rem;
    padding: 0 var(--space-4);
    text-align: center;
    color: #666;
}

.link-like {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: underline;
}

.link-like:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* HEADER RESPONSIVE */
@media (max-width: 900px) {
    .header-container {
        padding: 1.2rem 1.5rem;
    }

    .title-row h1 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-content {
        gap: 2rem;
    }

    .nav-content a {
        font-size: 1rem;
        padding: 1rem 0.3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .title-row h1 {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-content {
        gap: 1.5rem;
        justify-content: center;
    }

    .nav-content a {
        font-size: 0.95rem;
        padding: 0.8rem 0.2rem;
    }
}

@media (max-width: 600px) {
    .nav-content {
        gap: 1rem;
    }

    .nav-content a {
        font-size: 0.9rem;
        padding: 0.7rem 0.1rem;
    }

    .title-row h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .nav-content {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-content li {
        width: 100%;
        text-align: center;
    }

    .nav-content a {
        display: block;
        padding: 0.8rem 0.5rem;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .nav-content a.active {
        border-bottom: 3px solid var(--primary-color);
    }
}

/* STUDIOÜBERSICHT RESPONSIVE*/
@media (max-width: 480px) {
    .main-content-studio-uebersicht article {
        padding: 0 20px;
    }

}

/* GALERIE RESPONSIVE */
@media (max-width: 768px) {
    .bilder {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-width: 96%;
    }
}

@media (max-width: 480px) {
    .bilder {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

/* BEWERTUNGEN RESPONSIVE */
@media (max-width: 760px) {
    .reviews-row {
        grid-template-columns: 1fr;
        width: min(92%, var(--container-max));
    }
}

/* TEAM RESPONSIVE */
@media (max-width: 600px) {
    .team-media img {
        width: 120px;
        height: 120px;
    }

    .team-name {
        font-size: 1.1rem;
    }

    .team-bio {
        font-size: .85rem;
    }
}

/* LIGHTBOX RESPONSIVE */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        width: 50px;
        height: 50px;
        font-size: 35px;
        top: 15px;
        right: 15px;
    }

    .mehr-button {
        padding: 12px 30px;
        font-size: 16px;
        margin: 30px auto;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .mehr-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* FOOTER RESPONSIVE */
@media (max-width: 800px) {
    .footer-container {
        flex-direction: column;
        gap: var(--space-6);
    }

    footer .left-side,
    footer .middle-side,
    footer .right-side {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .middle-side li {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }

    .middle-side li div:last-child {
        justify-self: start;
        padding-left: .75rem;
    }
}

/* SIMPLE FOOTER RESPONSIVE */
@media (min-width: 768px) {
    .footer-simple {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-section {
        text-align: left;
    }

    .opening-hours {
        margin: 0;
        max-width: none;
    }

    .footer-map {
        height: 200px;
    }

    .footer-section:last-child {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .footer-simple {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
    }

    .footer-section:last-child {
        grid-column: auto;
    }

    .footer-map {
        height: 250px;
    }
}

@media (min-width: 1024px) {
    .footer-simple {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem;
        align-items: start;
    }

    .footer-section:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-section:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
        margin-top: 0;
    }

    .footer-section:nth-child(3) {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-section:nth-child(4) {
        grid-column: 3;
        grid-row: 1;
    }

    .opening-hours {
        margin: 0;
        max-width: none;
    }

    .footer-map {
        height: 300px;
    }

    .footer-section:nth-child(1),
    .footer-section:nth-child(2) {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .footer-simple {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .footer-section:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-section:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-section:nth-child(3) {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .footer-section:nth-child(4) {
        grid-column: 3 / span 2;
        grid-row: 1 / span 2;
    }

    .footer-map {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .footer-simple {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .contact-link {
        font-size: 1rem;
    }

    .hours-item {
        font-size: 0.9rem;
    }

    .footer-map {
        height: 200px;
    }

    .footer {
        font-size: 1.5rem;
        margin: 1.5rem 0 0.5rem 0;
    }
}

/* TABLET OPTIMIERUNG */
@media (max-width: 1100px) {
    .header-container {
        padding: 1rem;
    }
}
/* Responsive Design für rechtliche Seiten */
@media (max-width: 768px) {
    .rechtlicher-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .rechtliche-content {
        padding: 0 0.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .rechtlicher-block {
        padding: 1rem;
    }

    .rechtlicher-block h2 {
        font-size: 1.3rem;
    }
}
