/**
 * Cookie Banner Styles
 */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: white;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.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 p {
    margin: 0;
}

.cookie-banner-text a {
    color: #63b3ed;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #90cdf4;
}

.cookie-banner-actions {
    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.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-btn-accept {
    background: #48bb78;
    color: white;
}

.cookie-btn-accept:hover {
    background: #38a169;
    color: white;
    text-decoration: none;
}

.cookie-btn-decline {
    background: transparent;
    color: #a0aec0;
    border: 1px solid #4a5568;
}

.cookie-btn-decline:hover {
    background: #4a5568;
    color: white;
    text-decoration: none;
}

.cookie-btn-settings {
    background: transparent;
    color: #63b3ed;
    border: 1px solid #63b3ed;
}

.cookie-btn-settings:hover {
    background: #63b3ed;
    color: white;
    text-decoration: none;
}

/* Close button */
.cookie-banner-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #a0aec0;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.cookie-banner-close:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-banner-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-banner-close {
        top: 5px;
        right: 10px;
    }
}

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