/* ========== COOKIE BANNER STYLES ========== */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2d47 100%);
    border-top: 2px solid #3498db;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease-out;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#cookie-banner.hidden {
    display: none !important;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cb-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cb-wrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.cb-title {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    flex-shrink: 0;
}

.cb-title span {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
}

.cb-text {
    flex: 1;
    color: #b0bec5;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    min-width: 250px;
}

.cb-text a {
    color: #3498db;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cb-text a:hover {
    color: #5dade2;
}

.cb-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    min-width: 200px;
}

.cb-btn-accept,
.cb-btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    white-space: nowrap;
}

.cb-btn-accept {
    background-color: #27ae60;
    color: white;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.cb-btn-accept:hover {
    background-color: #229954;
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.4);
    transform: translateY(-2px);
}

.cb-btn-accept:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2);
}

.cb-btn-reject {
    background-color: #34495e;
    color: #ecf0f1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cb-btn-reject:hover {
    background-color: #2c3e50;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.cb-btn-reject:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cb-privacy-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 12px;
    transition: color 0.2s ease;
}

.cb-privacy-link:hover {
    color: #5dade2;
    text-decoration: underline;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    #cookie-banner {
        padding: 16px;
    }

    .cb-wrap {
        flex-direction: column;
        gap: 16px;
    }

    .cb-title {
        min-width: unset;
        flex-shrink: unset;
    }

    .cb-text {
        min-width: unset;
        font-size: 0.9rem;
    }

    .cb-actions {
        width: 100%;
        justify-content: flex-start;
        min-width: unset;
        gap: 10px;
    }

    .cb-btn-accept,
    .cb-btn-reject {
        padding: 10px 16px;
        font-size: 0.85rem;
        flex: 1;
        min-width: 120px;
    }

    .cb-privacy-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    #cookie-banner {
        padding: 12px;
    }

    .cb-title span {
        font-size: 0.95rem;
    }

    .cb-text {
        font-size: 0.85rem;
    }

    .cb-btn-accept,
    .cb-btn-reject {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .cb-actions {
        gap: 8px;
    }
}
