/**
 * AAS3 Cookie Consent Styles
 * Design épuré pour cabinet d'architectes
 */

.aas3-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    color: #1a1a1a;
    z-index: 999999;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    transform: translateY(100%);
    animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.aas3-cookie-banner.hidden {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    to {
        transform: translateY(100%);
    }
}

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

.aas3-cookie-text h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.aas3-cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
}

.aas3-cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.aas3-cookie-btn {
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.aas3-cookie-btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.aas3-cookie-btn-primary:hover {
    background: #333333;
    transform: translateY(-1px);
}

.aas3-cookie-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.aas3-cookie-btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .aas3-cookie-banner {
        padding: 16px;
    }

    .aas3-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .aas3-cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .aas3-cookie-btn {
        width: 100%;
        padding: 14px 20px;
    }
}
