/* ============================================
   BANER CIasteczek - LEKKI I NIEZALEŻNY
   Sklep kajakowy Mrówka Czaplinek
   ============================================ */

.cookies-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    font-family: 'Montserrat', Arial, sans-serif;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: none;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookies-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    gap: 20px;
}

.cookies-text {
    flex: 1;
}

.cookies-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #0A2F5E;
    margin: 0;
}

.cookies-text strong {
    color: #FF6B4A;
    font-weight: 700;
}

.cookies-buttons {
    flex-shrink: 0;
}

.cookies-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 40px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    background: #FFD700;
    color: #0A2F5E;
    border: 1px solid rgba(10, 47, 94, 0.1);
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.cookies-btn:hover {
    background: #E5C100;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

/* ============================================
   MEDIA QUERIES - RWD
   ============================================ */

@media (max-width: 768px) {
    .cookies-banner {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .cookies-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .cookies-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }
    
    .cookies-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cookies-banner {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .cookies-content {
        padding: 16px;
    }
    
    .cookies-text p {
        font-size: 0.85rem;
    }
    
    .cookies-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        max-width: 240px;
    }
}

/* Dla bardzo małych ekranów */
@media (max-width: 360px) {
    .cookies-content {
        padding: 14px;
    }
    
    .cookies-text p {
        font-size: 0.8rem;
    }
}