/* GDPR Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    color: #1a502b;
    padding: 20px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 4px solid #23bc5e;
}

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

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

.cookie-banner-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner-text h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #23bc5e;
}

.cookie-banner-text p {
    margin: 0;
    color: #1a502b;
    font-weight: 400;
}

.cookie-banner-text a {
    color: #23bc5e;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    color: #10562b;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-width: 100px;
}

.cookie-btn-accept {
    background: #10562b;
    color: white;
}

.cookie-btn-accept:hover {
    background: #0d4523;
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: #1a502b;
    border: 2px solid #1a502b;
}

.cookie-btn-reject:hover {
    background: #1a502b;
    color: #ffffff;
    transform: translateY(-1px);
}

.cookie-btn:focus {
    outline: 2px solid #10562b;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cookie-banner-text {
        text-align: center;
    }
    
    .cookie-banner-text h3 {
        font-size: 15px;
    }
    
    .cookie-banner-text p {
        font-size: 13px;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: auto;
    }
}

/* Cookie preferences indicator (optional) */
.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #23bc5e;
    color: white;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(35, 188, 94, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    font-size: 18px;
    display: none;
    font-weight: 600;
}

.cookie-settings-btn:hover {
    transform: scale(1.1);
    background: #10562b;
    box-shadow: 0 6px 20px rgba(16, 86, 43, 0.4);
}

.cookie-settings-btn.show {
    display: block;
}

/* Hidden state for elements that require cookies */
.requires-cookies {
    display: none;
}

.requires-cookies.cookies-accepted {
    display: block;
}