.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    padding: 1rem 1.25rem;
    background: #071952;
    color: #fff;
    box-shadow: 0 -10px 30px rgba(7, 25, 82, 0.28);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-consent-copy {
    min-width: 0;
}

.cookie-consent-copy strong {
    display: block;
    margin-bottom: .25rem;
    font-size: 1rem;
}

.cookie-consent-copy p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, .88);
}

.cookie-consent-copy a {
    color: #8ee0db;
    text-decoration: underline;
}

.cookie-consent-copy a:hover {
    color: #fff;
}

.cookie-consent-actions {
    display: flex;
    flex-shrink: 0;
    gap: .5rem;
}

.cookie-consent-btn {
    border-radius: .5rem;
    border: 1px solid transparent;
    padding: .55rem 1rem;
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    cursor: pointer;
}

.cookie-consent-btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
}

.cookie-consent-btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
}

.cookie-consent-btn-primary {
    background: #34a19a;
    color: #fff;
}

.cookie-consent-btn-primary:hover {
    background: #2d8c86;
}

@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cookie-consent-btn {
        flex: 1;
    }
}
