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

:root {
    --primary: #1a1a2e;
    --accent: #c9a961;
    --light: #ffffff;
    --gray: #f5f5f5;
    --dark: #0f0f1e;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    /* Fallback for browsers that don't support backdrop-filter */
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent), #b8984f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.brand-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--light);
}

.brand-text span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--accent), #b8984f);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.2);
    color: var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #b8984f);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

/* Services */
.services {
    padding: 100px 20px;
    background: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    max-width: 700px;
    margin: 1rem auto 0;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.label {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--light);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #b8984f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card p {
    color: rgba(255,255,255,0.7);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
}

/* Portfolio */
.portfolio {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.2);
}

.portfolio-item:hover .click-hint {
    opacity: 1;
}

.portfolio-images {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-after {
    z-index: 1;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    top: 1rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    pointer-events: none;
}

.ba-label-before {
    left: 1rem;
    background: rgba(201, 169, 97, 0.95);
    color: #1a1a2e;
}

.ba-label-after {
    right: 1rem;
    background: rgba(26, 26, 46, 0.95);
    color: #ffffff;
}

.ba-info {
    padding: 1.5rem;
    background: rgba(0,0,0,0.3);
}

.ba-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #c9a961;
    font-family: 'Playfair Display', serif;
}

.ba-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.click-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(201, 169, 97, 0.95);
    color: #1a1a2e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

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

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-content {
    max-width: 1400px;
    width: 90%;
    position: relative;
}

.lightbox-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    overflow-y: auto;
    max-height: 70vh;
}

.lightbox-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.lightbox-image-container img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    background: rgba(255,255,255,0.05);
}

.lightbox-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(201, 169, 97, 0.95);
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lightbox-image-container:last-child .lightbox-label {
    background: rgba(26, 26, 46, 0.95);
    color: #ffffff;
}

.lightbox-info {
    text-align: center;
    color: white;
}

.lightbox-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.lightbox-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 169, 97, 0.9);
    color: #1a1a2e;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-weight: bold;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-navigation-mobile {
    display: none;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.lightbox-nav-btn-mobile {
    background: rgba(201,169,97,0.95);
    border: none;
    color: #1a1a2e;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.lightbox-nav-btn-mobile:active {
    transform: scale(0.95);
}

@media (max-width: 1200px) {
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .lightbox-images {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-height: none;
        overflow-y: visible;
    }

    .lightbox-image-container img {
        height: 28vh;
        max-height: 28vh;
        object-fit: cover;
    }

    /* Hide desktop navigation on mobile */
    .lightbox-prev,
    .lightbox-next {
        display: none !important;
    }

    /* Show mobile navigation */
    .lightbox-navigation-mobile {
        display: flex;
    }

    .lightbox-close {
        font-size: 40px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .lightbox-images {
        max-height: none;
        overflow-y: visible;
    }

    .lightbox-image-container img {
        height: 25vh;
        max-height: 25vh;
        object-fit: cover;
    }

    .lightbox-nav-btn-mobile {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Contact */
.contact {
    padding: 100px 20px;
    background: var(--dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--light);
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), #b8984f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--light);
}

.info-item span {
    color: rgba(255,255,255,0.7);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255,255,255,0.05);
    color: var(--light);
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 3rem 20px;
    text-align: center;
}

.footer a {
    color: var(--accent);
    text-decoration: none;
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 99999;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .nav-cta-btn {
        display: block;
        text-align: center;
        margin-top: 1.5rem;
        width: 100%;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
        z-index: 999999;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile Only */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.6rem 15px;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .brand-text h3 {
        font-size: 1.1rem;
    }

    .brand-text span {
        font-size: 0.7rem;
    }

    .nav-menu {
        width: 280px;
        padding: 5rem 2rem 2rem;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }
}

/* Legal Links - Mobile Responsive */
.legal-links a {
    transition: opacity 0.3s;
}

.legal-links a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .legal-links {
        font-size: 0.85rem !important;
        line-height: 1.8;
    }

    .legal-links a {
        display: inline-block;
        padding: 5px 0;
    }
}

/* Glaswerk Section */
.glaswerk-section {
    padding: 6rem 0;
    background: var(--dark);
}

.glaswerk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.glaswerk-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.glaswerk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.08);
}

.glaswerk-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), #b8984f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.glaswerk-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.glaswerk-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.glaswerk-features {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    margin: 0 auto;
}

.glaswerk-features li {
    padding: 0.75rem 0;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.glaswerk-features li:last-child {
    border-bottom: none;
}

.glaswerk-features li i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Glaswerk Portfolio Section */
.glaswerk-portfolio {
    padding: 6rem 0;
    background: var(--dark);
    position: relative;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.before-after-item {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.before-after-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.08);
}

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ba-image {
    position: relative;
    overflow: hidden;
}

.ba-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.ba-info {
    padding: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ba-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ba-info p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Upload Section */
.upload-section {
    margin: 2rem 0 3rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.upload-card {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    padding: 2.5rem;
    border-radius: 15px;
    color: white;
}

.upload-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.upload-card p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.upload-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.upload-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.upload-col label {
    font-weight: 600;
    font-size: 0.95rem;
}

.upload-col input[type="file"] {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 2px dashed rgba(255,255,255,0.3);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-col input[type="file"]:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--accent);
}

.image-preview {
    width: 100%;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: none;
    overflow: hidden;
}

.image-preview.active {
    display: block;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-form input[type="text"],
.upload-form textarea {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.upload-form input[type="text"]:focus,
.upload-form textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
    border-color: var(--accent);
}

.upload-form textarea {
    resize: vertical;
    min-height: 100px;
}

.upload-form input::placeholder,
.upload-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.admin-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent), #b8984f);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
    transition: all 0.3s ease;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
}

.admin-toggle-btn i {
    font-size: 1.1rem;
}

/* Responsive Glaswerk */
@media (max-width: 768px) {
    .glaswerk-grid {
        grid-template-columns: 1fr;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .upload-row {
        grid-template-columns: 1fr;
    }

    .admin-toggle-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}
