/* EKERTECH Cookie Banner Styles */

.ekertech-cookie-banner-wrap {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 540px;
    background: #0f172a;
    color: #ffffff;
    border: 2px solid #33d5f3;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    z-index: 999999;
    font-family: 'Space Grotesk', sans-serif;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ekertech-cookie-banner-wrap.active {
    transform: translateY(0);
}

.ekertech-cookie-title {
    font-family: 'Nippo', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ekertech-cookie-text {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #cbd5e1;
    margin-bottom: 1.25rem;
}

.ekertech-cookie-text a {
    color: #33d5f3;
    text-decoration: underline;
}

.ekertech-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ekertech-cookie-btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Nippo', sans-serif;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ekertech-cookie-btn-accept {
    background: #33d5f3;
    color: #0f172a;
}

.ekertech-cookie-btn-accept:hover {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 0 12px rgba(51, 213, 243, 0.4);
}

.ekertech-cookie-btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #475569;
}

.ekertech-cookie-btn-reject:hover {
    background: #1e293b;
    border-color: #94a3b8;
}

.ekertech-cookie-settings-link {
    display: inline-block;
    color: #94a3b8;
    font-size: 0.8rem;
    text-decoration: underline;
    margin-top: 0.75rem;
    cursor: pointer;
}

.ekertech-cookie-settings-link:hover {
    color: #33d5f3;
}

@media (max-width: 640px) {
    .ekertech-cookie-banner-wrap {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 1.25rem;
    }
    
    .ekertech-cookie-actions {
        flex-direction: column;
    }
    
    .ekertech-cookie-btn {
        width: 100%;
        text-align: center;
    }
}
