.gc-cookie-consent {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 100000;
    width: min(440px, calc(100vw - 48px));
    box-sizing: border-box;
    padding: 24px;
    overflow: hidden;
    color: #202124;
    background: #fbfaf8;
    border: 1px solid rgba(32, 33, 36, 0.16);
    box-shadow: 0 18px 55px rgba(20, 20, 20, 0.2);
    font-family: Poppins, 'Roboto', Helvetica, Arial, sans-serif;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.gc-cookie-consent::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 3px;
    background: #b49a6a;
    content: '';
}

.gc-cookie-consent--visible {
    opacity: 1;
    transform: translateY(0);
}

.gc-cookie-consent__eyebrow {
    margin: 0 0 9px;
    color: #716b62;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.gc-cookie-consent__title {
    margin: 0 0 10px;
    color: #171717 !important;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
}

.gc-cookie-consent__copy {
    margin: 0;
    color: #55524d;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}

.gc-cookie-consent__policy {
    display: inline-block;
    margin-top: 10px;
    color: #292826;
    font-size: 12px;
    text-decoration: underline;
    text-decoration-color: #b49a6a;
    text-underline-offset: 3px;
}

.gc-cookie-consent__policy:hover,
.gc-cookie-consent__policy:focus {
    color: #171717;
    text-decoration-color: #171717;
}

.gc-cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.gc-cookie-consent__button {
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid #202124;
    border-radius: 0;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.4;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 150ms ease, color 150ms ease;
}

.gc-cookie-consent__button--essential {
    color: #202124;
    background: transparent;
}

.gc-cookie-consent__button--analytics {
    color: #fff;
    background: #202124;
}

.gc-cookie-consent__button--essential:hover,
.gc-cookie-consent__button--essential:focus {
    color: #fff;
    background: #202124;
}

.gc-cookie-consent__button--analytics:hover,
.gc-cookie-consent__button--analytics:focus {
    color: #202124;
    background: transparent;
}

.gc-cookie-consent__button:focus-visible,
.gc-cookie-settings:focus-visible,
.gc-cookie-consent__policy:focus-visible {
    outline: 2px solid #b49a6a;
    outline-offset: 3px;
}

.gc-cookie-settings {
    display: inline;
    margin: 0;
    padding: 0;
    color: #555;
    background: transparent;
    border: 0;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.gc-cookie-settings:hover,
.gc-cookie-settings:focus {
    color: #d13074;
}

@media (max-width: 480px) {
    .gc-cookie-consent {
        left: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
        padding: 20px;
    }

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

@media (prefers-reduced-motion: reduce) {
    .gc-cookie-consent,
    .gc-cookie-consent__button {
        transition: none;
    }
}
