/* ===== Hero Hizli Randevu Widget ===== */
.hero-wrap { position: relative; max-width: 1200px; margin: 20px auto 40px; }

/* Panellerin arkasındaki hafif animasyonlu arka plan (masaüstü) */
.hero-wrap-bg { display: none; }

/* ===== Masaüstü: slider ve form yan yana iki panel ===== */
@media (min-width: 993px) {
    /* Tabaka/panel yok — slider ve form doğrudan sayfa üzerinde, arkalarında bloblar */
    .hero-wrap { display: flex; gap: 22px; align-items: stretch; }
    .hero-wrap-bg { display: block; position: absolute; inset: -30px 0; z-index: 0; overflow: hidden; pointer-events: none; }
    /* Statik bloblar — hareket yok (bkz. .hw-bg-anim notu) */
    .hero-wrap-bg span { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.45; }
    .hero-wrap-bg span:nth-child(1){ width: 360px; height: 360px; background: #7cc0ff; top: -30px; left: 4%; }
    .hero-wrap-bg span:nth-child(2){ width: 320px; height: 320px; background: #f3a8ff; bottom: -40px; right: 8%; }
    .hero-wrap-bg span:nth-child(3){ width: 280px; height: 280px; background: #8bf0c4; top: 30%; left: 46%; }

    .hero-slider-floating { position: relative; z-index: 2; flex: 1 1 auto; margin: 0; height: 500px; box-shadow: 0 22px 48px -22px rgba(15,23,42,0.40); }
    /* Form yüksekliği slider ile aynı (stretch); alt kategori açılırsa büyür (scroll yok) */
    .hero-booking-widget { flex: 0 0 372px; width: 372px; max-width: 372px; min-height: 500px; }
    .hero-slide-blur { display: none; }
}

.hero-booking-widget {
    position: relative; z-index: 2;
    width: 366px; max-width: 100%; min-height: 480px; margin: 0 auto;
    background: rgba(255,255,255,0.55);
    -webkit-backdrop-filter: blur(22px) saturate(1.4);
    backdrop-filter: blur(22px) saturate(1.4);
    border-radius: 24px;
    box-shadow: 0 34px 70px -22px rgba(15,23,42,0.55), 0 14px 34px -14px rgba(15,23,42,0.38), inset 0 1px 0 rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.65);
    display: flex; flex-direction: column; overflow: hidden; z-index: 30;
}
/* Kartın arkasında hafif animasyonlu renk lekeleri (glassmorphism) */
.hw-bg-anim { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
/* Bloblar STATİK: hareket yok. Animasyonlu blur'lu katmanlar, üstlerindeki
   backdrop-filter'lı kartı her karede yeniden bulandırmaya zorluyor ve telefonu
   ısıtıyordu. Statik blur bir kez hesaplanır, maliyeti ~sıfırdır. */
.hw-bg-anim span { position: absolute; border-radius: 50%; filter: blur(34px); opacity: 0.42; }
.hw-bg-anim span:nth-child(1){ width: 190px; height: 190px; background: #7cc0ff; top: -50px; left: -40px; }
.hw-bg-anim span:nth-child(2){ width: 170px; height: 170px; background: #f3a8ff; bottom: -50px; right: -30px; }
.hw-bg-anim span:nth-child(3){ width: 150px; height: 150px; background: #8bf0c4; top: 42%; left: 38%; }

/* İçerik katmanları blobların önünde */
.hero-booking-widget .hw-head,
.hero-booking-widget .hw-body,
.hero-booking-widget .hw-foot { position: relative; z-index: 1; }

/* Giriş animasyonu (staggered) */
/* NOT: burada "opacity: 0" TANIMLANMAZ. Animasyon herhangi bir sebeple çalışmazsa
   (iOS Düşük Güç Modu, Hareketi Azalt, arka plana atılmış sekme, throttling)
   element kalıcı olarak görünmez kalırdı. Başlangıç opaklığı keyframe'in "from"
   adımında verilir; animasyon çalışmazsa element doğal haliyle (görünür) kalır. */
.hw-anim { animation: hwIn .5s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes hwIn { from{ opacity: 0; transform: translateY(12px) scale(.96); } to{ opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce){
    .hw-anim { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* Hizmet seçimi — resimli pill butonlar */
/* Hepsi ilk forma sığsın: kompakt butonlar, scroll yok */
.hw-services { display: flex; flex-direction: column; gap: 6px; }
.hw-service { display: flex; align-items: center; gap: 10px; padding: 4px 14px 4px 4px; border: 1.5px solid rgba(226,232,240,0.9); border-radius: 40px; background: rgba(255,255,255,0.8); cursor: pointer; transition: .2s cubic-bezier(.16,1,.3,1); text-align: left; }
.hw-service:hover { border-color: #bfdbfe; transform: translateX(4px); box-shadow: 0 10px 22px -12px rgba(37,99,235,.55); background: rgba(255,255,255,0.95); }
.hw-service.active { border-color: var(--primary); background: rgba(239,246,255,0.92); box-shadow: 0 8px 20px -10px rgba(37,99,235,.5); }
.hw-service-img { width: 34px; height: 34px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #e2e8f0; box-shadow: 0 3px 9px -3px rgba(0,0,0,.35); }
.hw-service-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hw-service-ico { display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; background: #eff6ff; }
.hw-service-name { font-weight: 700; font-size: .85rem; color: #0f172a; line-height: 1.2; }
/* Masaüstü: slider görselinin sağ tarafını flulaştır (form bölgesi arkası) */
.hero-slide-blur {
    position: absolute; top: 0; right: 0; bottom: 0; width: 46%;
    z-index: 3; pointer-events: none;
    -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
    background: linear-gradient(90deg, rgba(15,23,42,0) 0%, rgba(15,23,42,0.18) 60%, rgba(15,23,42,0.30) 100%);
}
.hw-head { padding: 16px 20px 10px; border-bottom: 1px solid rgba(255,255,255,0.5); background: rgba(255,255,255,0.28); }
.hw-brand { font-weight: 800; font-size: 1.02rem; color: #0f172a; display: flex; align-items: center; gap: 8px; }
.hw-brand i { color: var(--primary); }
.hw-progress { display: flex; gap: 6px; margin-top: 10px; }
.hw-dot { flex: 1; height: 4px; border-radius: 4px; background: #e2e8f0; transition: .25s; }
.hw-dot.active { background: var(--primary); }
.hw-dot.done { background: #93c5fd; }
.hw-body { padding: 13px 17px; overflow: visible; flex: 1; transition: opacity .16s ease; }
.hw-body.hw-fading { opacity: 0; }
.hw-step { display: none; }
.hw-step.active { display: block; }
.hw-step-title { font-weight: 800; font-size: .9rem; color: #0f172a; margin-bottom: 9px; }
.hw-mini-label { font-size: .72rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: .4px; margin: 10px 0 7px; }

/* Takvim */
.hw-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.hw-cal-head span { font-weight: 800; font-size: .88rem; color: #0f172a; }
.hw-cal-nav { width: 28px; height: 28px; border-radius: 8px; border: 1px solid #e2e8f0; background: #fff; cursor: pointer; color: #64748b; }
.hw-cal-nav:hover { background: #eff6ff; color: var(--primary); }
.hw-cal-week { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; text-align: center; font-size: .62rem; font-weight: 700; color: #94a3b8; margin-bottom: 3px; }
.hw-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.hw-cal-empty { height: 26px; }
.hw-cal-day { height: 26px; border: none; background: #f8fafc; border-radius: 7px; font-size: .73rem; font-weight: 700; color: #334155; cursor: pointer; transition: .12s; padding: 0; }
.hw-cal-day:hover:not(.disabled) { background: #dbeafe; color: var(--primary); }
.hw-cal-day.disabled { opacity: .32; cursor: not-allowed; }
.hw-cal-day.sel { background: var(--primary); color: #fff; box-shadow: 0 4px 12px -4px rgba(37,99,235,.7); }

/* Pills */
.hw-pills { display: flex; flex-wrap: wrap; gap: 7px; }
#hwCats::-webkit-scrollbar, .hw-body::-webkit-scrollbar { width: 5px; }
#hwCats::-webkit-scrollbar-thumb, .hw-body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
.hw-pill { padding: 7px 12px; border-radius: 30px; border: 1.5px solid #e2e8f0; background: #fff; font-size: .8rem; font-weight: 700; color: #475569; cursor: pointer; transition: .15s; }
.hw-pill:hover { border-color: #bfdbfe; }
.hw-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Slotlar */
.hw-slots { display: flex; flex-direction: column; gap: 8px; }
.hw-slot { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 12px; background: #fff; cursor: pointer; text-align: left; transition: .15s; }
.hw-slot span { font-weight: 700; font-size: .85rem; color: #0f172a; }
.hw-slot small { color: #94a3b8; font-size: .72rem; }
.hw-slot .hw-badge { margin-left: auto; font-size: .68rem; font-weight: 800; padding: 2px 8px; border-radius: 20px; }
.hw-badge.ok { background: #dcfce7; color: #15803d; }
.hw-badge.no { background: #fee2e2; color: #b91c1c; }
.hw-slot:hover:not(.disabled) { border-color: #bfdbfe; }
.hw-slot.active { border-color: var(--primary); background: #eff6ff; }
.hw-slot.disabled { opacity: .5; cursor: not-allowed; }

/* Alanlar */
.hw-field { margin-bottom: 12px; }
.hw-field label { display: block; font-size: .76rem; font-weight: 700; color: #475569; margin-bottom: 5px; }
.hw-field input, .hw-field textarea { width: 100%; box-sizing: border-box; padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 12px; font-size: .86rem; font-family: inherit; resize: none; }
.hw-field input:focus, .hw-field textarea:focus { outline: none; border-color: var(--primary); }
.hw-phone { display: flex; align-items: center; border: 1.5px solid #e2e8f0; border-radius: 12px; overflow: hidden; }
.hw-phone span { padding: 10px 12px; background: #f8fafc; font-weight: 700; font-size: .82rem; color: #334155; border-right: 1px solid #e2e8f0; white-space: nowrap; }
.hw-phone input { border: none; border-radius: 0; }
.hw-loc { display: flex; gap: 8px; }
.hw-loc input { flex: 1; }
.hw-loc button { flex-shrink: 0; width: 44px; border: 1.5px solid var(--primary); background: #eff6ff; color: var(--primary); border-radius: 12px; cursor: pointer; }

/* Ozet */
.hw-summary { background: #f8fafc; border-radius: 12px; padding: 10px 14px; margin-bottom: 12px; }
.hw-srow { display: flex; justify-content: space-between; gap: 10px; font-size: .82rem; padding: 3px 0; }
.hw-srow span { color: #64748b; } .hw-srow b { color: #0f172a; text-align: right; }
.hw-offer { display: flex; gap: 8px; margin-bottom: 12px; }
.hw-offer-pill { flex: 1; padding: 10px; border-radius: 30px; border: 1.5px solid #e2e8f0; background: #fff; font-weight: 800; font-size: .84rem; color: #475569; cursor: pointer; transition: .15s; }
.hw-offer-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.hw-offer-pill:disabled { opacity: .45; cursor: not-allowed; }
.hw-pkgs { display: grid; gap: 8px; margin-bottom: 12px; }
.hw-pkg { position: relative; text-align: left; padding: 10px 12px; border: 1.5px solid #e2e8f0; border-radius: 12px; background: #fff; cursor: pointer; display: flex; flex-direction: column; gap: 2px; }
.hw-pkg.active { border-color: var(--primary); background: #eff6ff; }
.hw-pkg-n { font-weight: 700; font-size: .82rem; color: #0f172a; }
.hw-pkg-p { font-weight: 800; color: var(--primary); font-size: .88rem; }
.hw-pkg-d { position: absolute; top: 8px; right: 10px; font-size: .64rem; font-weight: 800; color: #fff; background: #f43f5e; padding: 2px 7px; border-radius: 20px; }
.hw-price-box { text-align: center; background: linear-gradient(135deg,#eff6ff,#dbeafe); border-radius: 14px; padding: 12px; }
.hw-price-box span { font-size: .68rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .5px; display: block; }
.hw-price-box strong { font-size: 1.6rem; font-weight: 900; color: var(--primary); display: block; }
.hw-price-box small { font-size: .72rem; color: #64748b; }
.hw-error { margin-top: 10px; background: #fef2f2; color: #b91c1c; padding: 9px 12px; border-radius: 10px; font-size: .8rem; font-weight: 700; }

/* Footer butonlar */
.hw-foot { display: flex; gap: 10px; padding: 12px 20px; border-top: 1px solid rgba(255,255,255,0.5); background: rgba(255,255,255,0.28); }
.hw-btn-back { padding: 10px 22px; border-radius: 30px; border: 1.5px solid #e2e8f0; background: #fff; font-weight: 700; font-size: .84rem; color: #475569; cursor: pointer; }
.hw-btn-next, .hw-btn-submit { margin-left: auto; padding: 10px 26px; border-radius: 30px; border: none; background: var(--primary); color: #fff; font-weight: 800; font-size: .84rem; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.hw-btn-submit { background: linear-gradient(135deg,#16a34a,#22c55e); }

/* Basari ekrani */
.hw-done { position: absolute; inset: 0; background: #fff; z-index: 40; display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px; }
.hw-done-ic { width: 64px; height: 64px; border-radius: 50%; background: #dcfce7; color: #16a34a; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 16px; }
.hw-done h4 { font-size: 1.15rem; font-weight: 800; color: #0f172a; margin: 0 0 8px; }
.hw-done p { font-size: .86rem; color: #64748b; line-height: 1.5; margin: 0 0 20px; }
.hw-done .hw-btn-next { margin: 0; border-radius: 30px; padding: 11px 30px; }

/* Slider üstü blur katmanı artık gerekmiyor (formlar yan yana / ayrı) */
.hero-slide-blur { display: none; }

/* Responsive: tablet (768-992) — slider üstte, form altında */
@media (max-width: 992px) {
    .hero-wrap { max-width: none; }
    .hero-booking-widget {
        width: auto; max-width: 560px; max-height: none;
        margin: 18px auto 24px; box-shadow: 0 20px 45px -18px rgba(15,23,42,0.4);
    }
    .hw-cal-day, .hw-cal-empty { height: 38px; }
    #hwCats { max-height: none; overflow: visible; }
}

/* Mobil: slider gizlensin, sadece randevu formu görünsün */
@media (max-width: 768px) {
    .hero-slider-floating, .hero-slide-blur { display: none; }
    .hero-booking-widget { margin: 14px 12px 26px; border-radius: 20px; }
    /* Mobilde input odaklanınca zoom yapmasın (iOS): min 16px */
    .hero-booking-widget input,
    .hero-booking-widget textarea,
    .hero-booking-widget select { font-size: 16px !important; }
}

/* ===== Abonelik Paketi Detay Modali ===== */
.pkg-modal { position: fixed; inset: 0; background: rgba(15,23,42,0.55); backdrop-filter: blur(4px); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.pkg-modal.active { display: flex; animation: pkgFade .2s ease; }
@keyframes pkgFade { from{opacity:0;} to{opacity:1;} }
.pkg-modal-card { background: #fff; border-radius: 24px; max-width: 440px; width: 100%; max-height: 88vh; overflow-y: auto; padding: 28px; position: relative; box-shadow: 0 30px 70px -20px rgba(0,0,0,0.5); animation: pkgUp .28s cubic-bezier(.16,1,.3,1); }
@keyframes pkgUp { from{opacity:0; transform:translateY(24px);} to{opacity:1; transform:none;} }
.pkg-modal-close { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 1.8rem; line-height: 1; color: #94a3b8; cursor: pointer; }
.pkg-modal-close:hover { color: #0f172a; }
.pkg-modal-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .75rem; font-weight: 800; color: var(--primary); background: rgba(37,99,235,.1); padding: 6px 14px; border-radius: 30px; }
.pkg-modal-title { font-size: 1.35rem; font-weight: 900; color: #0f172a; margin: 14px 0 8px; }
.pkg-modal-desc { font-size: .9rem; color: #64748b; line-height: 1.55; margin: 0 0 16px; }
.pkg-modal-feats { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 9px; }
.pkg-modal-feats li { font-size: .88rem; color: #334155; display: flex; align-items: flex-start; gap: 9px; line-height: 1.45; }
.pkg-modal-feats li i { color: #16a34a; margin-top: 3px; flex-shrink: 0; }
.pkg-modal-pricebox { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: linear-gradient(135deg,#eff6ff,#dbeafe); border-radius: 16px; padding: 16px 18px; margin-bottom: 16px; }
.pkg-modal-price { font-size: 1.7rem; font-weight: 900; color: var(--primary); }
.pkg-modal-old { font-size: .9rem; color: #94a3b8; text-decoration: line-through; margin-left: 8px; }
.pkg-modal-disc { font-size: .78rem; font-weight: 800; color: #fff; background: linear-gradient(135deg,#f43f5e,#fb7185); padding: 6px 12px; border-radius: 30px; white-space: nowrap; }

/* ===== Abonelik modu: paket banner + tarih notu ===== */
.hw-sub-banner { position: relative; z-index: 1; margin: 12px 17px 0; padding: 13px 15px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(139,92,246,.14)); border: 1px solid rgba(99,102,241,.28); }
.hw-sub-banner-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.hw-sub-tag { font-size: .7rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: .4px; display: inline-flex; align-items: center; gap: 5px; }
.hw-sub-disc { font-size: .66rem; font-weight: 800; color: #fff; background: linear-gradient(135deg,#f43f5e,#fb7185); padding: 3px 9px; border-radius: 20px; }
.hw-sub-name { font-weight: 800; font-size: .98rem; color: #0f172a; line-height: 1.25; }
.hw-sub-meta { font-size: .75rem; color: #475569; margin-top: 3px; display: flex; align-items: center; gap: 6px; }
.hw-sub-meta i { color: var(--primary); }
.hw-sub-price { font-weight: 900; font-size: 1.15rem; color: var(--primary); margin-top: 5px; }
.hw-sub-old { font-size: .8rem; color: #94a3b8; text-decoration: line-through; font-weight: 600; margin-left: 4px; }
.hw-date-note { font-size: .76rem; color: #475569; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 10px;
    padding: 8px 11px; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 7px; line-height: 1.4; }
.hw-date-note i { color: var(--primary); margin-top: 2px; }

/* ===== Dış hizmet alımı: çoklu alt kategori + adet seçimi ===== */
.hw-items { display: flex; flex-direction: column; gap: 6px; }
.hw-items-note {
    font-size: .72rem; color: #b45309; background: #fffbeb; border: 1px solid #fde68a;
    border-radius: 10px; padding: 7px 10px; margin-bottom: 2px; line-height: 1.45;
}
.hw-item {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 8px 10px; border: 1px solid rgba(226,232,240,.9); border-radius: 12px;
    background: rgba(255,255,255,.6); transition: border-color .18s ease, background-color .18s ease;
}
.hw-item.on { border-color: var(--primary, #2563eb); background: #eff6ff; }
.hw-item-i { display: flex; flex-direction: column; min-width: 0; }
.hw-item-n { font-size: .8rem; font-weight: 700; color: #0f172a; line-height: 1.25; }
.hw-item-p { font-size: .72rem; font-weight: 700; color: #64748b; margin-top: 1px; }
.hw-qty { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.hw-qb {
    width: 30px; height: 30px; border-radius: 9px; border: 1px solid rgba(226,232,240,.9);
    background: #fff; color: #0f172a; font-size: 1rem; font-weight: 800; line-height: 1;
    cursor: pointer; display: grid; place-items: center;
}
.hw-qb.plus { background: var(--primary, #2563eb); border-color: transparent; color: #fff; }
.hw-qb:disabled { opacity: .35; cursor: not-allowed; }
.hw-qv { min-width: 20px; text-align: center; font-weight: 800; font-size: .85rem; color: #0f172a; }
.hw-items-total {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 4px; padding: 9px 11px; border-radius: 12px;
    background: #0f172a; color: #fff; font-size: .8rem; font-weight: 700;
}
.hw-items-total strong { font-size: .95rem; }

/* ===== Personel sayısı seçici (Adım 2) ===== */
.hw-person { display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 8px 10px; border: 1.5px solid rgba(226,232,240,.9); border-radius: 50px;
    background: rgba(255,255,255,.7); }
.hw-pbtn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(226,232,240,.9);
    background: #fff; color: #0f172a; font-size: 1.15rem; font-weight: 800; line-height: 1;
    cursor: pointer; display: grid; place-items: center; flex-shrink: 0; }
.hw-pbtn.plus { background: var(--primary, #2563eb); border-color: transparent; color: #fff; }
.hw-pbtn:disabled { opacity: .35; cursor: not-allowed; }
.hw-pinfo { display: flex; flex-direction: column; align-items: center; line-height: 1.2; }
.hw-pval { font-size: 1.15rem; font-weight: 800; color: #0f172a; }
.hw-pmin { font-size: .68rem; font-weight: 700; color: #64748b; }
.hw-pnote { font-size: .72rem; color: #64748b; font-weight: 600; margin-top: 6px;
    padding-left: 4px; line-height: 1.45; }
.hw-pnote i { color: var(--primary, #2563eb); margin-right: 3px; }

/* ===== Adım 2 anlık tutar kartı ===== */
.hw-quote {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    margin-top: 12px; padding: 12px 15px; border-radius: 18px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #1d4ed8 140%);
    box-shadow: 0 10px 24px -12px rgba(15, 23, 42, .55);
    position: relative; overflow: hidden;
}
/* Sabit parlama; animasyonlu blur cihazı ısıttığı için hareketsiz bırakıldı */
.hw-quote::after {
    content: ''; position: absolute; right: -30px; top: -40px;
    width: 130px; height: 130px; border-radius: 50%;
    background: radial-gradient(circle, rgba(96,165,250,.35), transparent 70%);
    pointer-events: none;
}
.hw-quote-left { display: flex; flex-direction: column; gap: 3px; min-width: 0; position: relative; z-index: 1; }
.hw-quote-label {
    font-size: .68rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
    color: #bfdbfe; display: inline-flex; align-items: center; gap: 6px;
}
.hw-quote-meta { font-size: .73rem; font-weight: 600; color: rgba(226,232,240,.8); line-height: 1.35; }
.hw-quote-val {
    font-size: 1.45rem; font-weight: 900; color: #fff; white-space: nowrap;
    letter-spacing: -.5px; position: relative; z-index: 1;
    text-shadow: 0 2px 10px rgba(37,99,235,.45);
}
.hw-quote-val.hw-bump { animation: hwQuoteBump .32s ease; }
@keyframes hwQuoteBump {
    0%   { transform: scale(1);    opacity: 1; }
    45%  { transform: scale(1.11); opacity: 1; }
    100% { transform: scale(1);    opacity: 1; }
}
.hw-quote.is-soft { background: linear-gradient(135deg, #1e293b 0%, #334155 100%); }
.hw-quote.is-soft .hw-quote-val { font-size: 1.05rem; }
@media (max-width: 420px) {
    .hw-quote { padding: 11px 13px; border-radius: 16px; }
    .hw-quote-val { font-size: 1.25rem; }
    .hw-quote.is-soft .hw-quote-val { font-size: .95rem; }
}

/* ===== Temizlik malzemesi seçeneği (Adım 2) ===== */
.hw-supplies {
    display: flex; align-items: center; gap: 12px; cursor: pointer; margin: 12px 0 0;
    padding: 11px 13px; border-radius: 16px;
    border: 1.5px solid rgba(226,232,240,.9); background: rgba(255,255,255,.7);
    transition: border-color .18s ease, background-color .18s ease;
}
.hw-supplies:has(input:checked) { border-color: var(--primary, #2563eb); background: #eff6ff; }
.hw-sup-ico {
    width: 36px; height: 36px; border-radius: 11px; flex-shrink: 0;
    display: grid; place-items: center; font-size: .95rem;
    background: linear-gradient(135deg, #0ea5e9, #2563eb); color: #fff;
}
.hw-sup-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.hw-sup-title { font-size: .84rem; font-weight: 800; color: #0f172a; line-height: 1.3; }
.hw-sup-desc { font-size: .72rem; font-weight: 600; color: #64748b; line-height: 1.4; }
.hw-sup-switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.hw-sup-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; z-index: 2; }
.hw-sup-slider { position: absolute; inset: 0; border-radius: 50px; background: #cbd5e1; transition: background-color .2s ease; }
.hw-sup-slider::before {
    content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px;
    border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(15,23,42,.3);
    transition: transform .2s ease;
}
.hw-sup-switch input:checked + .hw-sup-slider { background: var(--primary, #2563eb); }
.hw-sup-switch input:checked + .hw-sup-slider::before { transform: translateX(20px); }
/* :has() desteklemeyen tarayıcılar için JS ile eklenen sınıf */
.hw-supplies.on { border-color: var(--primary, #2563eb); background: #eff6ff; }

/* ===== Kategoriye özel bilgi kartı (Özet adımı) ===== */
.hw-note {
    display: flex; align-items: flex-start; gap: 11px;
    margin: 12px 0 0; padding: 13px 15px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(14,165,233,.10) 0%, rgba(99,102,241,.12) 100%);
    border: 1px solid rgba(56,189,248,.35);
    position: relative; overflow: hidden;
}
/* Sabit ışıltı; animasyonlu blur cihazı ısıttığı için hareketsiz bırakıldı */
.hw-note::after {
    content: ''; position: absolute; right: -34px; bottom: -44px;
    width: 116px; height: 116px; border-radius: 50%;
    background: radial-gradient(circle, rgba(56,189,248,.22), transparent 70%);
    pointer-events: none;
}
.hw-note-ico {
    width: 30px; height: 30px; border-radius: 10px; flex-shrink: 0;
    display: grid; place-items: center; font-size: .84rem; color: #fff;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    box-shadow: 0 4px 10px -4px rgba(37,99,235,.6);
    position: relative; z-index: 1;
}
.hw-note-txt {
    margin: 0; font-size: .8rem; font-weight: 600; line-height: 1.55; color: #1e293b;
    white-space: pre-line; position: relative; z-index: 1;
}
@media (max-width: 420px) {
    .hw-note { padding: 11px 13px; border-radius: 14px; gap: 9px; }
    .hw-note-txt { font-size: .76rem; }
}

/* ===== Zorunlu alan uyarıları ===== */
.hw-field.hw-invalid input,
.hw-field.hw-invalid textarea,
.hw-field.hw-invalid .hw-phone {
    border-color: #dc2626 !important;
    background: #fef2f2;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .12);
}
.hw-invalid#hwCats,
.hw-invalid#hwSubs,
.hw-invalid#hwCalGrid,
.hw-invalid#hwSlotWrap {
    border: 1.5px solid #fca5a5;
    border-radius: 14px;
    background: rgba(254, 242, 242, .75);
    padding: 8px;
}
.hw-inline-err {
    display: flex; align-items: flex-start; gap: 6px;
    margin-top: 6px; color: #b91c1c;
    font-size: .74rem; font-weight: 700; line-height: 1.45;
}
.hw-inline-err i { margin-top: 2px; font-size: .78rem; }
.hw-error { display: flex; align-items: flex-start; gap: 7px; }
.hw-error i { margin-top: 2px; }
