/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
    text-align: center;
}

.cookie-consent-banner.show {
    display: block !important;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding: 0 15px;
}

.cookie-consent-text h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #fff;
}

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

.cookie-consent-text a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-consent-accept {
    background: #3498db;
    color: #fff;
}

.cookie-consent-accept:hover {
    background: #2980b9;
}

.cookie-consent-decline {
    background: #95a5a6;
    color: #fff;
}

.cookie-consent-decline:hover {
    background: #7f8c8d;
}

/* Cookie Settings Modal */
.cookie-settings-overlay {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0,0,0,0.7) !important;
    z-index: 99999 !important;
    padding: 20px;
}

.cookie-settings-overlay.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.cookie-settings-modal {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative !important;
    margin: 0 !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.cookie-settings-modal h2 {
    margin: 0 0 15px 0;
    color: #2c3e50;
}

.cookie-settings-modal p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-settings-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.cookie-settings-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-settings-accept {
    background: #3498db;
    color: #fff;
}

.cookie-settings-decline {
    background: #95a5a6;
    color: #fff;
}

.cookie-settings-close {
    background: #e74c3c;
    color: #fff;
}

/* Footer cookie settings link */
.cookie-settings-link {
    color: #555;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
}

.cookie-settings-link:hover {
    color: #3498db;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-text {
        text-align: center;
        padding: 0;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}
