/* styles.form-group select {
    cursor: pointer;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
    text-align: center;
    border: 1px solid #c3e6cb;
}

.success-message.show {
    display: block;
}

/* FAQ Section */
.faq-section {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--wood);
}

.faq-section h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
    text-align: center;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1.5rem;
}

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

.faq-question {
    font-weight: bold;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--text);
    line-height: 1.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--cream);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    border: 3px solid var(--wood);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--dark);
    font-family: 'Georgia', serif;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--cream);
    padding: 3rem 5%;
    text-align: center;
    border-top: 5px solid var(--wood);
    width: 100%;
    overflow-x: hidden;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content .logo {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Brush Script MT', cursive;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--cream);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--secondary);
    transform: translateY(-3px) scale(1.2);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cream);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation Mobile */
    nav {
        width: 100%;
        padding: 1.2rem 1rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Logo Animation Mobile */
    .animated-logo {
        width: 200px;
        height: 200px;
    }

    .animated-logo.final-position {
        width: 50px !important;
        height: 50px !important;
        position: fixed !important;
        top: 17px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .header-logo-placeholder {
        width: 50px;
        height: 50px;
    }

    /* Hero Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    /* News Slider Mobile */
    .news-slider {
        margin: 0 -1rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .slider-container {
        height: 400px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    /* Buttons Mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

    /* About Mobile */
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Categories Mobile */
    .category-cards {
        grid-template-columns: 1fr;
    }

    /* Gallery Mobile */
    .gallery-header h1 {
        font-size: 2.5rem;
    }

    .gallery-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .category-title {
        font-size: 2rem;
    }

    /* Shop Mobile */
    .shop-header h1 {
        font-size: 2.5rem;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact Mobile */
    .contact-header h1 {
        font-size: 2.5rem;
    }

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

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

    /* Sections padding */
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 2rem;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Modal Mobile */
    .modal-content {
        margin: 10% 1rem;
        padding: 2rem;
    }

    /* Prevent horizontal scroll */
    .hero-content,
    .about-container,
    .contact-content,
    .shop-grid,
    .gallery-grid,
    .category-cards {
        width: 100%;
        overflow-x: hidden;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* Print Styles */
@media print {
    header, footer, .btn, .slider-controls, .mobile-menu-toggle {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .hero, .about, .categories-preview, .gallery, .shop, .contact {
        page-break-inside: avoid;
    }
}css - Hauptstylesheet für Kiris Kunst */

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

/* Verhindere horizontales Scrollen */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Farbvariablen */
:root {
    /* Farbpalette basierend auf grau-rosa Hintergrund */
    --primary: #8B6B7A;        /* Gedämpftes Rosa-Grau */
    --primary-dark: #6B4E5D;   /* Dunkleres Rosa-Grau */
    --secondary: #B8A0A8;      /* Helles Rosa-Grau */
    --accent: #D4B5BD;         /* Sehr helles Rosa */
    --dark: #3A3336;           /* Dunkles Grau */
    --light: #F8F5F6;          /* Sehr helles Grau-Rosa */
    --cream: #FFF0F3;          /* Cremiges Rosa */
    --text: #4A4447;           /* Text Grau */
    --wood: #8B7680;           /* Gedämpftes Holz-Rosa */
}

/* Body Grundstyles */
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    min-height: 100vh;
    position: relative;
}

/* Hintergrundbild für alle Seiten */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--background-image, none);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: -2;
}

/* Overlay für bessere Lesbarkeit */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 245, 246, 0.85);
    z-index: -1;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

/* Header & Navigation */
header {
    background: linear-gradient(to bottom, rgba(58, 51, 54, 0.95), rgba(58, 51, 54, 0.85));
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--wood);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--cream);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Brush Script MT', cursive;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--cream);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(184, 160, 168, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

/* Logo Animation Styles */
.logo-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.logo-animation-container.active {
    opacity: 1;
    pointer-events: all;
}

.logo-animation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 245, 246, 0.95);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.logo-animation-container.active .logo-animation-overlay {
    opacity: 1;
}

.animated-logo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 1;
    position: relative;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.animated-logo.final-position {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%) scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.header-logo-placeholder.visible {
    opacity: 1;
}

.header-logo-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
}

/* Hero Section */
.hero {
    margin-top: 85px;
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Georgia', serif;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text);
    font-style: italic;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Georgia', serif;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 5px 15px rgba(139, 107, 122, 0.3);
    border: 2px solid var(--primary-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 107, 122, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(139, 107, 122, 0.3);
}

/* News Slider */
.news-slider {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--wood);
    background: var(--dark);
}

.slider-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

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

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
}

.slide-category {
    color: var(--secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.slide-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
}

.slide-description {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

.slider-controls {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--cream);
    color: var(--cream);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--secondary);
    width: 30px;
    border-radius: 5px;
}

/* Sections */
.about {
    padding: 5rem 5%;
    background: rgba(255, 255, 255, 0.95);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--wood);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-family: 'Georgia', serif;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Categories */
.categories-preview {
    padding: 5rem 5%;
    background: linear-gradient(135deg, rgba(139, 107, 122, 0.05), rgba(184, 160, 168, 0.05));
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Georgia', serif;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--wood);
    text-decoration: none;
    color: var(--text);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Georgia', serif;
}

/* Gallery Page Specific */
.gallery-page {
    margin-top: 85px;
    padding: 3rem 5%;
    min-height: calc(100vh - 85px);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.gallery-header h1 {
    font-size: 3rem;
    color: var(--dark);
    font-family: 'Georgia', serif;
    margin-bottom: 1rem;
}

.gallery-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-category {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--wood);
    transition: transform 0.3s ease;
}

.gallery-category:hover {
    transform: translateY(-5px);
}

.gallery-category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: all 0.5s ease;
}

.gallery-category h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transform: translateY(0);
    transition: all 0.5s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.gallery-category p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-category .item-count {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.gallery-category:hover img {
    transform: scale(1.1);
    filter: blur(5px);
}

.gallery-category:hover .gallery-category-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.gallery-category:hover h3 {
    transform: translateY(-10px) scale(1.2);
    color: var(--secondary);
}

.gallery-category:hover p,
.gallery-category:hover .item-count {
    opacity: 1;
    transform: translateY(0);
}

.category-view {
    display: none;
    max-width: 1400px;
    margin: 0 auto;
}

.category-view.active {
    display: block;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.back-button:hover {
    color: var(--primary-dark);
    transform: translateX(-5px);
}

.category-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
    font-family: 'Georgia', serif;
    text-align: center;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid var(--wood);
    cursor: pointer;
    background: white;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(0.9);
}

.gallery-item-info {
    padding: 1.5rem;
    background: var(--cream);
}

.gallery-item-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Georgia', serif;
}

.gallery-item-info p {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.gallery-item-info .technique {
    font-style: italic;
    color: var(--primary);
}

.gallery-item-info .price {
    font-weight: bold;
    color: var(--secondary);
    margin-top: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

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

.lightbox-close:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

/* Shop Page */
.shop-page {
    margin-top: 85px;
    padding: 3rem 5%;
    min-height: calc(100vh - 85px);
}

.shop-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.shop-header h1 {
    font-size: 3rem;
    color: var(--dark);
    font-family: 'Georgia', serif;
    margin-bottom: 1rem;
}

.shop-header p {
    font-size: 1.2rem;
    color: var(--text);
    font-style: italic;
}

.shop-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid var(--wood);
}

.shop-info h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.shop-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.shop-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid var(--wood);
}

.shop-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.shop-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 3px solid var(--wood);
}

.shop-item-info {
    padding: 2rem;
    background: var(--cream);
}

.shop-item-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Georgia', serif;
}

.shop-item-info p {
    color: var(--text);
    margin-bottom: 1rem;
    font-style: italic;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.delivery {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-page {
    margin-top: 85px;
    padding: 3rem 5%;
    min-height: calc(100vh - 85px);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.contact-header h1 {
    font-size: 3rem;
    color: var(--dark);
    font-family: 'Georgia', serif;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text);
    font-style: italic;
}

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

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--wood);
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}

.contact-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    min-width: 30px;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text);
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--wood);
}

.social-section h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

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

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 107, 122, 0.3);
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--wood);
}

.contact-form-section h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
    font-family: 'Georgia', serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--wood);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Georgia', serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

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

.
