/* =========================================
   Café Spot - Premium Stylesheet v2
   ========================================= */

:root {
    --gold: #D4AF37;           /* Accent Gold/Beige */
    --gold-hover: #B5952F;

    --bg-dark: #121212;        /* Main dark background */
    --bg-card: rgba(30, 30, 30, 0.6); /* Glassmorphism card */

    --text-light: #F5F5EC;     /* Main text */
    --text-muted: #A0A0A0;     /* Muted text */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.15);

    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --nav-height: 90px;
    --bottom-nav-height: 70px;
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Luxury Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0A0A0A;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold), var(--gold-hover));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Scroll Reveal Base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* FIX: Fallback falls JS nicht lädt oder IntersectionObserver fehlschlägt */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        visibility: visible;
        transition: none;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-smooth);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.relative-container {
    position: relative;
    z-index: 2;
}

/* =========================================
   Typography & Headers
   ========================================= */
h1, h2, h3, h4, .font-playfair {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.subtitle-gold {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 500;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: all var(--transition-smooth);
    border-radius: 2px; /* edlerer, kantiger Look */
}

.btn-gold {
    background-color: var(--gold);
    color: #121212;
    box-shadow: var(--shadow-glow);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-full {
    width: 100%;
    margin-top: 24px;
}

/* =========================================
   Brand Logo (Premium Extrahiert)
   ========================================= */
.brand-logo {
    display: block;
    border-radius: 50%;
    object-fit: contain;
    transition: all var(--transition-smooth);
}

.logo-link:hover .brand-logo {
    transform: scale(1.05);
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

/* Header Logo */
.top-logo { width: 80px; height: 80px; }

/* Menu Logo Größer */
.menu-logo { width: 100px; height: 100px; }

/* Footer Logo */
.footer-logo { width: 80px; height: 80px; margin: 0 auto 20px auto; }

/* =========================================
   Premium CSS Golden Badge Logo
   ========================================= */
.css-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    position: relative;
    font-family: var(--font-body);
    transition: all var(--transition-smooth);
    user-select: none;
    line-height: 1;
}

/* Base Sizing mapping from old classes */
.css-logo.top-logo { width: 80px; height: 80px; font-size: 8px; }
.css-logo.menu-logo { width: 100px; height: 100px; font-size: 10px; }
.css-logo.footer-logo { width: 80px; height: 80px; font-size: 8px; margin: 0 auto 20px auto; }

/* Inner Ring only */
.css-logo::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    /* Single clean, sharp outer border exactly like requested */
    border: 0.2em solid var(--gold);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 9em; height: 9em;
}

/* Inner content alignment - scaled up */
.logo-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center; width: 100%;
    margin-top: -0.2em;
}

.logo-text-top {
    font-weight: 600; font-size: 2.6em; letter-spacing: 0.05em;
    margin-bottom: 0.08em;
    color: #FFFFFF; /* Sharp, opaque, without blur */
}

.logo-divider {
    width: 6.8em; height: 0.15em;
    background: var(--gold);
    margin: 0.15em 0;
}

.logo-text-bottom {
    font-weight: 500; font-size: 1.5em; letter-spacing: 0.35em;
    margin-top: 0.15em; margin-left: 0.35em; /* Balance letter-spacing */
    color: var(--gold);
}

/* Location pin icon scaled up */
.logo-pin-wrap {
    margin-top: 0.4em; position: relative;
    display: flex; flex-direction: column; align-items: center;
}
.logo-pin-wrap i {
    font-size: 1.6em; color: var(--gold);
    transform: translateY(0.15em); z-index: 2;
}

.logo-pin-rings {
    width: 1.4em; height: 0.45em;
    border: 0.15em solid var(--gold);
    border-radius: 50%; position: relative;
}
.logo-pin-rings::after {
    content: ''; position: absolute;
    width: 2.2em; height: 0.8em;
    border: 0.15em solid var(--gold);
    border-radius: 50%;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}


/* =========================================
   Top Navigation
   ========================================= */
.top-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 100;
    transition: all var(--transition-smooth);
    background: transparent; /* Transparent start */
}

/* Scroll status class added by JS */
.top-nav.scrolled {
    background-color: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-left {
    display: flex;
    align-items: center;
}

.desktop-nav {
    display: flex;
    gap: 40px;
}

.desktop-nav a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    position: relative;
    padding: 8px 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0%; height: 1px;
    background-color: var(--gold);
    transition: all var(--transition-smooth);
    transform: translateX(-50%);
}

.desktop-nav a:hover::after, .desktop-nav a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.1rem;
    opacity: 0.7;
}

.social-icons a:hover {
    color: var(--gold);
    opacity: 1;
}

.menu-toggle {
    display: none; /* hidden on desktop */
    background: none; border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

/* =========================================
   Mobile Off-Canvas Menu
   ========================================= */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1; visibility: visible;
}

.mobile-menu {
    position: fixed; top: 0; right: 0; /* Changed to slide from right since button is right */
    width: 300px; height: 100%;
    background-color: var(--bg-dark);
    border-left: 1px solid rgba(255,255,255,0.05);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    padding: 25px 20px; /* Reduziert von 40px/30px für bessere Passform auf iPhone 14 */
    display: flex; flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.close-menu {
    position: absolute; top: 30px; right: 30px;
    background: none; border: none;
    font-size: 1.8rem; color: var(--text-light);
    cursor: pointer;
}

.menu-logo-container {
    margin-top: 20px; margin-bottom: 25px; /* Kompakter: Reduziert von 40px */
    display: flex; justify-content: center;
}

.mobile-nav-links {
    display: flex; flex-direction: column; gap: 12px; /* Enger: Reduziert von 16px */
}

.nav-item-mobile {
    display: flex; align-items: center; gap: 15px;
    font-family: var(--font-heading);
    font-size: 1.4rem; /* Kleiner: Reduziert von 1.6rem */
    color: var(--text-muted);
    transition: color 0.3s;
}

.nav-item-mobile i {
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.nav-item-mobile.active, .nav-item-mobile:hover {
    color: var(--text-light);
}
.nav-item-mobile.active i, .nav-item-mobile:hover i {
    opacity: 1; transform: translateX(0);
}

.mobile-socials {
    margin-top: auto;
    display: flex; justify-content: center; gap: 30px;
    padding-top: 20px; /* Kompakter: Reduziert von 30px */
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-socials i {
    font-size: 1.2rem; color: var(--text-light);
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('img/prager-platz.png?auto=format&fit=crop&q=80&w=2000');
    background-size: cover; background-position: center;
    z-index: 0;
    background-attachment: fixed; /* Parallax effect */
}

/* FIX: background-attachment:fixed funktioniert nicht auf iOS/Android */
@media (max-width: 1024px) {
    .hero-bg {
        background-attachment: scroll !important;
    }
}

/* Vignette for dramatic dark look */
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(18,18,18,0.4) 0%, rgba(18,18,18,0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 800px; padding: 0 24px;
}

.hero-subtitle {
    font-family: var(--font-body);
    color: var(--gold);
    text-transform: uppercase; letter-spacing: 4px;
    font-size: 0.9rem; margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 5rem;
    font-style: italic;
    margin-bottom: 24px;
}

.hero-content h1 span {
    font-style: normal; color: var(--gold);
}

.hero-divider {
    width: 60px; height: 2px;
    background-color: var(--gold);
    margin: 0 auto 30px auto;
}

.hero-text {
    font-size: 1.1rem; color: #D0D0D0;
    margin-bottom: 40px; font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto;
}

/* =========================================
   Café Section
   ========================================= */
.caffee-section {
    padding: 120px 0;
    width: 100%;
    background-image: url('img/sec.png?auto=format&fit=crop&q=80&w=2000');
    background-attachment: fixed; background-size: cover;
    position: relative;
    overflow: hidden; /* Für Mobile Clipping des img-frames */
}

.caffee-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(18,18,18,0.85);
}

.caffee-grid {
    position: relative;
    z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: stretch;
}

.caffee-text-box {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex; flex-direction: column; justify-content: center;
    height: 100%;
}

.caffee-text-box h2 {
    font-size: 3rem; margin-bottom: 24px;
}

.text-divider {
    width: 40px; height: 2px; background: var(--gold); margin-bottom: 30px;
}

.caffee-text-box p {
    color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem;
}

.features {
    display: flex; gap: 30px; margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-heading); font-size: 1.2rem;
    color: var(--text-light);
}

.feature-item i {
    color: var(--gold);
}

/* Image with frame overlap effect */
.caffee-image-box {
    position: relative;
    height: 100%;
}

.premium-img {
    width: 100%; height: 100%; object-fit: cover;
    z-index: 2; position: relative;
    border-radius: 4px; /* kantig edel */
}

.img-frame {
    position: absolute; top: -20px; right: -20px; width: 100%; height: 100%;
    border: 1px solid var(--gold); z-index: 1;
}

/* =========================================
   Galerie (Polaroid / Tab Style)
   ========================================= */
.galerie-section {
    padding: 100px 0 160px; /* Mehr Platz unten für Schatten */
    background-image: url('img/sec.png?auto=format&fit=crop&q=80&w=2000');
    background-attachment: fixed; background-size: cover;
    position: relative;
    /* FIX: overflow:hidden entfernt - hat Polaroid-Schatten auf Mobile abgeschnitten */
    /* overflow: hidden; */
}

.galerie-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(18,18,18,0.85); /* Dunkler, diffuser Überzug */
}

.gallery-showcase {
    display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
    margin-top: 60px; padding: 20px;
}

/* The Polaroid Tab Effect */
.polaroid-tab {
    background: #FAFAFA; /* Weißer Fotokarton */
    padding: 12px 12px 40px 12px; /* Dicker Rand unten für den Polaroid-Look */
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    width: calc(25% - 20px);
    margin-bottom: 30px;
    position: relative;
}

.polaroid-tab::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.1); pointer-events: none;
}

.polaroid-tab:hover {
    transform: rotate(0deg) translateY(-20px) scale(1.05) !important;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.gallery-item {
    width: 100%; height: 320px; min-height: 200px; overflow: hidden;
    position: relative;
    display: block; /* FIX: Sicherstellt dass der Container nicht kollabiert */
}

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; /* FIX: entfernt inline-Lücke unter dem Bild */
    transition: transform 0.5s ease;
    filter: sepia(0.2) contrast(1.1); /* leichter Vintage-Look */
}

.polaroid-tab:hover .gallery-item img {
    transform: scale(1.05); filter: sepia(0) contrast(1);
}

/* =========================================
   Kontakt Section & Glassmorphism
   ========================================= */
.kontakt-section {
    padding: 60px 0 120px; /* Reduziertes Top-Padding, um Überschrift hochzuziehen */
    background-image: url('img/sec.png?auto=format&fit=crop&q=80&w=2000');
    background-attachment: fixed; background-size: cover;
    position: relative;
}

/* Dark overlay for contact bg */
.kontakt-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(18,18,18,0.65); /* Heller gemacht von 0.9 auf 0.65 */
}

/* Spezifische Aufhellung für die Kontakt-Überschrift, damit sie strahlt */
.kontakt-section .section-header h2 {
    color: #FFFFFF;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.kontakt-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; position: relative; z-index: 2;
}

/* Glassmorphism Boxes */
.info-glass-box, .form-glass-box {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.info-glass-box h3, .form-glass-box h3 {
    font-size: 2rem; margin-bottom: 30px; border-bottom: 1px solid rgba(212,175,55,0.3); padding-bottom: 15px;
}

.detail-row {
    display: flex; gap: 20px; align-items: flex-start; margin-bottom: 24px;
}

.gold-icon {
    color: var(--gold); font-size: 1.5rem; margin-top: 4px;
}

.detail-row strong {
    font-family: var(--font-heading); font-size: 1.2rem; display: block; margin-bottom: 4px;
    font-weight: 400; color: var(--gold);
}
.detail-row p { color: var(--text-muted); }

/* Premium Forms */
.premium-form {
    display: flex; flex-direction: column; gap: 24px;
}

.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 15px 5px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    position: relative;
    transition: border-color var(--transition-smooth);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

/* Premium Spam Check */
.spam-check-premium {
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    padding: 20px;
    margin-top: 10px;
}

.spam-label {
    display: flex; align-items: center; gap: 10px; color: var(--gold); margin-bottom: 15px;
    font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 1px;
}

.spam-check-premium input {
    background: rgba(0,0,0,0.2); border-bottom: 1px solid rgba(212, 175, 55, 0.5); padding: 10px; text-align: center;
}
.spam-check-premium input:focus { border-bottom-color: var(--gold); }

.error-msg {
    color: #ff4757; font-size: 0.85rem; margin-top: 8px; display: none;
}
.spam-check-premium.error .error-msg { display: block; }
.spam-check-premium.error input { border-bottom-color: #ff4757; }


/* =========================================
   Footer (Neu hinzugefügt)
   ========================================= */
.site-footer {
    background-color: #0A0A0A;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-logo-box {
    margin-bottom: 20px;
}

.footer-impressum {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-impressum p {
    margin-bottom: 8px;
}

.footer-tax {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 10px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-sub-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.app-download-wrapper {
    margin-top: 5px;
}

.btn-app-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #3DDC84; /* Android Green */
    color: #121212;
    padding: 14px 28px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all var(--transition-smooth);
    border: 2px solid #3DDC84;
}

.btn-app-download i {
    font-size: 1.35rem;
}

.btn-app-download:hover {
    background-color: transparent;
    color: #3DDC84;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(61, 220, 132, 0.3);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 1.1rem;
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
}

.footer-social-icons a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
    border-color: var(--gold);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-col {
        align-items: center;
        text-align: center;
    }
    .footer-links a:hover {
        padding-left: 0;
    }
}


/* =========================================
   Mobile Bottom App Navigation
   ========================================= */
.bottom-app-bar {
    display: none; /* Desktop verbergen */
    position: fixed; bottom: 0; left: 0; width: 100%;
    height: var(--bottom-nav-height);
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 200;
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    color: var(--text-muted); font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
}

.bottom-nav-item i {
    font-size: 1.3rem; transition: transform var(--transition-smooth), color var(--transition-smooth);
}

.bottom-nav-item.active, .bottom-nav-item:hover { color: var(--gold); }
.bottom-nav-item.active i { transform: translateY(-3px); }


/* =========================================
   Lightbox (Photo Frame Style)
   ========================================= */
.lightbox-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.4s ease;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }

.lightbox-content {
    max-width: 90%; max-height: 90vh;
}

.photo-frame {
    background: #FFF; padding: 15px 15px 50px 15px; /* Wie ein großes Polaroid */
    border-radius: 2px;
    transform: scale(0.9); transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lightbox-overlay.active .photo-frame { transform: scale(1); }

.photo-frame img { max-height: 75vh; }

.lightbox-close {
    position: fixed; /* fixed statt absolute - immer sichtbar, unabhängig vom Inhalt */
    top: 20px; 
    right: 20px;
    z-index: 10001; /* Höher als die Lightbox selbst (9999) */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7); /* Deutlich sichtbarer dunkler Kreis */
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white; 
    font-size: 1.4rem; 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-smooth), background var(--transition-smooth), color var(--transition-smooth);
    backdrop-filter: blur(5px);
}
.lightbox-close:hover { 
    transform: rotate(90deg) scale(1.1); 
    color: var(--gold); 
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--gold);
}

/* Success Popup */
.success-popup {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(10px);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s ease;
}

.success-popup.active { opacity: 1; visibility: visible; }

.popup-glass {
    background: var(--bg-card); border: 1px solid rgba(212,175,55,0.3);
    padding: 50px; text-align: center; max-width: 450px; width: 90%;
    transform: scale(0.95); transition: transform 0.4s ease;
    box-shadow: var(--shadow-glow);
}
.success-popup.active .popup-glass { transform: scale(1); }

.check-icon-gold {
    width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--gold);
    color: var(--gold); font-size: 2rem; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px auto;
}
.popup-glass h3 { font-size: 2rem; margin-bottom: 12px; }
.popup-glass p { color: var(--text-muted); margin-bottom: 30px; font-family: var(--font-body); }

/* =========================================
   Responsive Design
   ========================================= */

@media (max-width: 992px) {
    .caffee-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-content h1 { font-size: 4rem; }
    .gallery-showcase .polaroid-tab { width: calc(50% - 20px); }
    .top-nav { padding: 0 24px; }

    /* FIX: Apple iOS Safari / In-App WebView Bug for Parallax Backgrounds */
    .hero-bg,
    .caffee-section,
    .galerie-section,
    .kontakt-section {
        background-attachment: scroll !important;
        background-position: center center !important;
    }
}

@media (max-width: 768px) {
    .caffee-section, .kontakt-section, .galerie-section {
        padding: 60px 0 40px; /* Einheitliche Reduzierung der Abstände */
    }

    .top-nav {
        /* Mobile: Logo Links, Menu Rechts */
        justify-content: space-between;
    }

    .desktop-nav, .social-icons, .top-nav::after { display: none; }
    .menu-toggle { display: block; }

    /* FIX Hero Section Mobile Overlap & Text Size */
    .hero-section {
        padding-top: 100px; /* Verhindert Überlappung mit dem Logo in der Nav-Bar */
        height: auto;
        min-height: 100vh;
        padding-bottom: 80px;
    }
    
    .hero-content {
        margin-top: 20px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero-content h1 { 
        font-size: 2.4rem; /* Deutlich kleiner, damit der lange Text gut passt */
        line-height: 1.3;
        margin-bottom: 20px;
    }

    /* FIX: Galerie Polaroid auf Mobile - volle Breite, korrekte Höhe */
    .gallery-showcase .polaroid-tab {
        width: 100%;
        margin: 0 0 30px 0;
        transform: none !important; /* FIX: Rotation auf Mobile deaktivieren */
    }
    .gallery-showcase .polaroid-tab:hover {
        transform: translateY(-10px) scale(1.02) !important; /* Sanfterer Hover auf Mobile */
    }
    .gallery-item {
        height: 220px; /* FIX: Explizite Höhe auf Mobile damit Bilder sichtbar sind */
    }

    /* FIX Caffee Section Mobile Overflow / Abgehackt */
    .caffee-text-box { padding: 30px 20px; }
    .caffee-text-box h2 { font-size: 2.2rem; hyphens: auto; word-break: break-word; }
    .features { flex-direction: column; gap: 15px; }
    .premium-img { height: auto; max-height: 350px; }
    .img-frame { right: 0; top: 0; width: 100%; height: 100%; } /* Uniformer Rahmen für alle Sektionen */

    /* FIX: Kontakt-Grid auf Mobile einspaltig */
    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-glass-box, .form-glass-box { padding: 30px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 20px;}

    .bottom-app-bar { display: flex; justify-content: space-around; }

    /* FIX: gallery-showcase Padding auf Mobile */
    .gallery-showcase {
        padding: 10px 5px;
        gap: 15px;
    }
}

/* =========================================
   APK Installation Popup (Custom)
   ========================================= */
#apkpop {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(10px);
    align-items: center; justify-content: center; padding: 20px;
}
#apkpop.on { display: flex; }

.apk-panel { display: none; }
.apk-panel.active { display: block; }

.apkbox {
    background: linear-gradient(160deg, #1A1A1A, #0A0A0A);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px; padding: 40px 30px;
    max-width: 500px; width: 100%; position: relative;
    max-height: 90vh; overflow-y: auto;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}
.apkbox::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), #FFF, var(--gold));
    border-radius: 20px 20px 0 0;
}
.apkx {
    position: absolute; top: 15px; right: 15px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    color: #AAA; width: 35px; height: 35px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.apkbox h3 { font-family: var(--font-heading); font-size: 1.5rem; color: #FFF; text-align: center; margin-bottom: 5px; }
.apkbox .asub { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 25px; }
.apktag { font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 15px; }
.apklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }
.apklist li { display: flex; gap: 15px; align-items: flex-start; background: rgba(255,255,255,0.03); padding: 12px; border-radius: 10px; font-size: 0.9rem; color: #CCC; }
.apkn { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--gold); color: #000; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
.apkhr { height: 1px; background: rgba(255,255,255,0.1); margin: 20px 0; }
.apkchk { background: rgba(212, 175, 55, 0.05); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 12px; padding: 15px; margin-bottom: 20px; }
.apkchk label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 0.85rem; color: #BBB; line-height: 1.5; }
.apkchk input { margin-top: 3px; accent-color: var(--gold); }
.apkchk a { color: var(--gold); text-decoration: underline; }
.apkbtn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    width: 100%; padding: 16px; border-radius: 10px; border: none; cursor: pointer;
    background: #3DDC84; color: #000; font-size: 1rem; font-weight: 800;
    box-shadow: 0 10px 30px rgba(61, 220, 132, 0.2); transition: all 0.3s;
    text-decoration: none;
}
.apkbtn.off { background: #444; color: #888; cursor: not-allowed; box-shadow: none; pointer-events: none; }
.apkbtn small { display: block; font-size: 0.7rem; opacity: 0.7; }

/* =========================================
   Cookie Consent Overlay (Custom)
   ========================================= */
#cookie-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(15px);
    display: none; align-items: center; justify-content: center; padding: 20px;
    opacity: 1; transition: opacity 0.4s ease;
}
#cookie-overlay.show { display: flex; }

.ck-box {
    background: #1A1A1A; border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px; padding: 40px; max-width: 480px; width: 100%;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8); position: relative;
    overflow: hidden;
}
.ck-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gold); border-radius: 24px 24px 0 0;
}
.ck-panel { display: none; }
.ck-panel.active { display: block; }
.ck-logo { font-size: 2.5rem; display: block; text-align: center; margin-bottom: 15px; }
.ck-title { font-family: var(--font-heading); font-size: 1.5rem; color: #FFF; text-align: center; margin-bottom: 10px; }
.ck-sub { font-size: 0.9rem; color: var(--text-muted); text-align: center; margin-bottom: 30px; line-height: 1.6; }
.ck-sub a { color: var(--gold); text-decoration: underline; cursor: pointer; }
.ck-btns { display: flex; flex-direction: column; gap: 12px; }
.ck-btn-accept {
    padding: 16px; border-radius: 12px; border: none; background: var(--gold);
    color: #000; font-weight: 800; cursor: pointer; transition: all 0.3s;
    font-family: var(--font-body);
}
.ck-btn-accept:hover { transform: translateY(-2px); opacity: 0.9; }
.ck-btn-decline {
    padding: 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1);
    background: transparent; color: #AAA; cursor: pointer; font-family: var(--font-body);
}
.ck-links { display: flex; gap: 10px; margin-top: 20px; }
.ck-link-btn {
    flex: 1; padding: 12px; border-radius: 10px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); color: #CCC; font-size: 0.8rem; cursor: pointer;
    font-family: var(--font-body); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ck-back {
    background: none; border: none; color: var(--gold); cursor: pointer;
    font-size: 0.9rem; margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
    font-family: var(--font-body);
}
.ck-privacy-content { max-height: 300px; overflow-y: auto; padding-right: 10px; font-size: 0.85rem; color: #BBB; line-height: 1.7; }
.ck-privacy-content h4 { color: #FFF; margin: 15px 0 5px; font-family: var(--font-heading); }
.ck-option { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ck-option-info h4 { font-size: 0.95rem; color: #DDD; }
.ck-option-info p { font-size: 0.75rem; color: #777; }
.ck-option input[type="checkbox"] { accent-color: var(--gold); }
.ck-save { width: 100%; margin-top: 20px; padding: 14px; border-radius: 10px; border: none; background: var(--gold); color: #000; font-weight: 800; cursor: pointer; font-family: var(--font-body); }

/* Form Alerts (PHP Integrated) */
.form-alert {
    padding: 15px; border-radius: 4px; margin-bottom: 25px; display: flex; gap: 12px; align-items: center; font-size: 0.9rem;
}
.form-alert.success { background: rgba(61, 220, 132, 0.1); border: 1px solid rgba(61, 220, 132, 0.3); color: #3DDC84; }
.form-alert.error { background: rgba(255, 71, 87, 0.1); border: 1px solid rgba(255, 71, 87, 0.3); color: #ff4757; }

@media (max-width: 500px) {
    .apkbox, .ck-box { padding: 30px 20px; border-radius: 12px; }
    .apkx { top: 10px; right: 10px; }
    .ck-title { font-size: 1.2rem; }
    .ck-links { gap: 6px; } /* Etwas kleinerer Abstand */
    .ck-link-btn {
        font-size: 0.65rem; /* Schriftgröße reduziert für Symmetrie */
        padding: 10px 5px;   /* Padding verringert */
        gap: 4px;            /* Abstand zum Icon verringert */
    }
}

/* =========================================
   Angebot Sektion
   ========================================= */
.angebot-section {
    padding: 140px 0 60px;
    background: #000;
}

.angebot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch; /* EXAKTE AUSRICHTUNG: Beide Seiten schließen unten bündig ab */
}

/* Linke Seite: Mosaic Gallery */
.mosaic-parent {
    position: relative;
    width: 100%;
    height: 100%; /* Nimmt die volle Höhe des Grids ein */
}

.mosaic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr); /* 6 Bilder in 3 Reihen für perfekte Symmetrie */
    gap: 15px;
    height: 100%;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background: #000; /* Rein schwarz für Fokus auf das PNG-Brett */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Zeigt das gesamte Brett, nichts wird abgeschnitten */
    object-position: center;
    filter: brightness(1.0) contrast(1.05); /* Natürlicher Look für Ihre PNGs */
    transition: all 0.5s ease;
}

.mosaic-item:hover img {
    transform: scale(1.05); /* Dezenter Zoom, der nichts abschneidet */
}

.mosaic-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    color: var(--gold);
    padding: 4px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Spotlight Interaction */
.mosaic-grid:hover .mosaic-item:not(:hover) {
    opacity: 0.5;
    filter: blur(2px) grayscale(0.5);
}

.mosaic-item:hover {
    border-color: var(--gold);
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.mosaic-item:hover img {
    filter: brightness(1);
    transform: scale(1.05);
}

.mosaic-item:hover .mosaic-badge {
    opacity: 1;
    background: var(--gold);
    color: #000;
}

/* Rechte Seite: Original Textbox (Wiederhergestellt) */
.angebot-text-box {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.7), rgba(15, 15, 15, 0.9));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 60px 50px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset 0 0 15px rgba(212, 175, 55, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
}

.angebot-text-box h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: #FFF;
    margin-bottom: 30px;
}

.angebot-main-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.price-badge {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gold);
    color: #000;
    border-radius: 4px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-glow);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

/* Golden Shine Animation */
.price-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 4s infinite ease-in-out;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.price-val {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.angebot-footnote {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .angebot-section {
        padding: 60px 0 40px; /* Reduzierter Abstand oben/unten */
    }
    .angebot-grid {
        grid-template-columns: 1fr;
        gap: 30px; /* Kleinerer Abstand zwischen Bild und Text */
    }
    /* Caffee Image Box */
    .caffee-image-box {
        height: auto;
        width: fit-content;
        margin: 0 auto 30px auto;
    }
    .caffee-image-box .img-frame {
        display: block;
        top: -12px; right: -12px; bottom: -12px; left: -12px;
        width: auto; height: auto;
        border: 1px solid var(--gold);
        z-index: 1;
        pointer-events: none;
    }

    /* Precision Mosaic Mobile Optimization (iPhone 14) */
    .angebot-grid {
        grid-template-columns: 1fr;
        gap: 30px; /* Platz für die Boxen */
        justify-items: center; /* Zentriert die Grid-Items horizontal */
        width: 100%;
        margin: 0 auto;
    }

    .mosaic-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        gap: 12px;
    }

    .mosaic-item { cursor: zoom-in; }

    .angebot-text-box {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        padding: 40px 30px;
        text-align: center;
    }

    .angebot-text-box h2 {
        font-size: 2.5rem;
    }
}

/* =========================================
   Mobile Optimization (Safari Fixes)
   ========================================= */
@media (max-width: 1024px) {
    .hero-section, .caffee-section, .angebot-section {
        background-attachment: scroll !important;
    }
}

/* Logo "t" spacing refinement */
.logo-text-bottom {
    text-transform: uppercase;
    font-weight: 700;
}

/* =========================================
   iPhone 14 / Small Mobile (max 430px)
   ========================================= */
@media (max-width: 430px) {
    /* Hero */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.25;
    }
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
    .hero-text {
        font-size: 0.95rem;
    }

    /* Touch Targets min 44px */
    .btn, .btn-gold, .btn-full,
    .ck-btn-accept, .ck-btn-decline, .ck-save,
    .apkbtn {
        min-height: 44px;
        padding: 14px 24px;
    }

    /* Bottom App Bar */
    .bottom-app-bar {
        height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0px));
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
    .bottom-nav-item {
        min-width: 44px;
        min-height: 44px;
        font-size: 0.6rem;
    }
    .bottom-nav-item i {
        font-size: 1.2rem;
    }

    /* Bottom spacer */
    .bottom-spacer {
        height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0px) + 20px);
    }

    /* Navigation */
    .top-nav {
        height: 70px;
        padding: 0 16px;
    }
    .css-logo.top-logo {
        width: 60px;
        height: 60px;
        font-size: 6px;
    }
    .menu-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Sections compact */
    .caffee-section, .galerie-section, .kontakt-section, .angebot-section {
        padding: 50px 0 30px;
    }
    .section-header {
        margin-bottom: 30px;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Caffee */
    .caffee-text-box {
        padding: 24px 16px;
    }
    .caffee-text-box h2 {
        font-size: 1.8rem;
    }
    .caffee-text-box p {
        font-size: 0.95rem;
    }
    .feature-item {
        font-size: 1rem;
    }

    /* Gallery */
    .gallery-showcase {
        padding: 5px 0;
        gap: 12px;
    }
    .gallery-showcase .polaroid-tab {
        width: 100%;
        padding: 8px 8px 30px 8px;
        margin-bottom: 15px;
    }
    .gallery-item {
        height: 200px;
    }

    /* Angebot */
    .mosaic-grid {
        gap: 8px;
    }
    .angebot-text-box {
        padding: 30px 20px;
    }
    .angebot-text-box h2 {
        font-size: 2rem;
    }
    .angebot-main-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Kontakt */
    .info-glass-box, .form-glass-box {
        padding: 24px 16px;
    }
    .info-glass-box h3, .form-glass-box h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .form-group input, .form-group textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 12px 5px;
    }
    .spam-check-premium {
        padding: 14px;
    }

    /* Footer */
    .site-footer {
        padding: 50px 0 30px;
    }
    .footer-grid {
        gap: 30px;
    }

    /* Mobile Menu */
    .mobile-menu {
        width: 280px;
        padding: 20px 16px;
    }
    .nav-item-mobile {
        font-size: 1.2rem;
        min-height: 44px;
    }

    /* Popups */
    .apkbox, .ck-box {
        padding: 24px 16px;
        border-radius: 16px;
    }
    .apkbox h3, .ck-title {
        font-size: 1.15rem;
    }
    .popup-glass {
        padding: 30px 20px;
    }

    /* Container */
    .container {
        padding: 0 16px;
    }
}