body.contact-body { background: #fdfbf5; min-height: 100vh; font-family: 'Rubik', sans-serif; }
.contact-container { padding-top: 40px; max-width: 500px; margin: 0 auto; padding-bottom: 20px; }

/* ניווט */
.top-nav { display: flex; justify-content: space-between; align-items: center; }
.page-title { color: #121212; font-weight: 900; }
.back-btn { background: #fff; border: 1px solid #eee; border-radius: 50px; padding: 8px 18px; color: var(--coffee-text); font-weight: 700; transition: 0.3s; display: flex; align-items: center; }
.back-btn:hover { background: var(--luxury-gold); color: #fff; border-color: var(--luxury-gold); transform: translateX(3px); }

/* כרטיסיית יצירת קשר */
.contact-card { background: #fff; border-radius: 30px; padding: 35px 25px; border: 1px solid #f0f0f0; }
.icon-circle { width: 75px; height: 75px; border-radius: 50%; background: #fffdf5; color: var(--luxury-gold); font-size: 2rem; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(197, 160, 89, 0.2); box-shadow: 0 5px 15px rgba(197, 160, 89, 0.05); }

/* שדות קלט פרימיום */
.custom-input { background: #fdfdfd; padding: 15px; border-radius: 15px; border: 1.5px solid #eaeaea; font-size: 1rem; color: #121212; transition: 0.3s; resize: none; }
.custom-input::placeholder { color: #bbb; }
.custom-input:focus { border-color: var(--luxury-gold); background: #fff; box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1); outline: none; }
select.custom-input { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5A059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: left 15px center; background-size: 15px; padding-left: 40px; cursor: pointer; }

/* כפתור שליחה */
.btn-dark-luxury { background: #121212; color: #fff; border: none; padding: 16px; font-size: 1.1rem; font-weight: 800; transition: 0.3s; display: flex; justify-content: center; align-items: center; }
.btn-dark-luxury:hover { background: var(--luxury-gold); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3); }
.btn-dark-luxury:disabled { opacity: 0.7; cursor: not-allowed; transform: none; background: #666; }

/* אזור משפטי */
.legal-btn { background: none; border: none; color: #888; font-weight: 600; text-decoration: none; padding: 0; font-size: 0.95rem; transition: 0.2s; border-bottom: 1px solid transparent; }
.legal-btn:hover { color: var(--luxury-gold); border-bottom: 1px solid var(--luxury-gold); }
.contact-modal { border-radius: 25px; background: #fff; }
/* =========================================
   ביטול זום בלחיצה כפולה על כפתורים במובייל
   (הופך את הלחיצות למהירות ומיידיות כמו באפליקציה)
   ========================================= */
button, 
a, 
input, 
select, 
textarea, 
.qty-btn, 
.dubai-size-btn,
.cat-pill {
    touch-action: manipulation !important;
}