/* cookie-consent.css */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1.5rem;
    display: none;
    /* Controlled by JS: default hidden */
    align-items: center;
    justify-content: center;
    font-family: 'Arimo', sans-serif;
    /* Match the main font */
    border-top: 1px solid #eaeaea;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-text-wrapper {
    flex: 1 1 auto;
    max-width: 800px;
}

.cookie-text-wrapper h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
}

.cookie-text-wrapper p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.cookie-text-wrapper a {
    color: #7c2a66;
    /* Use primary brand color from index.html */
    text-decoration: underline;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex: 0 0 auto;
    justify-content: flex-end;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: 2px solid #7c2a66;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: transparent;
    color: #7c2a66;
    min-width: 120px;
    /* Requirement: identical visual weight -> same colors and border by default */
}

.btn-cookie:hover,
.btn-cookie:focus {
    background-color: #7c2a66;
    color: #fff;
}

/* Responsiveness */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        display: flex;
        justify-content: stretch;
        /* Make them equal length */
        gap: 0.5rem;
    }

    .btn-cookie {
        flex: 1;
        text-align: center;
    }
}