/* Simple Cookie Banner Styles */
.simple-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: none;
}

.simple-cookie-banner.show {
    display: block;
}

.simple-cookie-banner.bottom {
    bottom: 0;
    animation: slideInFromBottom 0.3s ease-out;
}

.simple-cookie-banner.top {
    top: 0;
    animation: slideInFromTop 0.3s ease-out;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.accept-btn {
    color: #333;
}

.accept-btn:hover {
    opacity: 0.9;
}

.info-btn {
    background: transparent !important;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.info-btn:hover {
    background: #ffd700 !important;
    color: #333;
}

/* Адаптивность */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        min-width: auto;
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .simple-cookie-banner {
        padding: 12px 15px;
    }
    
    .cookie-text {
        font-size: 13px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }
}

/* Анимации */
@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}