:root {
    --bg-gradient: linear-gradient(135deg, #FBF9F6 0%, #EFE9DF 100%);
    --text-main: #2A2522;
    --text-light: #5A514A;
    --accent: #B89065;
    --glass-bg: rgba(255, 255, 255, 0.38);
    --glass-border: rgba(255, 255, 255, 0.65);
    --glass-shadow: 0 16px 40px rgba(42, 37, 34, 0.05);
}

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

body {
    background: var(--bg-gradient);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

header.scrolled {
    top: 10px;
    padding: 14px 40px;
    width: 95%;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 35px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s;
}

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

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

.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    appearance: none;
    border: 0;
    background: transparent;
    padding: 8px;
    border-radius: 10px;
}

.bar {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--text-main);
    transition: all 0.4s ease;
}

.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-image: url('https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(251, 249, 246, 0.1), rgba(251, 249, 246, 0.75));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 50px;
    text-align: center;
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    text-decoration: none;
    background: var(--text-main);
    color: #FFF;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, background 0.3s;
}

.cta-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.container {
    padding: 100px 5vw;
    max-width: 1300px;
    margin: 0 auto;
}

.subpage-start {
    padding-top: 160px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

h3.category-title {
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: left;
    font-size: 1.8rem;
    color: var(--accent);
    border-bottom: 1px solid rgba(42, 37, 34, 0.08);
    padding-bottom: 12px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.highlight-card {
    overflow: hidden;
    transition: transform 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-6px);
}

.highlight-img {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.highlight-info {
    padding: 30px;
}

.highlight-info h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.wide-info-card {
    width: 100%;
    padding: 40px;
    margin-top: 50px;
}

.wide-info-card h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-main);
}

.info-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--accent);
}

.info-item p {
    color: var(--text-light);
    font-size: 0.98rem;
}

.info-item.border-left {
    border-left: 1px solid rgba(42, 37, 34, 0.1);
    padding-left: 40px;
}

.store-preview {
    margin: 40px 5vw;
    padding: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.store-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.store-content p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
}

.store-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

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

.product-card {
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: 0 14px 34px rgba(42, 37, 34, 0.06);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 44px rgba(184, 144, 101, 0.16);
}

.card-img {
    position: relative;
    height: 240px;
    background-size: cover;
    background-position: center;
    border-radius: 24px 24px 0 0;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--text-main);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 18px rgba(42, 37, 34, 0.08);
}

.product-card:hover .card-img {
    transform: scale(1.04);
}

.card-info {
    padding: 25px;
}

.card-info h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.click-hint {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(42, 37, 34, 0.55);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 90%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.96) translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: rgba(251, 249, 246, 0.96);
    border: none;
}

.modal-overlay.show .modal-content {
    transform: scale(1) translateY(0);
}

.close-btn {
    position: absolute;
    top: 20px; right: 25px;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.close-btn:hover {
    transform: rotate(90deg);
}

.modal-image {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
}

.modal-text {
    padding: 35px;
}

.modal-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.modal-text p {
    color: var(--text-light);
}

.allergen-box {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.allergen-box strong {
    display: block;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.contact-single-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.centered-block {
    width: 100%;
    max-width: 700px;
    padding: 50px;
    text-align: center;
}

.contact-info-block h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contact-info-block p {
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.map-container {
    padding: 20px;
}

.map-placeholder {
    height: 350px;
    background: rgba(42, 37, 34, 0.04);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.legal-content {
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

.glass-footer {
    margin: 60px 20px 20px 20px;
    padding: 60px 40px 25px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
}

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

.footer-col h4 {
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 1.25rem;
}

.footer-col.links a {
    display: block;
    color: var(--text-main);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col.links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(42, 37, 34, 0.08);
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 900px) {
    header {
        width: 95%;
        padding: 15px 25px;
    }
    
    .burger {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        flex-direction: column;
        justify-content: center;
        background: rgba(251, 249, 246, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: -10px 0 40px rgba(0,0,0,0.08);
        padding: 40px;
        transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        border-radius: 0;
    }

    nav.active {
        right: 0;
    }

    nav a {
        margin: 18px 0;
        font-size: 1.1rem;
        margin-left: 0;
        text-align: center;
    }

    .burger.toggle .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.toggle .bar:nth-child(2) {
        opacity: 0;
    }
    .burger.toggle .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

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

    .info-card-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-item.border-left {
        border-left: none;
        border-top: 1px solid rgba(42, 37, 34, 0.1);
        padding-left: 0;
        padding-top: 25px;
    }
}

nav {
    display: flex;
    align-items: center;
}

.contact-info-block a {
    color: var(--text-main);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.maps-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 13px 22px;
    border-radius: 50px;
    background: var(--accent);
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
}

.google-map {
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: 16px;
    display: block;
}

@media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    header, header.scrolled {
        top: 10px;
        width: calc(100% - 20px);
        padding: 12px 16px;
        border-radius: 18px;
    }

    .logo {
        font-size: 1.25rem;
        letter-spacing: 0.3px;
        line-height: 1.15;
    }

    nav {
        width: min(86vw, 320px);
        padding: 90px 28px 40px;
        align-items: stretch;
    }

    nav a {
        display: block;
        padding: 14px 10px;
        border-bottom: 1px solid rgba(42, 37, 34, 0.08);
    }

    .hero {
        min-height: 78vh;
        height: auto;
        padding: 120px 16px 45px;
        background-position: center;
    }

    .hero-content {
        padding: 28px 20px;
        border-radius: 20px;
    }

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

    .hero p, .section-subtitle {
        font-size: 0.98rem;
    }

    .cta-btn, .maps-btn {
        width: 100%;
        text-align: center;
        padding: 14px 18px;
    }

    .container {
        padding: 70px 16px;
    }

    .subpage-start {
        padding-top: 125px;
    }

    .section-title {
        font-size: 2.1rem;
        line-height: 1.15;
    }

    h3.category-title {
        font-size: 1.45rem;
        margin-top: 36px;
    }

    .highlights-grid, .product-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .highlight-img, .card-img {
        height: 190px;
    }

    .highlight-info, .card-info, .wide-info-card, .centered-block, .legal-content {
        padding: 24px 20px;
    }

    .wide-info-card h3, .store-content h2 {
        font-size: 1.7rem;
    }

    .store-preview {
        margin: 24px 16px;
        padding: 28px 20px;
    }

    .gallery-item {
        height: 210px;
    }

    .modal-content {
        width: calc(100% - 24px);
        max-height: 88vh;
        overflow-y: auto;
        border-radius: 20px;
    }

    .modal-image {
        height: 220px;
    }

    .modal-text {
        padding: 24px 20px;
    }

    .contact-single-wrapper {
        margin-bottom: 24px;
    }

    .contact-info-block {
        text-align: left;
    }

    .map-container {
        padding: 10px;
    }

    .google-map {
        height: 300px;
        border-radius: 14px;
    }

    .glass-footer {
        margin: 30px 10px 10px;
        padding: 34px 22px 20px;
        border-radius: 20px;
    }

    .footer-grid {
        gap: 24px;
    }
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.22);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    display: block;
    fill: currentColor;
}

.instagram-float,
.facebook-float {
    position: fixed;
    right: 22px;
    z-index: 1600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.instagram-float {
    bottom: 94px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.facebook-float {
    bottom: 166px;
    background: #1877F2;
}

.instagram-float:hover,
.facebook-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.22);
}

.instagram-float svg,
.facebook-float svg {
    width: 30px;
    height: 30px;
    display: block;
    fill: currentColor;
}

.contact-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 18px;
}

.contact-buttons .maps-btn {
    margin-top: 0;
}

.whatsapp-contact-btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 50px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px;
    margin: 0 auto 35px;
}

.filter-btn {
    border: 1px solid rgba(184, 144, 101, 0.16);
    border-radius: 999px;
    padding: 11px 18px;
    background: rgba(255,255,255,0.72);
    color: var(--text-main);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(42, 37, 34, 0.04);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 24px rgba(184, 144, 101, 0.22);
}

.product-card.hidden-product, .category-title.hidden-category {
    display: none;
}

.card-img {
    height: 280px;
}

.highlight-img {
    height: 280px;
}

.seo-local-text, .produkt-seo-text {
    padding: 34px;
    margin: 45px 0;
    text-align: center;
}

.seo-local-text h2, .produkt-seo-text h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.seo-local-text p, .produkt-seo-text p {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
}

@media (max-width: 700px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-card .card-info {
        padding: 22px 22px 24px;
    }
}

@media (max-width: 600px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .instagram-float,
    .facebook-float {
        right: 16px;
        width: 56px;
        height: 56px;
    }

    .instagram-float {
        bottom: 84px;
    }

    .facebook-float {
        bottom: 152px;
    }

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

    .filter-bar {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 12px;
    }

    .filter-btn {
        white-space: nowrap;
    }

    .card-img, .highlight-img {
        height: 235px;
    }

    .seo-local-text, .produkt-seo-text {
        padding: 24px 20px;
        text-align: left;
    }

    .seo-local-text h2, .produkt-seo-text h2 {
        font-size: 1.55rem;
    }

    .glass-footer {
        padding-bottom: 76px;
    }
}

.reviews-section {
    padding: 70px 20px;
}

.reviews-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.review-card {
    padding: 24px;
    text-align: left;
}

.review-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    letter-spacing: 2px;
}

.review-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.secondary-btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.42);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
}

.small-note {
    margin-top: 18px;
    font-size: 0.92rem;
    color: var(--text-light);
}

@media (max-width: 800px) {
    .review-cards {
        grid-template-columns: 1fr;
    }

    .reviews-section {
        padding: 45px 16px;
    }
}

.disabled-link {
    opacity: 0.65;
    cursor: not-allowed;
}

.family-story {
    padding: 42px;
    margin: 45px 0 10px;
}

.family-story-intro {
    max-width: 880px;
    margin: 0 auto 34px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
}

.family-story h2 {
    font-size: 2.15rem;
    margin-bottom: 16px;
}

.family-story-intro p,
.family-value-card p {
    color: var(--text-light);
}

.family-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.family-value-card {
    padding: 26px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.58);
}

.family-value-card h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
    color: var(--accent);
}

@media (max-width: 800px) {
    .family-story {
        padding: 28px 20px;
    }

    .family-story-intro {
        text-align: left;
    }

    .family-story h2 {
        font-size: 1.65rem;
    }

    .family-values {
        grid-template-columns: 1fr;
    }
}

.whatsapp-btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 50px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
}

.product-card:focus-visible,
.filter-btn:focus-visible,
.cta-btn:focus-visible,
.maps-btn:focus-visible,
.close-btn:focus-visible {
    outline: 3px solid rgba(184, 144, 101, 0.45);
    outline-offset: 4px;
}

.product-card {
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: auto 24px 0 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 144, 101, 0.45), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::after,
.product-card:focus-visible::after {
    opacity: 1;
}

.product-count {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin: -18px 0 28px;
}

.filter-btn {
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.filter-btn:hover {
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}


/* Cookie-Hinweis */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: min(94vw, 980px);
    z-index: 3000;
    display: none;
    padding: 24px;
    background: rgba(251, 249, 246, 0.96);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(42, 37, 34, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cookie-banner.show {
    display: block;
}

.cookie-banner h2 {
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.cookie-banner p {
    color: var(--text-light);
    margin-bottom: 14px;
}

.cookie-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.cookie-option {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.7);
}

.cookie-option input {
    margin-top: 4px;
    accent-color: var(--accent);
}

.cookie-option strong {
    display: block;
    margin-bottom: 3px;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 16px;
}

.cookie-btn {
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    background: rgba(255,255,255,0.7);
    color: var(--text-main);
    transition: transform 0.2s ease, background 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-btn.primary {
    background: var(--text-main);
    color: #fff;
}

.cookie-btn.accent {
    background: var(--accent);
    color: #fff;
}

.cookie-link-button {
    background: none;
    border: 0;
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    padding: 0;
    font: inherit;
}

@media (max-width: 700px) {
    .cookie-banner {
        bottom: 10px;
        padding: 20px;
        border-radius: 20px;
    }

    .cookie-options {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}



.map-consent-wrapper {
    position: relative;
    min-height: 380px;
}

.google-map[data-cookie-map]:not([src]) {
    display: none;
}

.map-consent-placeholder {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    border-radius: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.map-consent-placeholder h3 {
    font-size: 1.55rem;
    margin-bottom: 10px;
}

.map-consent-placeholder p {
    max-width: 560px;
    margin: 0 auto 18px;
    color: var(--text-light);
}

.map-consent-wrapper.maps-loaded .map-consent-placeholder {
    display: none;
}

.cookie-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cookie-option small {
    display: block;
    color: var(--text-light);
    line-height: 1.45;
}

@media (max-width: 900px) {
    .cookie-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .map-consent-wrapper,
    .map-consent-placeholder {
        min-height: 300px;
    }

    .map-consent-placeholder {
        padding: 24px 18px;
    }
}

/* Feinschliff: gleichmäßige Karten, klare Zustände und ruhige Übergänge */
a,
button {
    -webkit-tap-highlight-color: transparent;
}

body.nav-open {
    overflow: hidden;
}

.product-grid {
    align-items: stretch;
}

.product-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card .card-img {
    border-radius: 24px 24px 0 0 !important;
}

.product-card .card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.click-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
}

.click-hint span {
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

.product-card:hover .click-hint span,
.product-card:focus-visible .click-hint span {
    transform: translateX(4px);
}

.card-summary {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Wöchentliche Angebote auf der Startseite */
.glass-section {
    width: min(1200px, calc(100% - 10vw));
    margin: 40px auto;
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.offers-section {
    padding: 64px 50px;
}

.offers-content {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.offers-content h2 {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.offers-intro {
    max-width: 680px;
    margin: 0 auto 34px;
    color: var(--text-light);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    text-align: left;
}

.offer-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(150px, 0.85fr) minmax(0, 1.15fr);
    min-height: 300px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(42, 37, 34, 0.10);
}

.offer-image {
    min-height: 100%;
    background-position: center;
    background-size: cover;
}

.offer-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}

.offer-day {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(184, 144, 101, 0.15);
    color: #7f5f3d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-copy h3 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.offer-copy p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.offer-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    align-self: flex-start;
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(42, 37, 34, 0.22);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.offer-link:hover,
.offer-link:focus-visible {
    color: var(--accent);
    border-color: var(--accent);
}

/* Baklava-Karten als starke Bildkarten mit ruhiger, hochwertiger Wirkung */
.baklava-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    gap: 32px;
}

.baklava-text-card {
    min-height: 310px;
}

.baklava-card-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 112px;
    padding: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.62), transparent 36%),
        linear-gradient(135deg, rgba(184, 144, 101, 0.22), rgba(255, 255, 255, 0.38));
    border-bottom: 1px solid rgba(42, 37, 34, 0.07);
}

.baklava-card-header::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    right: -35px;
    bottom: -65px;
    border: 1px solid rgba(184, 144, 101, 0.24);
    border-radius: 50%;
}

.baklava-flavour {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
}

.baklava-price {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-main);
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(42, 37, 34, 0.06);
}

.modal-image[hidden] {
    display: none;
}

.modal-overlay.no-product-image .modal-content {
    max-width: 560px;
}

.modal-overlay.no-product-image .close-btn {
    color: var(--text-main);
    text-shadow: none;
}

.modal-overlay.no-product-image .modal-text {
    padding-top: 52px;
}

/* Cookie-Dialog: sichtbar, fokussierbar und auch nach Cache-Updates zuverlässig */
.cookie-banner {
    display: block;
    max-height: min(88vh, 760px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 22px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    z-index: 5000;
}

.cookie-banner.show {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.cookie-banner:focus {
    outline: none;
}

.cookie-heading {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}

.cookie-kicker {
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cookie-privacy-note {
    margin: 4px 0 0 !important;
    font-size: 0.9rem;
}

.cookie-privacy-note a {
    color: var(--text-main);
    text-underline-offset: 3px;
}

.cookie-btn:focus-visible,
.burger:focus-visible,
.offer-link:focus-visible {
    outline: 3px solid rgba(184, 144, 101, 0.42);
    outline-offset: 3px;
}

@media (max-width: 980px) {
    .offer-card {
        grid-template-columns: 1fr;
    }

    .offer-image {
        min-height: 210px;
    }
}

@media (max-width: 760px) {
    .glass-section {
        width: calc(100% - 32px);
        margin: 28px auto;
        border-radius: 22px;
    }

    .offers-section {
        padding: 40px 20px;
    }

    .offers-content {
        text-align: left;
    }

    .offers-grid,
    .baklava-grid {
        grid-template-columns: 1fr;
    }

    .offer-copy {
        padding: 26px 22px 28px;
    }

    .offer-copy h3 {
        font-size: 1.55rem;
    }
}

@media (max-width: 600px) {
    .cookie-banner {
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
        bottom: 10px;
    }

    .cookie-heading {
        display: block;
    }

    .cookie-kicker {
        display: block;
        margin-bottom: 6px;
    }

    .baklava-card-header {
        min-height: 96px;
        padding: 22px 20px;
    }

    .baklava-flavour {
        font-size: 1.25rem;
    }
}

