﻿body {
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

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

.hero-pattern {
    background-color: #2C2A29;
    background-image:
        linear-gradient(rgba(34, 29, 26, 0.56), rgba(34, 29, 26, 0.56)),
        url('../img/ava.webp');
    background-size: cover;
    background-position: center 18%;
}

.glass {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(182, 141, 64, 0.16);
    box-shadow: 0 10px 30px rgba(44, 42, 41, 0.06);
}

.nav-shell {
    position: relative;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}

.avatar-link {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.avatar-frame {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f5eee7, #ddc7af);
    box-shadow: 0 14px 30px rgba(182, 141, 64, 0.18);
    border: 2px solid rgba(182, 141, 64, 0.28);
}

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

.avatar-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #7a5b1f;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.nav-scroll {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 16px 0 92px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px 18px;
    flex-wrap: wrap;
}

.nav-link {
    position: relative;
    color: #2C2A29;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.4rem 0.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #B68D40, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: #B68D40;
    transform: translateY(-2px);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #c9a049, #b68d40);
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.55s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 18px 30px rgba(182, 141, 64, 0.34);
    filter: brightness(1.03);
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
    left: 140%;
}

.slider-shell {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 84px 56px;
}

.slider-viewport {
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.slider-slide {
    min-width: 100%;
    flex: 0 0 100%;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-size: 3rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(44, 42, 41, 0.14);
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
    z-index: 3;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
    color: #B68D40;
    background: #fff;
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(182, 141, 64, 0.26);
    transition: transform 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.slider-dot.active {
    background: #B68D40;
    transform: scale(1.2);
}

.portfolio-slide {
    position: relative;
    background: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(44, 42, 41, 0.08);
}

.portfolio-slide::before {
    content: '';
    display: block;
    padding-top: 133.3333%;
}

.portfolio-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(182, 141, 64, 0.15);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(182, 141, 64, 0.3);
    color: #2C2A29;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.filter-btn:hover {
    border-color: #B68D40;
    color: #B68D40;
}

.filter-btn.active {
    background: #B68D40;
    border-color: #B68D40;
    color: white;
    box-shadow: 0 10px 20px rgba(182, 141, 64, 0.2);
}

@media (max-width: 768px) {
    .portfolio-filters {
        gap: 10px;
        padding: 0 10px;
    }
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}

.filling-card,
.price-card {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 2rem;
    padding: 2.25rem;
    box-shadow: 0 18px 45px rgba(44, 42, 41, 0.08);
    border: 1px solid rgba(182, 141, 64, 0.14);
}

.filling-image-wrap {
    overflow: hidden;
    border-radius: 1.5rem;
    margin-bottom: 1.75rem;
}

.filling-image {
    width: 100%;
    height: min(60vw, 440px);
    min-height: 260px;
    object-fit: cover;
    display: block;
}

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

/* CodePen Accordion adapted for 15 elements using Flexbox */
.fillings-accordion-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
    /* Custom scrollbar for better look */
    scrollbar-width: thin;
    scrollbar-color: #B68D40 transparent;
}
.fillings-accordion-wrap::-webkit-scrollbar {
    height: 8px;
}
.fillings-accordion-wrap::-webkit-scrollbar-track {
    background: transparent;
}
.fillings-accordion-wrap::-webkit-scrollbar-thumb {
    background: #B68D40;
    border-radius: 4px;
}

.fillings-accordion {
    display: flex;
    min-width: 1000px; /* Forces enough space so 15 items don't squish too much on mobile */
    height: 60vh;
    min-height: 400px;
    gap: 12px;
    border: none;
    margin: 0;
    padding: 0;
}

.fillings-accordion > label {
    flex: 1;
    min-width: 0;
    border-radius: 1.5rem;
    background-image: var(--_img);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(44, 42, 41, 0.1);
}

.fillings-accordion > label:hover,
.fillings-accordion > label:focus-within {
    box-shadow: 0 15px 40px rgba(44, 42, 41, 0.2);
}

.fillings-accordion > label > input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.filling-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.9) 0%, rgba(15, 15, 15, 0) 100%);
    color: #fff;
    padding: 2.5rem 1.5rem 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.filling-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    white-space: normal;
}

.filling-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #eaeaea;
    display: block;
}

/* Accordion States */
.fillings-accordion > label:has(input:checked) {
    flex: 6;
}

.fillings-accordion > label:has(input:checked) .filling-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Neighbors are slightly wider for the cool wave effect */
.fillings-accordion > label:has(input:checked) + label,
.fillings-accordion > label:has(+ label:has(input:checked)) {
    flex: 2;
}

/* Second neighbors */
.fillings-accordion > label:has(input:checked) + label + label,
.fillings-accordion > label:has(+ label + label:has(input:checked)) {
    flex: 1.25;
}

.price-card {
    min-height: 560px;
    background: #f8f2ec;
    border: 2px solid rgba(182, 141, 64, 0.86);
}

.price-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #B68D40;
    color: white;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.8rem 1.2rem;
    border-bottom-left-radius: 1rem;
    border-top-right-radius: 1.8rem;
}

.price-list-item {
    position: relative;
    padding-left: 2rem;
}

.price-list-item::before {
    content: '';
    position: absolute;
    left: 0.15rem;
    top: 0.2rem;
    width: 0.45rem;
    height: 0.8rem;
    border: solid #B68D40;
    border-width: 0 0.16rem 0.16rem 0;
    transform: rotate(45deg);
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-pattern {
        min-height: 78svh;
        background-size: cover;
        background-position: center 10%;
    }

    .nav-shell {
        min-height: 110px;
        padding: 18px 0 12px;
    }

    .avatar-frame {
        width: 64px;
        height: 64px;
        border-radius: 20px;
    }

    .nav-scroll {
        padding: 0 0 0 82px;
    }

    .nav-links {
        gap: 8px 16px;
    }

    .nav-link {
        font-size: 0.72rem;
        letter-spacing: 0.13em;
    }

    .slider-shell {
        padding: 0 32px 52px;
    }

    /* в”Ђв”Ђ Mobile: snap-scroll carousel instead of accordion в”Ђв”Ђ */
    .fillings-accordion-wrap {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 10px 16px;
        scrollbar-width: none;          /* hide scrollbar Firefox */
    }
    .fillings-accordion-wrap::-webkit-scrollbar {
        display: none;                   /* hide scrollbar Chrome/Safari */
    }

    .fillings-accordion {
        display: flex;
        min-width: auto;                 /* remove forced 1000px */
        height: auto;
        min-height: auto;
        gap: 16px;
        flex-wrap: nowrap;
    }

    .fillings-accordion > label {
        flex: 0 0 82vw;                  /* each card в‰€ 82% of screen width */
        min-width: 0;
        height: auto;
        aspect-ratio: 3 / 4;
        border-radius: 1.25rem;
        scroll-snap-align: center;
        background-size: cover;
        background-position: center;
        transition: box-shadow 0.4s ease, border 0.4s ease;
        border: 3px solid transparent;
    }

    /* Golden glow on selected card */
    .fillings-accordion > label:has(input:checked) {
        flex: 0 0 82vw;
        box-shadow: 0 8px 32px rgba(182, 141, 64, 0.35);
        border-color: rgba(182, 141, 64, 0.6);
    }

    /* Show name (h3) always, hide description (p) by default */
    .fillings-accordion > label .filling-content {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        padding: 2rem 1.2rem 1.2rem;
    }

    .filling-content h3 {
        font-size: 1.25rem;
        white-space: normal;
        transition: transform 0.3s ease;
    }

    .filling-content p {
        font-size: 0.88rem;
        line-height: 1.5;
        display: block;
        overflow: visible;
    }

    .slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 2.25rem;
        box-shadow: 0 12px 24px rgba(44, 42, 41, 0.12);
    }
    
    .filling-image {
        min-height: 220px;
        height: 58vw;
    }

    .filling-card,
    .price-card {
        padding: 1.5rem;
        box-shadow: 0 18px 45px rgba(44, 42, 41, 0.08);
        border: 1px solid rgba(182, 141, 64, 0.14);
    }

    .price-card {
        min-height: auto;
        padding-top: 3.25rem;
    }

    .price-badge {
        font-size: 0.75rem;
        padding: 0.75rem 1rem;
    }
}

/* в”Ђв”Ђв”Ђв”Ђв”Ђ Custom Select (golden style like btn-primary) в”Ђв”Ђв”Ђв”Ђв”Ђ */

.custom-select {
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.8rem 1.25rem;
    border: none;
    border-radius: 9999px;
    background: linear-gradient(135deg, #c9a049, #b68d40);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 6px 18px rgba(182, 141, 64, 0.25);
    text-align: left;
}

/* shimmer sweep вЂ“ same as btn-primary */
.custom-select-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.55s ease;
    pointer-events: none;
}

.custom-select-trigger:hover,
.custom-select-trigger:focus-visible {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 28px rgba(182, 141, 64, 0.32);
    filter: brightness(1.04);
}

.custom-select-trigger:hover::before,
.custom-select-trigger:focus-visible::before {
    left: 140%;
}

.custom-select-arrow {
    font-size: 1.15rem;
    line-height: 1;
    margin-left: 0.5rem;
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
}

/* dropdown panel */
.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 20px 50px rgba(44, 42, 41, 0.15);
    border: 2px solid rgba(182, 141, 64, 0.35);
    z-index: 50;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.4s cubic-bezier(.4,.0,.2,1),
                opacity 0.3s ease,
                transform 0.3s ease;
    pointer-events: none;
}

.custom-select.open .custom-select-dropdown {
    max-height: 320px;
    overflow-y: auto;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* scrollbar inside dropdown */
.custom-select-dropdown::-webkit-scrollbar {
    width: 6px;
}
.custom-select-dropdown::-webkit-scrollbar-track {
    background: transparent;
}
.custom-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(182, 141, 64, 0.35);
    border-radius: 3px;
}

/* option items */
.custom-select-option {
    display: block;
    width: 100%;
    padding: 0.72rem 1.25rem;
    border: none;
    background: transparent;
    color: #2C2A29;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.25s ease;
    position: relative;
}

.custom-select-option:first-child {
    border-radius: 1.1rem 1.1rem 0 0;
}

.custom-select-option:last-child {
    border-radius: 0 0 1.1rem 1.1rem;
}

.custom-select-option:hover {
    background: linear-gradient(135deg, rgba(201,160,73,0.12), rgba(182,141,64,0.18));
    color: #8a6a1f;
    padding-left: 1.5rem;
}

.custom-select-option.active {
    background: linear-gradient(135deg, #c9a049, #b68d40);
    color: #fff;
    font-weight: 600;
}

.custom-select-option.active:hover {
    filter: brightness(1.06);
    color: #fff;
}

.custom-select-option.disabled {
    opacity: 0.38;
    pointer-events: none;
    color: #999;
}

/* pulse animation on select */
@keyframes selectPulse {
    0%   { box-shadow: 0 6px 18px rgba(182,141,64,0.25); }
    50%  { box-shadow: 0 6px 28px rgba(182,141,64,0.55); }
    100% { box-shadow: 0 6px 18px rgba(182,141,64,0.25); }
}

.custom-select-trigger.pulse {
    animation: selectPulse 0.5s ease;
}
.privacy-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #5f5a55;
    font-size: 0.86rem;
    line-height: 1.45;
}

.privacy-consent input {
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.15rem;
    accent-color: #B68D40;
    flex: 0 0 auto;
}

.privacy-consent a,
.cookie-banner a {
    color: #8a6a1f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 980px;
    margin: 0 auto;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(182, 141, 64, 0.25);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(44, 42, 41, 0.18);
    color: #2C2A29;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
    line-height: 1.45;
}

.cookie-actions {
    display: flex;
    gap: 0.7rem;
    flex: 0 0 auto;
}

.cookie-button {
    border: 1px solid #B68D40;
    border-radius: 999px;
    background: #B68D40;
    color: #fff;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.72rem 1rem;
    white-space: nowrap;
}

.cookie-button.secondary {
    background: #fff;
    color: #8a6a1f;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1.25rem 5rem;
    color: #2C2A29;
}

.legal-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin: 1rem 0 1.5rem;
}

.legal-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    margin: 2rem 0 0.75rem;
}

.legal-page p {
    color: #5f5a55;
    line-height: 1.75;
    margin: 0.65rem 0;
}

.legal-back {
    color: #8a6a1f;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 640px) {
    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
        left: 0.75rem;
        right: 0.75rem;
    }

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

    .cookie-button {
        width: 100%;
    }
}
.legal-note {
    border-left: 4px solid #B68D40;
    background: rgba(244, 236, 230, 0.8);
    padding: 1rem 1.1rem;
}

.legal-download {
    color: #8a6a1f;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-table-wrap {
    margin: 1.5rem 0 2rem;
    overflow-x: auto;
}

.legal-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    background: #fff;
    color: #2C2A29;
}

.legal-table th,
.legal-table td {
    border: 1px solid rgba(44, 42, 41, 0.14);
    padding: 0.9rem 1rem;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    background: #F4ECE6;
    font-weight: 700;
}

.legal-list {
    color: #5f5a55;
    line-height: 1.75;
    list-style: disc;
    margin: 0.75rem 0 0;
    padding-left: 1.5rem;
}
/* Cookie consent overlay: keep this block last so it wins over utility classes and cached layouts. */
.cookie-banner {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 9999 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 1rem !important;
    width: min(calc(100vw - 2rem), 980px) !important;
    max-width: 980px !important;
    margin: 0 !important;
    padding: 1rem 1.1rem !important;
    border: 1px solid rgba(182, 141, 64, 0.28) !important;
    border-radius: 0.75rem !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 18px 45px rgba(44, 42, 41, 0.22) !important;
    color: #2C2A29 !important;
    transform: translateX(-50%) !important;
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner p {
    margin: 0 0 0.25rem !important;
    color: #2C2A29 !important;
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
}

.cookie-banner a {
    color: #8a6a1f !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
}

.cookie-actions {
    display: flex !important;
    gap: 0.7rem !important;
    flex: 0 0 auto !important;
}

.cookie-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    border: 1px solid #B68D40 !important;
    border-radius: 999px !important;
    background: #B68D40 !important;
    color: #fff !important;
    cursor: pointer !important;
    font: 700 0.86rem/1.2 'Montserrat', sans-serif !important;
    padding: 0.78rem 1.05rem !important;
    text-align: center !important;
    white-space: nowrap !important;
}

.cookie-button.secondary {
    background: #fff !important;
    color: #8a6a1f !important;
}

@media (max-width: 640px) {
    .cookie-banner {
        top: auto !important;
        bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px)) !important;
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
        width: min(calc(100vw - 1.5rem), 420px) !important;
        padding: 1rem !important;
        border-radius: 1rem !important;
    }

    .cookie-banner p {
        font-size: 0.9rem !important;
    }

    .cookie-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.55rem !important;
    }

    .cookie-button {
        width: 100% !important;
        white-space: normal !important;
    }
}


