@charset "UTF-8";

/*
Theme Name: Knirpse
Theme URI: http://vecurosoft.com/products/wordpress/knirpse/
Author: Vecurosoft
Description: Knirpse - Kindergarten & Baby Care WordPress Theme
Version: 1.6.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: knirpse
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/

#woosq-popup .thumbnails .slick-track {
    min-width: auto;
}

/* الطبقة الخلفية - جعلناها ضبابية لتعطي شعوراً عصرياً */
.music-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(78, 80, 156, 0.4); /* بنفسجي خفيف شفاف */
    backdrop-filter: blur(8px); /* تأثير الضباب */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    direction: rtl;
    font-family: 'Tajawal', sans-serif;
}

/* الكرت الرئيسي */
.music-card {
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 40px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 4px solid #cde182; /* إطار ليموني */
    position: relative;
}

/* أيقونة الموسيقى المتحركة */
.music-icon-wrap {
    font-size: 50px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.main-emoji {
    display: block;
    animation: bounce 2s infinite ease-in-out;
}

.note-1, .note-2 {
    position: absolute;
    font-size: 24px;
    color: #60aad2;
    animation: float 3s infinite ease-in-out;
}

.note-1 { top: -10px; right: -20px; }
.note-2 { bottom: 10px; left: -25px; animation-delay: 1s; }

/* النصوص */
.music-card h3 {
    color: #4e509c;
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.music-card p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* الأزرار */
.music-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-music {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-yes {
    background: #4e509c;
    color: white;
    box-shadow: 0 5px 15px rgba(78, 80, 156, 0.3);
}

.btn-no {
    background: #f0f0f0;
    color: #888;
}

.btn-music:hover {
    transform: scale(1.1);
}

.btn-yes:hover {
    background: #60aad2;
}

/* حركات الأنميشن */
@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(-20px); opacity: 1; }
}

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