.cookie-consent-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid #e0e0e0;
}

.cookie-consent-modal.show {
    transform: translateY(0);
    display: block;
}

.cookie-consent-modal.reveal {
    opacity: 1;
}

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

.cookie-consent__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookie-consent__title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.cookie-consent__description {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.cookie-consent__description a {
    color: #eb891d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-consent__description a:hover {
    color: #d67a15;
    text-decoration: underline;
}

.cookie-consent__button {
    background: #eb891d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.cookie-consent__button:hover {
    background: #d67a15;
}