/* =========================================
   home.css - עיצוב מרכזי לעמוד הבית
   ========================================= */

/* --- באנר חנות סגורה (נשלט ידנית מהאפליקציה) --- */
#store-closed-banner {
    background: linear-gradient(to right, #111, #222);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 1.05rem;
    border-bottom: 2px solid var(--luxury-gold);
    z-index: 1050;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.closed-msg-text {
    color: var(--luxury-gold);
    font-weight: 800;
    margin-right: 8px;
}

/* --- תפריט ניווט עליון (Navbar) --- */
.custom-navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

.navbar-logo {
    height: 45px;
    border-radius: 8px;
}

.custom-navbar .nav-link {
    font-weight: 700;
    color: #444 !important;
    margin: 0 10px;
    font-size: 1.05rem;
    transition: 0.3s;
}
.custom-navbar .nav-link:hover {
    color: var(--luxury-gold) !important;
}

/* כפתור עגלה בתפריט */
.nav-cart-btn {
    background: var(--luxury-gold);
    color: #121212; /* טקסט כהה על רקע זהב נראה יוקרתי יותר */
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}
.nav-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.4);
}
.cart-badge {
    background: #121212;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
    min-width: 20px;
    text-align: center;
}

/* אזור התחברות בתפריט */
/* --- עיצוב כפתור התחברות ומשתמש (Auth) --- */
.nav-auth-wrapper {
    display: flex;
    align-items: center;
}

/* עיצוב כללי לכפתור (גם התחברות וגם שם המשתמש) */
.nav-auth-wrapper button, 
.nav-auth-wrapper .dropdown-toggle {
    background: rgba(255, 255, 255, 0.7); /* אפקט זכוכית */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1.5px solid var(--luxury-gold);
    color: var(--coffee-text, #3e2723);
    border-radius: 50px;
    font-weight: 700;
    padding: 8px 22px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* אפקטים במעבר עכבר */
.nav-auth-wrapper button:hover, 
.nav-auth-wrapper .dropdown-toggle:hover {
    background: var(--luxury-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.3);
}

/* הוספת אייקון משתמש לפני הטקסט (דרך CSS אם לא קיים ב-HTML) */
.nav-auth-wrapper button::before {
    content: '\f007'; /* אייקון User של FontAwesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* עיצוב הלואדר (Loader) שיהיה אלגנטי */
#auth-loader {
    width: 1.2rem;
    height: 1.2rem;
    border-width: 0.15em;
    color: var(--luxury-gold) !important;
}

/* אם המשתמש מחובר ויש דרופדאון - נוריד את החץ המכוער של בוטסטראפ */
.nav-auth-wrapper .dropdown-toggle::after {
    display: none; 
}


/* --- מסך פתיחה (Hero Premium) --- */
.hero-premium {
    background-color: var(--bg-cream, #fdfbf5); /* רקע שמנת אחיד */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
}

/* עיגולי הרקע של ה-Hero */
.hero-bg-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: var(--luxury-gold);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}
.hero-bg-circle.top-left { top: -200px; left: -200px; }
.hero-bg-circle.bottom-right { bottom: -200px; right: -200px; }
/* עיגולי הרקע של ה-Hero (מיוצרים דרך CSS כמו בשאר האתר) */
.hero-premium::before, 
.hero-premium::after {
    content: ''; 
    position: absolute; 
    width: 400px; 
    height: 400px; 
    background-color: #cda260; 
    border-radius: 50%; 
    z-index: 0; 
    pointer-events: none;
    opacity: 0.4; 
}
/* עיגול שמאלי עליון */
.hero-premium::before { 
    top: -100px; 
    left: -200px; 
}
.hero-premium::after { 
    bottom: -200px; 
    right: -200px; 
}
@media (max-width: 991px) {
    .hero-premium::before, 
    .hero-premium::after {
        width: 250px; 
        height: 250px;
    }
    .hero-premium::before { top: -125px; left: -125px; }
    .hero-premium::after { bottom: -125px; right: -125px; }
}
/* תג כשרות אלגנטי */
.elegant-kosher-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.5);
    color: var(--luxury-gold);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

/* כותרת מיוחדת: לבן עם מסגרת זהב */
.hero-title-outlined {
    font-family: 'Playball', cursive; /* גופן מחובר יוקרתי */
    font-size: 7.5rem;
    margin: 0;
    line-height: 1.1;
    color: #ffffff; /* צבע המילוי לבן */
    -webkit-text-stroke: 2.5px var(--luxury-gold); /* מסגרת זהב סביב האותיות */
    text-shadow: 0 10px 30px rgba(197, 160, 89, 0.4); /* צל מוזהב לזוהר */
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    color: #444;
    letter-spacing: 1px;
}


/* --- קטגוריות: כפתורי קפסולה (Pills) --- */
.category-pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 850px;
    margin: 50px auto 40px;
}

.cat-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 14px 28px;
    border-radius: 50px;
    color: #333;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.cat-pill i {
    color: var(--luxury-gold);
    font-size: 1.3rem;
    transition: 0.3s;
}

.cat-pill:hover {
    border-color: var(--luxury-gold);
    background: #fffdf5;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.15);
    color: var(--deep-black);
}

.cat-pill:hover i {
    transform: scale(1.1);
}

/* --- רשתות חברתיות בהירו (כולל פסי זהב) --- */
.social-divider { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 40px 0 20px; 
    color: var(--luxury-gold); 
    font-weight: 700; 
    font-size: 0.95rem; 
    letter-spacing: 1px; 
}
.social-divider::before, .social-divider::after { 
    content: ""; 
    flex: 0 1 60px; 
    height: 1.5px; 
    background-color: var(--luxury-gold); 
    margin: 0 15px; 
    opacity: 0.7; 
}

.social-nav { display: flex; justify-content: center; gap: 15px; }
.social-btn { 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.3rem; 
    border: 1px solid var(--luxury-gold); /* מסגרת זהב */
    color: var(--luxury-gold); /* אייקון זהב */
    background: #fff; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.social-btn.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: white; border-color: transparent; transform: rotate(15deg) scale(1.1); box-shadow: 0 10px 20px rgba(214, 36, 159, 0.3);}
.social-btn.tiktok:hover { background-color: #000000; color: white; border-color: #000000; transform: rotate(-15deg) scale(1.1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);}
.social-btn.facebook:hover { background-color: #1877F2; color: white; border-color: #1877F2; transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);}

/* התאמות למובייל ל-Hero החדש */
@media (max-width: 768px) {
    .hero-title-outlined { font-size: 4.5rem; -webkit-text-stroke: 1.5px var(--luxury-gold); }
    .hero-subtitle { font-size: 1.2rem; }
    .cat-pill { padding: 10px 20px; font-size: 1rem; width: 45%; justify-content: center; } /* מסדר בזוגות */
    .hero-bg-circle { width: 300px; height: 300px; }
  .hero-bg-circle.top-left { top: -100px; left: -100px; }
.hero-bg-circle.bottom-right { bottom: -100px; right: -100px; }
    .nav-cart-btn { padding: 6px 12px; }
}

/* =========================================
   מכאן ממשיך "מערכת רקע יוקרתית ואחידה..."
   ========================================= */



/* =========================================
   מערכת רקע יוקרתית ואחידה לכל האתר (שמנת + עיגולי זהב)
   ========================================= */
body {
    background-color: #fdfbf5; /* רקע שמנת שחולש על כל האתר */
}

.menu-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden; 
    z-index: 1;
}

.menu-section .container {
    position: relative;
    z-index: 2; 
}

/* הגדרת בסיס לעיגולים - צורה חדה, מלאה ומוצקה (כמו באפליקציה) */
.menu-section::before, 
.menu-section::after {
    content: ''; 
    position: absolute; 
    width: 400px; 
    height: 400px; 
    background-color: #cda260; /* צבע אטום ושטוח לחלוטין (מוקה/זהב) */
    border-radius: 50%; 
    z-index: -1; 
    pointer-events: none;
    opacity: 0.4; /* שקיפות קלה כדי לא להעלים את הטקסט שמעל, אבל הצורה נשארת חדה */
}

/* מקטע סוג A (עיגול ימין-למעלה ושמאל-למטה) */
.menu-section-a::before { top: -200px; right: -200px; }
.menu-section-a::after { bottom: -200px; left: -200px; }

/* מקטע סוג B (עיגול שמאל-למעלה וימין-למטה - מתחבר בדיוק ל-A) */
.menu-section-b::before { top: -200px; left: -200px; }
.menu-section-b::after { bottom: -200px; right: -200px; }

/* התאמות למובייל - עיגולים מוקטנים שיישבו בדיוק בפינות */
@media (max-width: 991px) {
    .menu-section { padding: 50px 0; }
    
    .menu-section::before, 
    .menu-section::after {
        width: 250px; height: 250px;
    }
    
    .menu-section-a::before { top: -125px; right: -125px; }
    .menu-section-a::after { bottom: -125px; left: -125px; }
    
    .menu-section-b::before { top: -125px; left: -125px; }
    .menu-section-b::after { bottom: -125px; right: -125px; }
}

/* =========================================
   עיצובים כלליים לכרטיסיות מוצר וכותרות
   ========================================= */
.luxury-title-wrap { display: inline-block; position: relative; }
.title-gold-line { width: 60px; height: 4px; background-color: var(--luxury-gold); margin: 10px auto 25px; border-radius: 10px; }
.section-title.display-6 { font-family: 'Rubik', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--deep-black); letter-spacing: -1px; margin-bottom: 0.5rem; }

/* כרטיסיות מוארכות (יוגורט, וופל, קרפ) */
.yogurt-size-card { background: #fff; border-radius: 20px; padding: 12px 12px 20px 12px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: all 0.3s ease; border: 1px solid #f0f0f0; position: relative; display: flex; flex-direction: column; }
.yogurt-size-card.with-frame { border: 2px solid #e0e0e0; }
.yogurt-size-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(197, 160, 89, 0.15); border-color: var(--luxury-gold); }

/* הדגשה לכרטיסיות פרימיום (אמצעיות/שחיתות) */
.yogurt-size-card.popular.emphasize { border: 3px solid var(--luxury-gold); box-shadow: 0 10px 25px rgba(197, 160, 89, 0.2); }
.yogurt-size-card.popular.emphasize:hover { box-shadow: 0 18px 45px rgba(197, 160, 89, 0.3); }

/* תג שחיתות / הכי נמכר עליון */
.badge-label { position: absolute; top: 15px; right: -10px; background: var(--deep-black); color: var(--luxury-gold); font-size: 0.8rem; padding: 4px 15px; border-radius: 20px 0 0 20px; font-weight: 900; z-index: 5; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }

/* תמונות מוארכות */
.img-wrapper.tall { height: 240px; border-radius: 12px; overflow: hidden; margin-bottom: 12px; background: #fcfcfc; }
.img-wrapper.tall img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.yogurt-size-card:hover img { transform: scale(1.08); }

/* טיפוגרפיה לכרטיסיות */
.yogurt-size-card h4 { font-size: 1.3rem; }
.yogurt-size-card .price { font-size: 1.5rem; font-weight: 900; font-family: 'Rubik', sans-serif; }
.build-hint { font-size: 0.9rem; color: var(--luxury-gold); font-weight: 700; margin-top: 15px; opacity: 0.7; transition: 0.3s; }
.yogurt-size-card:hover .build-hint { opacity: 1; transform: translateX(-5px); }

/* כרטיסיות צד קומפקטיות (גלידה, מארזים) */
.compact-size-card { background: #fff; border: 1px solid #f0f0f0 !important; border-radius: 20px !important; padding: 25px 15px; text-align: center; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.03); position: relative; color: #333; }
.compact-size-card:hover { transform: translateY(-5px); border-color: var(--luxury-gold) !important; box-shadow: 0 12px 30px rgba(197, 160, 89, 0.15); }
.gold-icon-sm { font-size: 1.8rem; color: var(--luxury-gold); margin-bottom: 10px; }
.limit-tag { font-size: 0.8rem; color: #888; font-weight: 600; text-transform: uppercase; background: #f8f9fa; padding: 4px 12px; border-radius: 50px; display: inline-block; margin: 10px 0; border: 1px solid #eee; }
.compact-price { font-weight: 900; font-size: 1.3rem; }
.highlight-card { background: #fffdf5; border: 1px solid var(--luxury-gold-border) !important; }

/* כרטיסיות ישנות (קרפ, קיורטוש שטרם שונו) */
.product-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid #eee; position: relative; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.product-card.premium { border: 2px solid var(--luxury-gold-border) !important; border-radius: 20px; background-color: #fffdf5; box-shadow: 0 10px 30px rgba(197, 160, 89, 0.15); transition: all 0.4s ease; }
.product-card.premium:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(197, 160, 89, 0.4); border-color: var(--bright-gold-active) !important; }
.badge-shichitut { position: absolute; top: 15px; right: -35px; background: #d4af37; color: #fff; padding: 5px 40px; font-weight: bold; font-size: 0.9rem; transform: rotate(45deg); z-index: 10; box-shadow: 0 2px 10px rgba(0,0,0,0.2); width: 150px; text-align: center; }
.img-wrapper-product { height: 450px; overflow: hidden; position: relative; border-radius: 15px 15px 0 0; }
.img-wrapper-product img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-card:hover .img-wrapper-product img { transform: scale(1.05); }
.product-features { list-style: none; padding: 0; margin: 0; text-align: right; display: inline-block; min-width: 200px; }
.product-features li { padding: 8px 0; border-bottom: 1px dashed #eee; font-size: 1.05rem; direction: rtl; }
.product-features li:last-child { border-bottom: none; }
.product-features i { width: 25px; text-align: center; }
.price-tag { font-size: 2.2rem; font-weight: 900; font-family: 'Rubik', sans-serif; color: var(--deep-black); }


/* =========================================
   מקטע הגלידה - כרטיס דובאי
   ========================================= */
.dubai-card-center-light { background: #fff; border-radius: 30px; overflow: hidden; position: relative; height: 550px; border: 2px solid var(--luxury-gold-border); transition: all 0.4s ease; box-shadow: 0 15px 35px rgba(0,0,0,0.08); display: flex; flex-direction: column; }
.dubai-card-center-light:hover { transform: scale(1.02); box-shadow: 0 20px 50px rgba(197, 160, 89, 0.15); }
.dubai-img-wrap-light { flex-grow: 1; width: 100%; overflow: hidden; position: relative; } 
.dubai-img-wrap-light img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dubai-card-center-light:hover .dubai-img-wrap-light img { transform: scale(1.05); }
.dubai-text-box-light { position: relative; z-index: 2; background: #fff; border-top: 1px solid #f0f0f0; }

.dubai-badge-special-red { position: absolute; top: 15px; right: -35px; background: #dc3545; color: #fff; font-size: 0.85rem; font-weight: 900; padding: 6px 40px; transform: rotate(45deg); z-index: 10; box-shadow: 0 2px 10px rgba(0,0,0,0.2); width: 150px; text-align: center; letter-spacing: 1px; }

/* מודל דובאי קונפיגורטור */
.dubai-size-selector { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.dubai-size-btn { flex: 1; min-width: 90px; background: #fff; border: 2px solid #eaeaea; border-radius: 15px; padding: 15px 10px; cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); display: flex; flex-direction: column; align-items: center; gap: 5px; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.dubai-size-btn:hover { border-color: var(--luxury-gold); background: #fffdf5; }
.dubai-size-btn.active { border-color: var(--luxury-gold); background: #fffdf5; box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2); transform: translateY(-3px); }
.dubai-size-btn .size-title { font-weight: 800; color: #333; font-size: 1.1rem; }
.dubai-size-btn .size-price { color: #888; font-size: 0.95rem; transition: 0.3s; }
.dubai-size-btn.active .size-price { color: var(--luxury-gold); font-weight: 900; }
.qty-controls { display: flex; align-items: center; justify-content: center; gap: 20px; background: #f8f9fa; width: fit-content; padding: 5px 15px; border-radius: 50px; border: 1px solid #eee; }
.qty-btn { background: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.08); cursor: pointer; transition: 0.2s; color: #333; font-size: 1rem; }
.qty-btn:hover { background: #eee; transform: scale(1.1); }
.qty-display { font-size: 1.5rem; font-weight: 900; color: var(--deep-black); min-width: 30px; text-align: center; }

#dubaiPremiumModal .modal-content { background-color: #ffffff; height: auto !important; min-height: unset !important; padding-top: 30px; }
#dubaiPremiumModal .modal-header { position: absolute; top: 0; right: 0; z-index: 10; border: none; background: transparent !important; padding: 20px; margin: 0; }
#dubaiPremiumModal .btn-close { font-size: 1.2rem; color: #999; opacity: 0.7; transition: all 0.3s ease; margin: 0; box-shadow: none !important; }
#dubaiPremiumModal .btn-close:hover { opacity: 1; color: #e74c3c; transform: rotate(90deg) scale(1.1); }
#dubaiPremiumModal .modal-body { padding-bottom: 25px !important; }
#dubaiPremiumModal .mb-4 { margin-bottom: 1.25rem !important; }


/* =========================================
   מקטע היוגורט - באנר הטבה
   ========================================= */
.soft-deal-banner { background: linear-gradient(135deg, #fffdf5, #fafafa); border-radius: 25px; padding: 20px 25px; display: flex; align-items: center; gap: 20px; box-shadow: 0 5px 15px rgba(197, 160, 89, 0.08); border: 1px solid rgba(197, 160, 89, 0.2); position: relative; overflow: hidden; }
.soft-deal-banner::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 5px; background: var(--luxury-gold); }
.deal-icon-wrap { width: 60px; height: 60px; background: rgba(197, 160, 89, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--luxury-gold); flex-shrink: 0; }
.deal-text p { font-size: 1.05rem; }
.text-gold { color: var(--luxury-gold); font-weight: 900; }


/* =========================================
   מקטע וופל בלגי - פיצ'רים ותג שחיתות באלכסון
   ========================================= */
.waffle-card { position: relative; overflow: hidden; } /* חובה לתג האדום שיחתך נכון */

.shichitut-ribbon { 
    position: absolute; top: 20px; right: -35px; background: #dc3545; color: white; 
    padding: 7px 40px; font-size: 0.9rem; font-weight: 800; z-index: 10; 
    transform: rotate(45deg); box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3); 
    text-align: center; letter-spacing: 1px; 
}

.waffle-features-box { background: #fffdf5; border-radius: 15px; padding: 10px; margin: 5px 0 15px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(197, 160, 89, 0.1); }
.waffle-feature-item { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.waffle-feature-item i { font-size: 0.9rem; }
.waffle-feature-item span { font-size: 0.95rem; font-weight: 700; color: #444; }
.waffle-features-box small { font-size: 0.75rem; font-weight: 600; }
.yogurt-size-card.popular.emphasize .waffle-features-box { border: 1px solid rgba(197, 160, 89, 0.3); background: rgba(197, 160, 89, 0.05); }


/* =========================================
   רכיבים כלליים - שתייה, אודות, קרוסלה
   ========================================= */
.drinks-highlight-card { background: #fffdf5; border: 2px solid var(--luxury-gold); border-radius: 15px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.drink-cat-title { font-weight: 700; color: var(--deep-black); margin-bottom: 10px; }
.fruits-tags span { display: inline-block; background: white; border: 1px solid #ddd; padding: 4px 10px; border-radius: 20px; font-size: 0.9rem; margin: 3px; color: #555; }
.price-box { background: var(--deep-black); color: var(--luxury-gold); display: inline-block; padding: 8px 20px; border-radius: 50px; font-size: 1.1rem; }
.gold-divider { border-top: 1px dashed var(--luxury-gold); opacity: 0.5; margin: 30px 0; }
.simple-menu-card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.02); border-right: 4px solid var(--deep-black); }
.menu-header { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; color: var(--deep-black); border-bottom: 1px solid #eee; padding-bottom: 10px; }
.clean-list { list-style: none; padding: 0; margin: 0; }
.clean-list li { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; font-size: 1.1rem; border-bottom: 1px dotted #ccc; padding-bottom: 5px; }
.clean-list li span:first-child { background: white; padding-left: 10px; position: relative; top: 10px; z-index: 1; }
.clean-list li .price { font-weight: 700; color: var(--deep-black); background: white; padding-right: 10px; position: relative; top: 10px; z-index: 1; }

.event-image-wrapper { border: 2px solid var(--luxury-gold); padding: 10px; border-radius: 20px; }
.event-image-wrapper img { width: 100%; height: 400px; object-fit: cover; border-radius: 15px; filter: brightness(0.9); }
.contact-box { padding: 20px; border-radius: 15px; transition: 0.3s; }
.contact-box:hover { background: #fffdf5; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* =========================================
   גלריה יוקרתית (מחליף את הקוד הקיים של הגלריה)
   ========================================= */
.gallery-card { 
    border-radius: 25px; 
    overflow: hidden; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.04); 
    background: #fff; 
    border: 1px solid #f0f0f0;
    position: relative; 
    transition: all 0.4s ease; 
}

.gallery-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.15);
    border-color: var(--luxury-gold);
}

.gallery-img, .gallery-video { 
    height: 350px; /* הקטנתי מעט שייראה פרופורציונלי */
    width: 100%; 
    object-fit: cover; 
}

.card-footer-custom { 
    padding: 20px; 
    text-align: center; /* מרכוז משדר יוקרה */
    background: #fff; 
    border-top: 1px solid #f9f9f9;
}

.card-footer-custom h5 { 
    margin: 0; 
    font-size: 1.15rem; 
    color: var(--deep-black); 
}

/* חיצים מעוצבים לקרוסלה (במקום הדיפולט של בוטסטראפ) */
.custom-arrow {
    width: 35px !important;
    height: 35px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border-radius: 50%;
    top: 50% !important;
    transform: translateY(-50%);
    margin: 0 10px;
    opacity: 0 !important; /* מוסתר כברירת מחדל */
    transition: 0.3s !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--deep-black) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-card:hover .custom-arrow {
    opacity: 1 !important; /* מופיע כשהעכבר על הכרטיסייה */
}

.custom-arrow:hover {
    background: var(--luxury-gold) !important;
    color: #fff !important;
}

/* נקודות ניווט מעוצבות */
.custom-indicators { margin-bottom: 10px; }
.custom-indicators button { 
    width: 8px !important; 
    height: 8px !important; 
    border-radius: 50%; 
    background-color: rgba(255, 255, 255, 0.5) !important; 
    border: none !important;
}
.custom-indicators .active { 
    background-color: var(--luxury-gold) !important; 
    transform: scale(1.3); 
}

/* עיצוב אייקון הפליי של הוידאו */
.video-card { position: relative; cursor: pointer; }
.video-overlay-icon { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    font-size: 2rem; 
    color: var(--deep-black); 
    background: rgba(255, 255, 255, 0.85); 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    opacity: 0; 
    transition: 0.3s ease; 
    pointer-events: none; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.video-card.paused .video-overlay-icon { opacity: 1; }
.video-card:hover .video-overlay-icon { opacity: 0.8; }

/* אפקט אפור למוצרים שעוד לא יצאו */
.grayscale-filter { filter: saturate(0.5); pointer-events: none; }
.grayscale-filter img { opacity: 0.7; }

/* פופאפ וולקאם קטן */



/* =========================================
   התאמה למסכים קטנים (Mobile Media Queries)
   ========================================= */
@media (max-width: 991px) {
    .menu-section { padding: 50px 0; }
    
    .menu-section-a::before, .menu-section-a::after, 
    .menu-section-b::before, .menu-section-b::after {
        width: 250px; height: 250px;
    }
    
    /* --- התיקון כאן! הכל על מינוס 125 כדי שהחצאים ייפגשו בדיוק באמצע --- */
    .menu-section-a::before { top: -125px; right: -125px; }
    .menu-section-a::after { bottom: -125px; left: -125px; }
    .menu-section-b::before { top: -125px; left: -125px; }
    .menu-section-b::after { bottom: -125px; right: -125px; }

    /* שאר הדברים שיש שם... (dubai-card, compact-size, וכו') נשארים אותו דבר */

    .dubai-card-center-light { height: 400px; margin-bottom: 15px; } 
    .compact-size-card { padding: 18px 10px; }
    .gold-icon-sm { font-size: 1.5rem; }
    .compact-price { font-size: 1.15rem; }
}

@media (max-width: 768px) {
    .img-wrapper.tall { height: 180px; } 
    .yogurt-size-card h4 { font-size: 1.15rem; }
    .yogurt-size-card .price { font-size: 1.3rem; }
    .build-hint { font-size: 0.8rem; margin-top: 10px; }
    .soft-deal-banner { flex-direction: column; text-align: center; padding: 20px; gap: 15px; }
    .deal-icon-wrap { width: 50px; height: 50px; font-size: 1.5rem; }
    .deal-text p { font-size: 0.95rem; }
    
    .shichitut-ribbon { font-size: 0.75rem; padding: 5px 35px; top: 15px; right: -30px; }
    .waffle-feature-item span { font-size: 0.85rem; }

    
}





/* =========================================
   מקטע אודות - סנכרון סופי ומדויק
   ========================================= */
.about-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    z-index: 1;
    background-color: #fdfbf5; /* שמנת אחיד */
}

/* יצירת העיגולים בדיוק כמו ב-menu-section המקורי שלך */
.about-section::before, 
.about-section::after {
    content: ''; 
    position: absolute; 
    width: 400px; 
    height: 400px; 
    background-color: #cda260; 
    border-radius: 50%; 
    z-index: -1; 
    pointer-events: none;
    opacity: 0.4;
}

/* מיקום לפי סגנון A - כדי ליצור ניגודיות למקטע השתייה שמעליו */
.about-section::before { 
    top: -200px; 
    right: -200px; /* צד ימין למעלה */
}
.about-section::after { 
    bottom: -200px; 
    left: -200px; /* צד שמאל למטה */
}

.story-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-quote {
    display: block;
    margin-top: 25px;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--coffee-text);
}

/* כרטיסיות ערכים */
.value-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--luxury-gold);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.15);
}

.value-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--luxury-gold);
}

/* התאמה למובייל - חובה להכניס לתוך ה-Media Query */
@media (max-width: 991px) {
    .about-section { padding: 60px 0; }
    .about-section::before, 
    .about-section::after { 
        width: 250px; 
        height: 250px; 
    }
    .about-section::before { top: -125px; right: -125px; }
    .about-section::after { bottom: -125px; left: -125px; }
}










/* =========================================
   מקטע אירועים - סנכרון צדדים וגודל (מסגרת זהב ותמונה רחבה)
   ========================================= */

.event-image-container {
    padding: 12px; /* נותן שוליים פנימיים לבנים כמו פספרטו של תמונה */
    background: #fff;
    border-radius: 25px;
    border: 2px solid var(--luxury-gold); /* מסגרת זהב יוקרתית */
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.15); /* הילה זהובה עדינה מסביב */
    width: 100%; /* הגדלנו את התמונה (הייתה 85%) */
    aspect-ratio: 16 / 9; /* הופך את התמונה לרחבה (מלבן קולנועי) */
    display: flex; /* עוזר למרכז את התמונה בפנים */
}

.event-image-container img {
    border-radius: 15px; /* עיגול קל שמתאים למסגרת */
    width: 100%;
    height: 100%;
    object-fit: cover; /* חותך את התמונה מושלם לרוחב בלי לעוות אותה */
}

.event-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 12px; /* רווח קבוע בין האייקון לטקסט */
    font-weight: 600;
    color: #444;
}

.event-item i {
    color: var(--luxury-gold);
    font-size: 1.1rem;
}

/* כפתור וואטסאפ */
.btn-event-wa {
    background: var(--dark);
    color: var(--luxury-gold);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border: 1px solid var(--luxury-gold);
}

.btn-event-wa:hover {
    background: var(--luxury-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.2);
}

/* התאמה למובייל */
@media (max-width: 991px) {
    .event-image-container {
        max-width: 100%;
        margin-top: 20px;
        aspect-ratio: 4 / 3; /* במובייל עדיף קצת פחות רחב כדי שיראו טוב */
    }
    .event-item {
        justify-content: center;
    }
    .btn-event-wa {
        width: 100%;
        justify-content: center;
    }
}










/* --- תוספות בצד --- */
.extra-icon-bg {
    font-size: 3rem;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.compact-size-card:hover .extra-icon-bg {
    transform: scale(1.15) rotate(5deg);
}
.cursor-pointer { cursor: pointer; }

/* רשימת רטבים ותוספות במודל */
.side-cat-title {
    font-weight: 800;
    color: var(--luxury-gold);
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin: 20px 0 15px;
}
.topping-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}
.topping-item-name {
    font-weight: 600;
    color: #333;
}
.topping-item-price {
    font-size: 0.85rem;
    color: #888;
}





/* =========================================
   באנר דרושים
   ========================================= */
.jobs-banner {
    background: linear-gradient(135deg, #ffffff 0%, #fffdf5 100%);
    border-radius: 30px;
    padding: 35px 40px;
    border: 2px solid rgba(197, 160, 89, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jobs-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15) !important;
    border-color: rgba(197, 160, 89, 0.4);
}

/* הפס הזהוב בצד ימין - סטייל יוקרתי */
.jobs-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 8px;
    background: var(--luxury-gold);
}

.jobs-icon-wrap {
    width: 65px;
    height: 65px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.text-gold {
    color: var(--luxury-gold);
}

/* התאמות קטנות למובייל לבאנר הדרושים */
@media (max-width: 768px) {
    .jobs-banner {
        padding: 25px 20px;
        border-radius: 20px;
    }
}




/* =========================================
   כפתורי פעולה יוקרתיים (דרושים / כללי)
   ========================================= */
.btn-dark-luxury {
    background: #121212;
    color: var(--luxury-gold);
    border: 1px solid var(--luxury-gold);
    border-radius: 15px;
    padding: 14px 20px;
    font-size: 1.1rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-dark-luxury:hover {
    background: var(--luxury-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3) !important;
}

.btn-dark-luxury i {
    transition: 0.3s ease;
}

.btn-dark-luxury:hover i {
    color: #fff !important; /* שהאייקון של הוואטסאפ יהפוך ללבן כשיש הבר */
    transform: scale(1.1);
}









/* =========================================
   לוח צור קשר פרימיום
   ========================================= */
.contact-premium-board {
    background: rgba(255, 255, 255, 0.85); /* אפקט זכוכית עדין */
    backdrop-filter: blur(15px);
    border-radius: 35px;
    padding: 10px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    position: relative;
    z-index: 2;
}

.contact-col {
    padding: 40px 20px;
    transition: 0.3s ease;
    border-radius: 25px;
}

.contact-col:hover {
    background: #fffdf5; /* רקע עדין כשעוברים על העמודה */
}

/* הקווים המפרידים בעמודה האמצעית */
.middle-col {
    border-right: 1px dashed rgba(197, 160, 89, 0.3);
    border-left: 1px dashed rgba(197, 160, 89, 0.3);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--luxury-gold);
    border: 2px solid rgba(197, 160, 89, 0.3);
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* אפקט ריחוף לאייקונים */
.contact-col:hover .contact-icon-wrapper {
    background: var(--luxury-gold);
    color: #fff;
    transform: scale(1.1) translateY(-8px);
    border-color: var(--luxury-gold);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* עיצוב מיוחד למספר הטלפון */
.phone-link {
    color: #444;
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.phone-link:hover {
    color: var(--luxury-gold);
    letter-spacing: 2px; /* הטקסט מתרווח במעבר עכבר */
}

/* התאמות למסכים קטנים (מובייל) */
@media (max-width: 768px) {
    .middle-col {
        /* במובייל זה הופך מטורות לשורות, אז הקווים משתנים למעלה ולמטה */
        border-right: none;
        border-left: none;
        border-top: 1px dashed rgba(197, 160, 89, 0.3);
        border-bottom: 1px dashed rgba(197, 160, 89, 0.3);
    }
    .contact-col {
        padding: 35px 15px;
    }
}





/* =========================================
   פוטר יוקרתי (מתוקן)
   ========================================= */
.footer-section {
    background: linear-gradient(to bottom, #1a1a1a 0%, #111111 100%);
    color: #ffffff;
    border-top: 3px solid var(--luxury-gold);
    margin-top: 50px; /* הקטנתי את המרווח העליון */
}

.footer-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f0d085 0%, #C5A059 100%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
    border: 3px solid #fdfbf5;
    z-index: 10;
}

.footer-logo {
    width: 160px; /* קצת יותר קטן ומעודן */
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: #fff;
    padding: 5px;
}

/* כל הטקסטים בפוטר הופכים ללבן קריא וברור */
.footer-desc {
    color: #f0f0f0; 
    font-size: 0.95rem; 
    line-height: 1.6;
}

.footer-contact-info div {
    color: #f0f0f0;
    font-size: 1rem;
    font-weight: 500;
}

.text-gold {
    color: var(--luxury-gold);
}

/* כותרות ופס תחתון (מיושרות לימין) */
.footer-title-wrap {
    display: inline-block;
}

.footer-title {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-gold-line {
    width: 30px;
    height: 3px;
    background: var(--luxury-gold);
    margin-top: 5px;
    border-radius: 2px;
}

/* קישורים מהירים */
.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: #f0f0f0; /* טקסט לבן וקריא */
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
}

/* חץ של הקישורים */
.footer-links a i {
    font-size: 0.7rem;
    margin-left: 8px; /* מרווח משמאל לאייקון כדי שיהיה מימין לטקסט */
    color: var(--luxury-gold);
    opacity: 0;
    transform: translateX(10px); /* זז ימינה ב-RTL */
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--luxury-gold);
    transform: translateX(-5px); /* האפקט נשאר נקי */
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* רשתות חברתיות */
.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.social-circle:hover { color: #fff; border-color: transparent; }
.social-circle.tiktok:hover { background: #000000; box-shadow: 0 5px 15px rgba(255,255,255,0.2); transform: translateY(-3px); }
.social-circle.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); box-shadow: 0 5px 15px rgba(214, 36, 159, 0.3); transform: translateY(-3px); }
.social-circle.facebook:hover { background: #1877F2; box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3); transform: translateY(-3px); }

/* פס תחתון של זכויות יוצרים */
.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); 
}

/* התאמות למובייל */
@media (max-width: 767px) {
    /* במובייל ממורכז הכל לפי התמונה ששלחת */
    .row.text-end { text-align: center !important; }
    .footer-title-wrap { display: flex; flex-direction: column; align-items: center; }
    .footer-social-wrapper { justify-content: center; }
    .footer-links a { justify-content: center; }
    .footer-links a:hover { transform: translateX(0); }
    .footer-bottom .text-md-start { text-align: center !important; margin-top: 10px; }
}



/* מוודא שההתראות של SweetAlert תמיד יקפצו מעל המודלים של האתר */
.swal2-container {
    z-index: 99999 !important;
}

/* =========================================
   התאמות לתפריט העליון במובייל (Navbar)
   ========================================= */
@media (max-width: 768px) {
    .nav-auth-wrapper button, 
    .nav-auth-wrapper .dropdown-toggle {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    .nav-cart-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
        gap: 5px;
    }
    .navbar-logo {
        height: 38px; 
    }
    .nav-actions {
        gap: 8px !important; 
    }
}



/* =========================================
   התאמות מקטע אודות למובייל (חיסכון במקום)
   ========================================= */
@media (max-width: 768px) {
    /* מקטין את הרווחים הכלליים של האזור */
    .about-section {
        padding: 40px 0 20px 0; 
    }
    
    /* מהדק את טקסט הסיפור */
    .story-text {
        font-size: 1rem; 
        line-height: 1.6;
        padding: 0 10px;
    }
    
    /* מקטין את ציטוט המחץ */
    .highlight-quote {
        font-size: 1.2rem;
        margin-top: 15px;
    }
    
    /* הופך את כרטיסיות הערכים (משפחתיות, איכות...) לקומפקטיות משמעותית */
    .value-card {
        padding: 20px 15px; 
    }
    
    /* מקטין את האייקונים שבתוך הכרטיסיות */
    .value-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin: 0 auto 10px;
    }
    
    /* מקטין את כותרות הכרטיסיות */
    .value-card h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    /* מונע רווח מיותר מתחת לטקסט בכרטיסייה */
    .value-card p {
        margin-bottom: 0;
    }
}

/* =========================================
   התאמות אזור "בואו לבקר" (צור קשר) למובייל
   ========================================= */
@media (max-width: 768px) {
    /* מקטין את הריפוד הפנימי של כל קובייה */
    .contact-col {
        padding: 20px 10px; 
    }
    
    /* מקטין את העיגול של האייקון (מיקום, טלפון, שעון) */
    .contact-icon-wrapper {
        width: 55px; 
        height: 55px;
        font-size: 1.4rem;
        margin: 0 auto 12px; /* מצמצם את הרווח מתחת לאייקון */
    }
    
    /* מקטין את הכותרות (הכתובת שלנו, שעות פתיחה...) */
    .contact-col h4 {
        font-size: 1.2rem;
    }
    
    /* מקטין את הטקסטים והרשימות כדי שיכנסו יפה */
    .contact-col p, 
    .contact-col ul {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    
    /* מקטין את מספר הטלפון הלחיץ */
    .phone-link {
        font-size: 1.25rem;
    }
    
    /* מכווץ את כפתור "נווטו אלינו" שיהיה יותר עדין */
    .contact-col .btn-dark-luxury {
        padding: 8px 18px !important; 
        font-size: 0.95rem !important;
    }

    /* משאיר את הקווים המפרידים בין הקוביות יפים וברורים */
    .middle-col {
        border-right: none;
        border-left: none;
        border-top: 1px dashed rgba(197, 160, 89, 0.3);
        border-bottom: 1px dashed rgba(197, 160, 89, 0.3);
    }
}
/* =========================================
   תיקון כיוון עיגולי הרקע במובייל (בגלל הסתרת הגלריה)
   ========================================= */
@media (max-width: 767px) {
    /* הופך את העיגול העליון משמאל לימין */
    #contact::before {
        left: auto;
        right: -125px;
    }
    
    /* הופך את העיגול התחתון מימין לשמאל */
    #contact::after {
        right: auto;
        left: -125px;
    }
}

/* =========================================
   התאמות ומרכוז התפריט העליון במובייל 
   (הקוד הזה דורס הגדרות קודמות ומסדר הכל)
   ========================================= */
@media (max-width: 768px) {
    /* נותן קצת יותר אוויר לסרגל עצמו מלמעלה ולמטה */
    .custom-navbar {
        padding: 12px 0 !important;
    }

    /* הגדלה קלה של כפתורי ההתחברות והעגלה כדי שיהיו נוחים ללחיצה באצבע */
    .nav-auth-wrapper button, 
    .nav-auth-wrapper .dropdown-toggle {
        padding: 8px 14px !important;
        font-size: 0.9rem !important;
    }
    .nav-cart-btn {
        padding: 8px 14px !important;
        font-size: 0.9rem !important;
        gap: 6px !important;
    }
    
    /* הגדלה קלה של הלוגו */
    .navbar-logo {
        height: 42px !important; 
    }
    
    /* מרכוז העגלה וההתחברות לאמצע המסך */
    .nav-actions {
        flex-grow: 1 !important; 
        justify-content: center !important; 
        position: relative !important; 
        gap: 10px !important; /* טיפה יותר רווח בין העגלה להתחברות */
    }
    
    /* דחיפת כפתור ההמבורגר לקצה השמאלי והגדלתו מעט */
    .menu-trigger-btn {
        position: absolute !important;
        left: 0 !important; 
        margin-left: 0 !important;
        font-size: 1.4rem !important; /* מגדיל קצת את 3 הפסים של ההמבורגר */
    }
}


/* =========================================
   עיצוב נקי למודל ברוכים הבאים (ללא כפילויות)
   ========================================= */
#welcomeModal {
    z-index: 1060 !important;
}

#welcomeModal .modal-content {
    border-radius: 25px !important;
    background-color: #ffffff !important;
    overflow: hidden !important;
    /* ביטול כל הגבלת גובה */
    height: auto !important;
    min-height: unset !important;
    max-height: 90vh !important; 
    display: flex;
    flex-direction: column;
}

#welcomeModal .modal-body {
    /* ה-flex הזה מאפשר לתוכן להיגלל אם יש צורך, מבלי לחתוך את המסגרת הלבנה */
    flex: 1 1 auto !important;
    overflow-y: auto !important; 
    padding: 25px 20px 35px 20px !important; 
}

@media (max-width: 768px) {
    #welcomeModal .modal-dialog {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 100% !important;
        margin: 0 auto !important;
        padding: 15px !important; /* מרחיק את המודל מקצות המסך בטלפון */
    }

    #welcomeModal h4 { font-size: 1.25rem !important; }
    #welcomeModal .text-muted { font-size: 0.9rem !important; margin-bottom: 12px !important; }
    #welcomeModal div[style*="border"] { padding: 10px !important; margin-bottom: 15px !important; }
    #welcomeModal div[style*="border"] .fs-4 { font-size: 1.3rem !important; }
    #welcomeModal .btn-dark { padding: 10px !important; font-size: 0.95rem !important; }
}
/* =========================================
   תיקון סנכרון עיגולים בין אודות לצור קשר במובייל
   ========================================= */
@media (max-width: 991px) {
    /* מכריח את העיגול העליון של צור קשר לעבור שמאלה */
    #contact::before {
        left: -125px !important;
        right: auto !important;
        top: -125px !important;
    }
    
    /* מכריח את העיגול התחתון של צור קשר לעבור ימינה */
    #contact::after {
        right: -125px !important;
        left: auto !important;
        bottom: -125px !important;
    }
}

/* =========================================
   ביטול זום בלחיצה כפולה על כפתורים במובייל
   (הופך את הלחיצות למהירות ומיידיות כמו באפליקציה)
   ========================================= */
button, 
a, 
input, 
select, 
textarea, 
.qty-btn, 
.dubai-size-btn,
.cat-pill {
    touch-action: manipulation !important;
}