.cookie-consent {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    left: 2rem;
    transform: none;
    background-color: white;
    padding: 2rem;
    border: 1px solid #000;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(20px);
}

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

.cookie-consent__text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
}

.cookie-consent__buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    align-items: center;
}

.cookie-consent__button {
    padding: 0.75rem 2rem;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.5px;
    min-width: 120px;
    text-align: center;
}

.cookie-consent__button--accept {
    background-color: #000;
    color: white;
    border: none;
}

.cookie-consent__button--accept:hover {
    background-color: #333;
}

.cookie-consent__button--decline {
    background-color: white;
    color: #000;
}

.cookie-consent__button--decline:hover {
    background-color: #f5f5f5;
}

.cookie-consent__link {
    color: var(--color-accent);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 1.25rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        transform: translateY(100%);
    }

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

    .cookie-consent__text {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .cookie-consent__buttons {
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
    }

    .cookie-consent__button {
        flex: 1;
        padding: 0.75rem 1rem;
        max-width: none;
        min-width: 0;
        font-size: 0.85rem;
    }
} 