/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(40, 40, 40, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #35707e;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-consent-logo {
    flex-shrink: 0;
}

.cookie-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.5;
}

.cookie-consent-text p {
    margin: 0 0 8px 0;
}

.cookie-consent-text a {
    color: #35707e;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #2a5861;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
}

.cookie-btn-accept {
    background: #35707e;
    color: white;
}

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

.cookie-btn-decline {
    background: #555;
    color: #e0e0e0;
    border: 1px solid #666;
}

.cookie-btn-decline:hover {
    background: #666;
    color: #fff;
}

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

@media (max-width: 480px) {
    .cookie-consent-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Mobile Logo Adjustments */
@media (max-width: 768px) {
    .cookie-logo {
        height: 35px;
    }
    
    .cookie-consent-logo {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}
