/* ========================================
   Cookie Notice Styles
   ======================================== */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid var(--primary-color);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-notice-text {
    flex: 1;
}

.cookie-notice-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.cookie-notice-text p {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.cookie-notice-text p:last-child {
    margin-bottom: 0;
}

.cookie-notice-text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-notice-text a:hover {
    color: var(--primary-dark);
}

.cookie-notice-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-cookie-accept {
    background: var(--primary-color);
    color: var(--white);
    flex: 1;
    min-width: 150px;
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.btn-cookie-decline {
    background: var(--light-gray);
    color: var(--text-color);
    flex: 1;
    min-width: 150px;
}

.btn-cookie-decline:hover {
    background: var(--border-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem;
    }
    
    .cookie-notice-content {
        gap: 1rem;
    }
    
    .cookie-notice-text h3 {
        font-size: 1.25rem;
    }
    
    .cookie-notice-text p {
        font-size: 0.9rem;
    }
    
    .cookie-notice-buttons {
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}

/* Widget Consent Required Message */
.widget-consent-required {
    background: var(--light-gray);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.widget-consent-required h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.widget-consent-required p {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.widget-consent-required a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
    display: inline-block;
    margin: 0 0.5rem;
}

.widget-consent-required a:hover {
    color: var(--primary-dark);
}

.widget-consent-required .btn-consent-settings {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
}

.widget-consent-required .btn-consent-settings:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

@media (max-width: 768px) {
    .widget-consent-required {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .widget-consent-required h3 {
        font-size: 1.25rem;
    }
    
    .widget-consent-required p {
        font-size: 0.95rem;
    }
}






