.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: rgba(20, 20, 20, 0.96);
    color: white;
    padding: 16px 20px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-consent-text {
    font-size: 13px;
    line-height: 1.5;
}

.cookie-consent-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

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

    .cookie-consent-btn {
        width: 100%;
        text-align: center;
    }
}
