/* Takvimim.com — Ana sayfa turuncu / gri marka teması */

:root {
    --brand-orange: #f97316;
    --brand-orange-hover: #ea580c;
    --brand-orange-soft: rgba(249, 115, 22, 0.12);
    --brand-orange-glow: rgba(249, 115, 22, 0.22);
    --brand-charcoal: #18181b;
    --brand-zinc: #3f3f46;
    --brand-zinc-light: #71717a;
    --brand-purple: #f97316;
    --brand-purple-hover: #ea580c;
    --brand-purple-glow: rgba(249, 115, 22, 0.12);
    --brand-indigo: #3f3f46;
}

.btn-purple-fill,
.btn-custom.btn-purple-fill {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-hover) 100%) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px var(--brand-orange-glow);
}

.btn-purple-fill:hover,
.btn-custom.btn-purple-fill:hover {
    background: linear-gradient(135deg, var(--brand-orange-hover) 0%, #c2410c 100%) !important;
}

.btn-purple-outline,
.btn-custom.btn-purple-outline {
    color: var(--brand-orange) !important;
    border: 1.5px solid var(--brand-orange) !important;
    background: transparent !important;
}

.btn-purple-outline:hover {
    background: var(--brand-orange-soft) !important;
}

.panel-customers {
    background: linear-gradient(145deg, #18181b 0%, #27272a 52%, #ea580c 165%) !important;
    background-size: 220% 220%;
    animation: landing-panel-bg-drift 28s ease-in-out infinite;
}

.panel-businesses {
    background: linear-gradient(160deg, #ffffff 0%, #f4f4f5 55%, #fafafa 100%) !important;
    background-size: 200% 200%;
    animation: landing-panel-bg-drift 32s ease-in-out infinite reverse;
}

@keyframes landing-panel-bg-drift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* —— Arka plan ambient katmanı —— */
.landing-ambient {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.split-panel .initial-view,
.split-panel .detailed-view,
.split-panel .panel-side-peek,
.split-panel .split-footer {
    z-index: 2;
}

.landing-ambient__mesh {
    position: absolute;
    inset: -40%;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.55;
    animation: landing-mesh-drift 48s linear infinite;
}

.landing-ambient__mesh--light {
    background-image:
        radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.07) 1px, transparent 1px);
    opacity: 0.45;
}

@keyframes landing-mesh-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(42px, 28px); }
}

.landing-ambient__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    will-change: transform;
}

.landing-ambient--customer .landing-ambient__orb--1 {
    width: 280px; height: 280px;
    top: 8%; left: -6%;
    background: rgba(249, 115, 22, 0.14);
    animation: landing-orb-float-a 22s ease-in-out infinite;
}
.landing-ambient--customer .landing-ambient__orb--2 {
    width: 220px; height: 220px;
    bottom: 12%; right: 4%;
    background: rgba(255, 255, 255, 0.06);
    animation: landing-orb-float-b 26s ease-in-out infinite;
}
.landing-ambient--customer .landing-ambient__orb--3 {
    width: 160px; height: 160px;
    top: 42%; left: 38%;
    background: rgba(234, 88, 12, 0.1);
    animation: landing-orb-float-c 19s ease-in-out infinite;
}

.landing-ambient--business .landing-ambient__orb--b1 {
    width: 200px; height: 200px;
    top: 15%; right: -4%;
    background: rgba(249, 115, 22, 0.08);
    animation: landing-orb-float-b 24s ease-in-out infinite;
}
.landing-ambient--business .landing-ambient__orb--b2 {
    width: 140px; height: 140px;
    bottom: 18%; left: 8%;
    background: rgba(24, 24, 27, 0.04);
    animation: landing-orb-float-a 20s ease-in-out infinite reverse;
}

@keyframes landing-orb-float-a {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(18px, -22px) scale(1.06); }
}
@keyframes landing-orb-float-b {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-14px, 16px) scale(0.94); }
}
@keyframes landing-orb-float-c {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, 12px) rotate(8deg); }
}

.landing-ambient__icon {
    position: absolute;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1;
    opacity: 0;
    animation: landing-icon-drift 36s ease-in-out infinite;
}

.landing-ambient--customer .landing-ambient__icon {
    color: rgba(255, 255, 255, 0.07);
}
.landing-ambient--business .landing-ambient__icon {
    color: rgba(249, 115, 22, 0.09);
}

.landing-ambient__icon--1 { top: 14%; left: 10%; animation-duration: 34s; animation-delay: 0s; }
.landing-ambient__icon--2 { top: 58%; left: 6%; font-size: clamp(1.8rem, 3.5vw, 2.8rem); animation-duration: 40s; animation-delay: -8s; }
.landing-ambient__icon--3 { bottom: 22%; right: 12%; animation-duration: 38s; animation-delay: -14s; }
.landing-ambient__icon--4 { top: 28%; right: 8%; font-size: clamp(1.6rem, 3vw, 2.4rem); animation-duration: 42s; animation-delay: -20s; }
.landing-ambient__icon--b1 { top: 20%; left: 14%; animation-duration: 36s; }
.landing-ambient__icon--b2 { bottom: 30%; right: 10%; animation-duration: 44s; animation-delay: -10s; }
.landing-ambient__icon--b3 { top: 52%; right: 22%; font-size: clamp(1.9rem, 3.2vw, 2.6rem); animation-duration: 39s; animation-delay: -18s; }

@keyframes landing-icon-drift {
    0%, 100% {
        opacity: 0;
        transform: translate(0, 0) rotate(0deg) scale(0.92);
    }
    12% { opacity: 1; }
    50% {
        opacity: 0.85;
        transform: translate(14px, -18px) rotate(6deg) scale(1);
    }
    88% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .panel-customers,
    .panel-businesses,
    .landing-ambient__mesh,
    .landing-ambient__orb,
    .landing-ambient__icon {
        animation: none !important;
    }
    .landing-ambient__icon { opacity: 0.35; }
}

.panel-businesses .click-indicator {
    background: var(--brand-orange-soft) !important;
    color: var(--brand-orange) !important;
    border-color: rgba(249, 115, 22, 0.35) !important;
    border-radius: 6px !important;
}
.panel-customers .click-indicator {
    border-radius: 6px !important;
}
.panel-customers .split-subtitle { color: #fdba74 !important; }
.panel-businesses .split-subtitle { color: var(--brand-orange) !important; }
.panel-hero-icons--business .panel-hero-icon-bubble {
    background: rgba(24, 24, 27, 0.06) !important;
    color: #52525b !important;
    border-color: rgba(24, 24, 27, 0.12) !important;
}
.panel-hero-icons--business .panel-hero-icon-bubble--main {
    background: linear-gradient(145deg, #3f3f46 0%, #18181b 100%) !important;
    color: #fff !important;
    border-color: rgba(24, 24, 27, 0.22) !important;
    box-shadow: 0 4px 14px rgba(24, 24, 27, 0.16) !important;
}
.panel-businesses .panel-icon-container {
    background: rgba(24, 24, 27, 0.05) !important;
    color: #3f3f46 !important;
    border-color: rgba(24, 24, 27, 0.12) !important;
}

.panel-businesses .typing-cursor { border-right-color: var(--brand-orange) !important; }
.panel-businesses .grid-feature-icon { color: var(--brand-orange) !important; }
.panel-customers .grid-feature-icon { color: #fdba74 !important; }

.banner-text-right { color: var(--brand-orange) !important; }

/* Yan peek şeritleri — mor değil */
.panel-side-peek--customer {
    background: linear-gradient(180deg, #27272a 0%, #18181b 100%) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    border-right-color: rgba(255, 255, 255, 0.08) !important;
}
.panel-side-peek--business {
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%) !important;
    color: var(--brand-orange) !important;
    border-left-color: rgba(24, 24, 27, 0.08) !important;
}
.panel-side-peek--business:hover {
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%) !important;
}

/* Firma paneli sol kolon — scroll yok, sıkı yerleşim */
.business-landing-split .desktop-split-left-content {
    overflow: hidden !important;
    padding-bottom: 0 !important;
    scrollbar-width: none;
}
.business-landing-split .desktop-split-left-content::-webkit-scrollbar {
    display: none;
}
.business-landing-split .panel-expanded-layout {
    overflow: hidden !important;
    gap: 8px !important;
}
.business-landing-split .landing-brand-showcase--inline {
    margin: 0 !important;
    padding: 10px 12px 8px !important;
}
.business-landing-split .landing-brand-showcase--inline .landing-brand-showcase__logo {
    max-height: 56px !important;
}
.business-landing-split .landing-brand-showcase--inline .landing-brand-showcase__tagline {
    font-size: 0.72rem !important;
    margin-top: 4px !important;
}
.business-landing-split .platform-contact-bar--compact {
    padding: 8px 10px !important;
    margin: 0 !important;
}
.business-landing-split .platform-contact-bar--compact .platform-contact-btn {
    padding: 7px 10px !important;
    font-size: 0.72rem !important;
}
.business-landing-split .td-pickup-apply-foot {
    margin-top: 4px !important;
    padding-top: 6px !important;
}
.business-landing-split .td-pickup-apply-link {
    font-size: 0.7rem !important;
}

.dot-purple { background: var(--brand-orange) !important; box-shadow: 0 0 15px var(--brand-orange-glow) !important; }
.splash-logo-new { text-shadow: 0 0 25px var(--brand-orange-glow) !important; }

.center-brand-name { color: var(--brand-orange) !important; }

.platform-module-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    justify-content: center;
    margin: 18px 0 10px;
    max-width: 560px;
}

.platform-module-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-module-chip i { font-size: 0.82rem; opacity: 0.95; }

.panel-customers .platform-module-chip {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.panel-businesses .platform-module-chip {
    background: #fff;
    border-color: #e4e4e7;
    color: var(--brand-charcoal);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.platform-module-chip--action { cursor: pointer; }
.platform-module-chip--action:hover { transform: translateY(-1px); }

.platform-module-chip--spotlight {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.panel-customers .platform-module-chip--spotlight {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.panel-businesses .platform-module-chip--spotlight {
    background: rgba(124, 58, 237, 0.14);
    border-color: rgba(124, 58, 237, 0.45);
    color: var(--brand-purple);
}

.mobile-panel-top .platform-module-chip--spotlight {
    background: rgba(124, 58, 237, 0.12) !important;
    border-color: rgba(124, 58, 237, 0.45) !important;
    color: var(--brand-purple) !important;
}

.mobile-panel-bottom .platform-module-chip--spotlight {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
    color: #fff !important;
}

.panel-customers .platform-module-chip--action:hover {
    background: rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.45);
}

.panel-businesses .platform-module-chip--action:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 4px 12px var(--brand-orange-soft);
}

.td-pickup-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    margin: 0 0 14px;
    max-width: 520px;
    text-align: left;
}

.panel-customers .td-pickup-highlight {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.35);
}

.panel-customers .td-pickup-highlight-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-orange);
    color: #fff;
    flex-shrink: 0;
}

.panel-customers .td-pickup-highlight h4 {
    margin: 0 0 4px;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
}

.panel-customers .td-pickup-highlight p {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
}

.td-pickup-highlight-btn {
    margin-top: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    background: var(--brand-orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
}

.td-pickup-partner-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 0;
    border: none;
    background: transparent;
    color: #fdba74;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.td-pickup-partner-link:hover { color: #fff; }

.td-pickup-apply-foot {
    margin-top: 12px;
    margin-bottom: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(24, 24, 27, 0.08);
    text-align: center;
    flex-shrink: 0;
}

.td-pickup-apply-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 4px;
    border: none;
    background: transparent;
    color: var(--text-muted, #64748b);
    font: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.td-pickup-apply-link:hover { color: var(--brand-charcoal, #18181b); }

.panel-businesses .td-pickup-apply-foot {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.mobile-panel-bottom .td-pickup-apply-foot {
    border-top-color: rgba(255, 255, 255, 0.14);
    margin-top: 10px;
    padding-top: 8px;
}

.mobile-panel-bottom .td-pickup-apply-link {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.7rem;
}

.mobile-panel-bottom .td-pickup-apply-link:hover { color: #fff; }

/* Teslim noktası başvuru popup — tek ekran, 3 sütun */
#desktopPickupApplyContainer.pickup-apply-overlay {
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 10px 14px;
}

.pickup-apply-sheet {
    width: 100%;
    max-width: min(1120px, calc(100vw - var(--split-peek-width, 96px) - 36px));
    margin: 0 auto;
    box-sizing: border-box;
    max-height: calc(100vh - 24px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pickup-apply-sheet.businesses-form-card {
    max-width: min(1120px, calc(100vw - var(--split-peek-width, 96px) - 36px));
    padding: 10px 14px 12px;
}

.pickup-apply-sheet-head {
    position: static;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 8px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--gray-200, #e2e8f0);
}

.pickup-apply-back {
    position: static !important;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.pickup-apply-title {
    margin: 0 !important;
    font-size: 1rem !important;
    line-height: 1.2;
    flex: 1;
}

#mobilePickupApplyContainer.pickup-apply-overlay {
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px 14px 24px;
    padding-top: max(10px, env(safe-area-inset-top));
    -webkit-overflow-scrolling: touch;
}

.pickup-apply-sheet--mobile {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    max-height: none;
    display: block;
    overflow: visible;
}

.pickup-apply-sheet--mobile .pickup-apply-sheet-head {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 5;
}

.pickup-apply-sheet--mobile .pickup-apply-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-navy, #0f172a);
}

.pickup-apply-sheet--mobile .pickup-apply-back {
    color: var(--text-muted, #64748b);
}

/* Form — kompakt 3 sütun */
.pickup-apply-form {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pickup-apply-form .form-group-relative {
    margin-bottom: 7px;
}

.pickup-apply-form .form-label {
    font-size: 0.68rem;
    margin-bottom: 3px;
    font-weight: 700;
}

.pickup-apply-form .form-input,
.pickup-apply-form .form-select {
    padding: 7px 9px;
    font-size: 0.82rem;
    border-radius: 8px;
}

.pickup-apply-form .phone-input-group .form-input {
    padding-left: 8px;
}

.ppa-form-layout {
    display: grid;
    grid-template-columns: minmax(190px, 0.85fr) minmax(240px, 1.05fr) minmax(270px, 1fr);
    gap: 12px 14px;
    align-items: stretch;
    flex: 1;
    min-height: 0;
}

.ppa-form-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ppa-form-col--about {
    padding: 12px 12px 10px;
    border-radius: 12px;
    border: 1.5px solid rgba(124, 58, 237, 0.16);
    background: linear-gradient(160deg, rgba(124, 58, 237, 0.08) 0%, rgba(249, 115, 22, 0.04) 100%);
}

.ppa-about-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--brand-purple, #7c3aed);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 8px;
}

.ppa-about-title {
    margin: 0 0 6px;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text-navy, #0f172a);
    line-height: 1.25;
}

.ppa-about-text {
    margin: 0 0 10px;
    font-size: 0.72rem;
    line-height: 1.4;
    color: var(--text-muted, #64748b);
}

.ppa-about-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ppa-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #475569;
    line-height: 1.35;
}

.ppa-about-list i {
    color: var(--brand-purple, #7c3aed);
    margin-top: 2px;
    flex-shrink: 0;
}

.ppa-col-title {
    margin: 0 0 8px;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--text-navy, #0f172a);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.ppa-col-title i { color: var(--brand-purple, #7c3aed); }

.ppa-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ppa-form-col--hours {
    min-height: 0;
}

.ppa-form-col--hours .ppa-hours-block {
    margin-bottom: 0;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.ppa-hours-hint {
    margin: 0 0 6px;
    font-size: 0.68rem;
    color: var(--text-muted, #64748b);
    line-height: 1.35;
    flex-shrink: 0;
}

.ppa-form-col--hours .ppa-hours-table-wrap {
    flex: 1;
    min-height: 0;
    max-height: none;
    overflow: visible;
}

.ppa-form-footer {
    flex-shrink: 0;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-200, #e2e8f0);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 16px;
    align-items: center;
}

.ppa-form-footer-legal .home-legal-consents {
    margin: 0;
}

.ppa-form-footer-legal .home-legal-title {
    margin: 0 0 4px;
    font-size: 0.68rem;
}

.ppa-form-footer-legal .home-legal-check {
    font-size: 0.66rem;
    line-height: 1.3;
    margin-bottom: 2px;
}

.ppa-form-footer-legal .home-legal-consents--business {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px 10px;
}

.ppa-form-footer-legal .home-legal-title {
    grid-column: 1 / -1;
}

.ppa-form-footer-actions {
    text-align: center;
    min-width: 168px;
}

.ppa-submit-btn {
    width: 100%;
    padding: 10px 14px;
    margin: 0;
    white-space: nowrap;
    font-size: 0.82rem;
}

.ppa-form-note {
    font-size: 0.64rem;
    color: var(--text-muted, #64748b);
    text-align: center;
    margin: 5px 0 0;
    line-height: 1.3;
}

.ppa-hours-table-wrap {
    overflow-x: auto;
    border: 1.5px solid var(--gray-200, #e2e8f0);
    border-radius: 10px;
    background: #fafafa;
}

.ppa-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.72rem;
}

.ppa-hours-table th,
.ppa-hours-table td {
    padding: 4px 6px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200, #e2e8f0);
    vertical-align: middle;
}

.ppa-hours-table th {
    background: #f1f5f9;
    font-weight: 700;
    font-size: 0.62rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ppa-hours-table tr:last-child td { border-bottom: none; }

.ppa-hours-table .ppa-hours-time {
    padding: 4px 4px;
    font-size: 0.72rem;
    min-width: 0;
}

.ppa-hours-closed-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    font-size: 0.68rem;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    #desktopPickupApplyContainer.pickup-apply-overlay {
        overflow-y: auto;
        align-items: flex-start;
    }

    .pickup-apply-sheet {
        max-height: none;
        overflow: visible;
    }

    .pickup-apply-form {
        overflow: visible;
    }

    .ppa-form-layout {
        grid-template-columns: 1fr 1fr;
    }

    .ppa-form-col--about {
        grid-column: 1 / -1;
    }

    .ppa-form-footer {
        grid-template-columns: 1fr;
    }

    .ppa-form-footer-legal .home-legal-consents--business {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ppa-form-layout {
        grid-template-columns: 1fr;
    }

    .ppa-form-col--about {
        grid-column: auto;
    }

    .ppa-form-footer-actions {
        min-width: 0;
    }
}

.td-pickup-partner-banner {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    margin: 0 0 16px;
    border-radius: 14px;
    border: 1.5px solid rgba(249, 115, 22, 0.35);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(249, 115, 22, 0.04) 100%);
}

.panel-businesses .td-pickup-partner-banner {
    border-color: rgba(24, 24, 27, 0.1);
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.04) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.td-pickup-partner-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--brand-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.panel-businesses .td-pickup-partner-icon {
    background: #27272a;
}

.td-pickup-partner-body h4 {
    margin: 0 0 6px;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text-navy, #0f172a);
}

.td-pickup-partner-body p {
    margin: 0 0 10px;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--text-muted, #64748b);
}

.td-pickup-partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 9px;
    border: none;
    background: var(--brand-orange);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.panel-businesses .td-pickup-partner-btn {
    background: #27272a;
}

.mobile-panel-bottom .td-pickup-partner-banner {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
}

.mobile-panel-bottom .td-pickup-partner-body h4 { color: #fff; }
.mobile-panel-bottom .td-pickup-partner-body p { color: rgba(255, 255, 255, 0.82); }
.mobile-panel-bottom .td-pickup-partner-icon { background: #fff; color: var(--brand-purple); }
.mobile-panel-bottom .td-pickup-partner-btn { background: #fff; color: var(--brand-purple); }

.platform-module-chip--orange {
    background: #fff7ed !important;
    border-color: #fdba74 !important;
    color: #9a3412 !important;
}

.platform-module-chip--orange i { color: var(--brand-orange) !important; }

.panel-businesses .platform-module-chip--orange {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: var(--brand-orange) !important;
    color: #9a3412 !important;
}

.td-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 8px;
    font-size: 0.72rem;
    color: var(--text-muted, #64748b);
}

.td-map-legend span { display: inline-flex; align-items: center; gap: 6px; }
.td-map-legend i.fa-store { color: var(--brand-zinc); }
.td-map-legend i.fa-location-dot { color: var(--brand-orange); }

.leaflet-marker-icon.td-map-marker {
    background: transparent !important;
    border: none !important;
    width: 42px !important;
    height: 42px !important;
    margin-left: -21px !important;
    margin-top: -42px !important;
}

.td-map-marker-pin {
    width: 42px;
    height: 42px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    border: 2.5px solid #fff;
    box-sizing: border-box;
}

.td-map-marker--firm .td-map-marker-pin { background: var(--brand-zinc, #3f3f46); }
.td-map-marker--pickup .td-map-marker-pin { background: var(--brand-orange, #f97316); }
.td-map-marker-pin i { transform: rotate(45deg); font-size: 1rem; }

.td-map-marker-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.td-map-marker-dist {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 999px;
    background: #18181b;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
    line-height: 1.2;
}

.td-map-marker--pickup .td-map-marker-dist {
    background: var(--brand-orange, #f97316);
}

.td-map-popup-dist {
    margin: 0 0 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand-orange, #f97316);
}

.td-map-popup-dist i { margin-right: 4px; }

.discover-dist-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--brand-orange, #f97316);
    font-size: 0.68rem;
    font-weight: 800;
    vertical-align: middle;
}

.discover-dist-badge--pickup {
    background: rgba(249, 115, 22, 0.15);
}

.search-tenant-name {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.platform-module-chip--info {
    cursor: pointer;
}

.panel-expanded-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}
.panel-subtitle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
}
.panel-actions-zone {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.panel-actions-primary { width: 100%; }
.panel-action-btn--primary {
    width: 100%;
    padding: 14px 22px !important;
    font-size: 0.94rem !important;
    justify-content: center;
    border-radius: 14px !important;
}
.panel-actions-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}
.panel-action-btn {
    width: 100%;
    padding: 11px 14px !important;
    font-size: 0.8rem !important;
    justify-content: center;
    border-radius: 12px !important;
}
.panel-action-btn--wide { grid-column: 1 / -1; }
.panel-customers .panel-action-btn--ghost {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}
.panel-businesses .panel-action-btn--ghost {
    background: transparent !important;
    border: 1.5px solid rgba(15, 23, 42, 0.12) !important;
    color: var(--text-muted) !important;
}

.platform-module-hint {
    margin: 0 0 4px;
    font-size: 0.68rem;
    opacity: 0.65;
    text-align: center;
    line-height: 1.35;
}

.panel-customers .platform-module-hint { color: rgba(255, 255, 255, 0.72); }
.panel-businesses .platform-module-hint { color: var(--text-muted); }
.mobile-panel-top .platform-module-hint { color: var(--text-muted); }
.mobile-panel-bottom .platform-module-hint { color: rgba(255, 255, 255, 0.72); }

.module-info-overlay {
    position: fixed;
    inset: 0;
    z-index: 10050;
    background: rgba(15, 23, 42, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(3px);
}

.module-info-overlay[hidden] { display: none !important; }

.module-info-popup {
    position: relative;
    width: min(360px, 100%);
    padding: 22px 20px 18px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
    text-align: center;
}

.module-info-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 999px;
    background: #f4f4f5;
    color: #52525b;
    cursor: pointer;
}

.module-info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 14px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--brand-orange, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.module-info-title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #18181b;
}

.module-info-desc {
    margin: 0 0 14px;
    font-size: 0.82rem;
    line-height: 1.55;
    color: #64748b;
}

.module-info-cta {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: var(--brand-orange, #f97316);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
}

.module-info-cta[hidden] { display: none !important; }

body.module-info-open { overflow: hidden; }

.leaflet-popup.td-map-leaflet-popup { margin-bottom: 6px; }
.leaflet-popup.td-map-leaflet-popup .leaflet-popup-content-wrapper {
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}
.leaflet-popup.td-map-leaflet-popup .leaflet-popup-content {
    margin: 0;
    width: auto !important;
    min-width: 220px;
    max-width: 280px;
}
.leaflet-popup.td-map-leaflet-popup .leaflet-popup-tip {
    box-shadow: none;
}
.td-map-popup-card { padding: 12px 14px 14px; }
.td-map-popup-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}
.td-map-popup-logo {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}
.td-map-popup-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
}
.td-map-popup-logo--fallback,
.td-map-popup-logo--pickup {
    background: #f8fafc;
    color: #64748b;
    font-size: 1.1rem;
}
.td-map-popup-logo--pickup {
    color: var(--brand-orange, #f97316);
    background: var(--brand-orange-soft, #fff7ed);
    border-color: rgba(249, 115, 22, 0.2);
}
.td-map-popup-head-text {
    min-width: 0;
    flex: 1;
}
.td-map-popup-title {
    margin: 0 0 6px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
}
.td-map-popup-badges { margin-bottom: 0; }
.td-map-popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 999px;
}
.td-map-popup-badge--pickup {
    color: var(--brand-orange, #f97316);
    background: var(--brand-orange-soft, #fff7ed);
}
.td-map-popup-loc {
    margin: 0 0 4px;
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.35;
}
.td-map-popup-loc i { color: #94a3b8; margin-top: 2px; flex-shrink: 0; }
.td-map-popup-meta {
    margin: 0 0 8px;
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.35;
}
.td-map-popup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}
.td-map-popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.15s, color 0.15s;
}
.td-map-popup-btn--firm {
    background: #18181b;
    color: #fff !important;
}
.leaflet-popup.td-map-leaflet-popup .td-map-popup-btn--firm,
.leaflet-popup.td-map-leaflet-popup .td-map-popup-btn--firm:visited,
.leaflet-popup.td-map-leaflet-popup .td-map-popup-btn--firm:hover {
    color: #fff !important;
}
.td-map-popup-btn--firm:hover { background: #27272a; }
.td-map-popup-btn--dir {
    background: #fff;
    color: #334155;
    border-color: #e2e8f0;
    cursor: pointer;
    font-family: inherit;
}
.td-map-popup-btn--dir:hover { background: #f8fafc; color: #0f172a; }

.td-search-empty { text-align: center; padding: 20px; color: #64748b; }
.td-search-empty--hopeful {
    padding: 28px 18px;
    border-radius: 14px;
    background: rgba(249, 115, 22, 0.06);
    border: 1px solid rgba(249, 115, 22, 0.16);
}
.td-search-empty-emoji,
.discover-map-empty-emoji {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-orange, #f97316);
    margin-bottom: 8px;
    line-height: 1;
}
.td-search-empty-title,
.discover-map-empty-title {
    margin: 0 0 6px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
}
.td-search-empty-lead,
.discover-map-empty-lead {
    margin: 0 0 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-orange, #f97316);
    line-height: 1.45;
}
.td-search-empty-sub,
.discover-map-empty-sub {
    margin: 0;
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.4;
}

.td-search-explore-hint {
    text-align: center;
    padding: 24px 16px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.14);
    color: #334155;
}
.td-search-explore-hint > i {
    font-size: 1.6rem;
    color: var(--brand-orange, #f97316);
    margin-bottom: 10px;
}
.td-search-explore-hint p {
    margin: 0 0 8px;
    font-size: 0.82rem;
    line-height: 1.45;
}
.td-search-explore-hint p:last-child { margin-bottom: 0; }
.td-search-explore-hint strong { color: #0f172a; }

.discover-map-wrap {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}
.discover-map-wrap--mobile {
    flex: none;
    border-radius: 12px;
    overflow: hidden;
}
.discover-map-wrap .public-salon-map {
    flex: 1;
    width: 100%;
}
.discover-map-wrap--empty .public-salon-map {
    filter: blur(5px) saturate(0.85);
    transform: scale(1.02);
    pointer-events: none;
}
.discover-map-empty-overlay {
    position: absolute;
    inset: 0;
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.discover-map-empty-overlay[hidden] { display: none !important; }
.discover-map-empty-card {
    text-align: center;
    max-width: 300px;
    padding: 22px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(249, 115, 22, 0.22);
    box-shadow: 0 12px 36px rgba(249, 115, 22, 0.12);
}
.discover-map-empty-emoji { font-size: 2.4rem; margin-bottom: 10px; }
.discover-map-empty-title { font-size: 1.02rem; }
.discover-map-empty-lead { font-size: 0.92rem; }
.discover-map-empty-sub:empty { display: none; }
.td-result-pickup { border-left: 3px solid var(--brand-orange) !important; }
.td-pickup-logo { background: var(--brand-orange-soft) !important; color: var(--brand-orange) !important; }
.td-badge-pickup { color: var(--brand-orange); font-weight: 700; }
.td-pickup-tag {
    background: var(--brand-orange-soft) !important;
    color: var(--brand-orange) !important;
    cursor: default;
}

/* Firma / teslim noktası keşif — split ekran */
#desktopSearchOverlay {
    align-items: stretch !important;
    justify-content: stretch !important;
    padding: 0 !important;
    overflow: hidden !important;
}

#desktopSearchOverlay.single-page-form-overlay {
    padding: 0 !important;
    justify-content: stretch !important;
    align-items: stretch !important;
}

#desktopSearchOverlay .discover-split-shell {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: none;
    background: #fff;
}

.discover-split-left {
    width: 42%;
    min-width: 320px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e4e4e7;
    background: #fafafa;
    overflow: hidden;
}

.discover-split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #f4f4f5;
}

.discover-left-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 16px 18px 12px;
    -webkit-overflow-scrolling: touch;
}

.discover-split-right .discover-map-wrap {
    flex: 1;
    min-height: 0;
}
.discover-split-right .public-salon-map {
    flex: 1;
    height: auto !important;
    min-height: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    background: #eef2f0;
}

.discover-map-head {
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid #e4e4e7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.discover-map-back {
    flex-shrink: 0;
}

.discover-map-head-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1.5px solid var(--brand-orange, #f97316);
    background: #fff7ed;
    color: #9a3412;
    font-family: var(--font-outfit, 'Outfit', system-ui, sans-serif);
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.discover-map-head-explore-btn:hover {
    background: #ffedd5;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.18);
}
.discover-map-head-explore-btn--sm {
    padding: 7px 11px;
    font-size: 0.72rem;
}
.discover-map-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.discover-map-empty-explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 14px;
    padding: 11px 16px;
    border: none;
    border-radius: 12px;
    background: var(--brand-orange, #f97316);
    color: #fff;
    font-family: var(--font-outfit, 'Outfit', system-ui, sans-serif);
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.discover-map-empty-explore-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(249, 115, 22, 0.4);
}

/* Konumum — harita üzeri tespit animasyonu */
.discover-geo-toast {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(12px);
    z-index: 690;
    width: min(220px, calc(100% - 32px));
    padding: 18px 16px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(249, 115, 22, 0.22);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.14);
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.discover-geo-toast--visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.discover-geo-toast[hidden] { display: none !important; }

.discover-geo-toast-radar {
    position: relative;
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange, #f97316);
    font-size: 1.35rem;
}
.discover-geo-toast-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(249, 115, 22, 0.45);
    animation: discover-geo-pulse 1.6s ease-out infinite;
}
.discover-geo-toast-ring--2 { animation-delay: 0.55s; }

@keyframes discover-geo-pulse {
    0% { transform: scale(0.45); opacity: 0.9; }
    100% { transform: scale(1.35); opacity: 0; }
}

.discover-geo-toast-burst {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff7ed, #ffedd5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange, #f97316);
    font-size: 1.55rem;
    animation: discover-geo-pop 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.25);
}
.discover-geo-toast-burst--error {
    background: linear-gradient(145deg, #fef2f2, #fee2e2);
    color: #dc2626;
    box-shadow: 0 8px 22px rgba(220, 38, 38, 0.15);
}

@keyframes discover-geo-pop {
    0% { transform: scale(0.4); opacity: 0; }
    60% { transform: scale(1.12); }
    100% { transform: scale(1); opacity: 1; }
}

.discover-geo-toast-title {
    margin: 0 0 4px;
    font-family: var(--font-outfit, 'Outfit', system-ui, sans-serif);
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}
.discover-geo-toast-title--success { color: #9a3412; }
.discover-geo-toast-title--error { color: #b91c1c; }
.discover-geo-toast-sub {
    margin: 0;
    font-size: 0.74rem;
    color: #64748b;
    line-height: 1.35;
}

.discover-geo-btn--loading {
    opacity: 0.65;
    pointer-events: none;
}

.discover-map-wrap--mobile .discover-geo-toast {
    right: 12px;
    width: min(200px, calc(100% - 24px));
    padding: 14px 12px;
}

.discover-mode-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 12px 0 14px;
}

.discover-mode-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px;
    border-radius: 14px;
    border: 2px solid #e4e4e7;
    background: #fff;
    color: #3f3f46;
    font-family: var(--font-outfit, 'Outfit', sans-serif);
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    line-height: 1.25;
}

.discover-mode-btn i {
    font-size: 1.25rem;
    color: #71717a;
}

.discover-mode-btn small {
    font-size: 0.68rem;
    font-weight: 600;
    color: #71717a;
}

.discover-mode-btn.active {
    border-color: var(--brand-orange);
    background: #fff7ed;
    color: #9a3412;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.15);
}

.discover-mode-btn.active i { color: var(--brand-orange); }
.discover-mode-btn.active small { color: #c2410c; }

.discover-filters-firm.is-hidden { display: none !important; }

.discover-filters-firm.discover-filter-locked {
  position: relative;
  opacity: 0.48;
  filter: grayscale(0.35);
  pointer-events: none;
  user-select: none;
}
.discover-filters-firm.discover-filter-locked::before {
  content: 'Önce il seçin';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  pointer-events: none;
}
.discover-cat-type-pill:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.discover-search-actions {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-top: 2px;
}
.discover-btn-search {
    flex: 1;
    padding: 12px 16px !important;
    min-width: 0;
}
.discover-btn-clear {
    flex: 0 0 auto;
    padding: 12px 16px !important;
    background: #f4f4f5 !important;
    color: #52525b !important;
    border: 1.5px solid #d4d4d8 !important;
    font-weight: 700;
    white-space: nowrap;
}
.discover-btn-clear:hover {
    background: #e4e4e7 !important;
    color: #27272a !important;
    border-color: #a1a1aa !important;
}
.discover-btn-clear[hidden] { display: none !important; }

.discover-map-area-btn {
    position: absolute;
    left: 50%;
    bottom: 22px;
    top: auto;
    transform: translateX(-50%);
    z-index: 650;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 999px;
    background: var(--brand-orange, #f97316);
    color: #fff;
    font-family: var(--font-outfit, 'Outfit', system-ui, sans-serif);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.38);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.discover-map-area-btn:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 14px 32px rgba(249, 115, 22, 0.45);
}

.discover-map-wrap--mobile .discover-map-area-btn {
    bottom: 14px;
    font-size: 0.82rem;
    padding: 10px 16px;
}
.discover-map-area-btn[hidden] { display: none !important; }
.discover-map-area-btn i { font-size: 0.95rem; }

.discover-left-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.discover-split-left .search-results-wrapper {
    max-height: none;
    flex: 1;
    min-height: 120px;
    margin: 10px 0 0;
}

.discover-result-card {
    display: block;
    background: #fff;
    border: 1.5px solid #e4e4e7;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 8px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.discover-result-card:hover {
    border-color: #fdba74;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.discover-result-card.is-active {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.discover-result-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.discover-result-card-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f4f4f5;
}

.discover-go-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 9px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    background: var(--brand-charcoal, #18181b);
    color: #fff !important;
}

.discover-go-btn:hover { background: #27272a; }

.discover-go-btn--pickup {
    background: var(--brand-orange);
}

.discover-go-btn--pickup:hover { background: var(--brand-orange-hover); }

.discover-no-pin {
    font-size: 0.68rem;
    color: #a1a1aa;
    font-style: italic;
}

@media (max-width: 900px) {
    #desktopSearchOverlay .discover-split-shell {
        flex-direction: column;
    }
    .discover-split-left {
        width: 100%;
        max-width: none;
        max-height: 52vh;
        border-right: none;
        border-bottom: 1px solid #e4e4e7;
    }
    .discover-split-right {
        min-height: 42vh;
    }
}

#mobileSearchOverlay .discover-mode-toggle { margin: 8px 0 12px; }
#mobileSearchOverlay .discover-mode-btn { padding: 12px 8px; font-size: 0.78rem; }

.search-tenant-btn { background: var(--brand-orange) !important; }
.search-tenant-btn:hover { background: var(--brand-orange-hover) !important; }

.scroller-item-vertical { font-size: 0.68rem !important; letter-spacing: 0.08em !important; }
.scroller-item-vertical::before {
    content: '•';
    margin-right: 6px;
    color: var(--brand-orange);
    opacity: 0.85;
}

.mobile-panel-top .mobile-initial-title { color: var(--brand-charcoal) !important; }
.mobile-logo span, .mobile-logo i { color: var(--brand-orange) !important; }

.mobile-module-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0 14px;
    justify-content: center;
}

.mobile-module-strip .platform-module-chip { font-size: 0.68rem; padding: 6px 9px; }

.mobile-panel-bottom .platform-module-chip {
    background: #fff !important;
    color: #18181b !important;
    border-color: #e4e4e7 !important;
}

.mobile-pickup-banner {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 12px;
    text-align: left;
}

.mobile-pickup-banner h4 { margin: 0 0 4px; font-size: 0.78rem; color: #9a3412; }
.mobile-pickup-banner p { margin: 0; font-size: 0.68rem; color: #78716c; line-height: 1.4; }

.mobile-panel-bottom {
    background: linear-gradient(145deg, #27272a 0%, #18181b 100%) !important;
}

.mobile-panel-bottom .mobile-initial-title,
.mobile-panel-bottom .mobile-detailed-title { color: #fff !important; }

.features-vertical-grid { display: none !important; }

/* —— Merkez hub & keşfet CTA —— */
.center-hub-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  background: #fff7ed;
  border: 1.5px solid #fdba74;
  color: #c2410c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.center-brand-card:hover .center-hub-cta {
  background: #ffedd5;
  border-color: #f97316;
}
.discover-map-cta-pulse {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 6px;
  background: #fff7ed;
  border: 1.5px solid #fdba74;
  color: #c2410c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: auto;
}

.landing-brand-showcase--inline {
  margin: 6px 0 8px;
  padding: 14px 16px 12px;
  align-self: flex-start;
  width: auto;
  min-width: 0;
  max-width: 100%;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.08);
  overflow: visible;
}
.landing-brand-showcase.landing-brand-showcase--inline::before {
  display: none;
}
.landing-brand-showcase--inline .landing-brand-showcase__frame {
  width: auto;
  min-width: 0;
  flex-shrink: 0;
}
.landing-brand-showcase--inline .landing-brand-showcase__logo {
  width: auto;
  height: auto;
  max-width: min(148px, 100%);
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.business-landing-split .landing-brand-showcase--inline,
.customer-landing-split .landing-brand-showcase--inline {
  flex-shrink: 0;
}
.landing-brand-showcase--inline .landing-brand-showcase__tagline {
  margin-top: 6px;
  font-size: 0.68rem;
  max-width: 220px;
}
.mobile-panel-bottom .landing-brand-showcase--inline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}
.mobile-panel-bottom .landing-brand-showcase--inline .landing-brand-showcase__tagline,
.mobile-panel-bottom .landing-brand-showcase--inline .landing-brand-showcase__wordmark {
  color: #fff;
}

.platform-contact-bar--compact {
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  padding: 8px 10px;
  gap: 6px;
}
.platform-contact-bar--compact .platform-contact-bar__actions {
  width: auto;
  gap: 6px;
}
.platform-contact-bar--compact .platform-contact-btn {
  padding: 6px 10px;
  font-size: 0.72rem;
}

.discover-cat-type-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.discover-cat-type-pill {
  flex: 1;
  min-width: 108px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.discover-cat-type-pill:hover {
  border-color: #c7d2fe;
  background: #eef2ff;
}
.discover-cat-type-pill.is-active {
  border-color: #f97316;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #c2410c;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.18);
}

.searchable-select {
  position: relative;
}
.searchable-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.searchable-select__input {
  width: 100%;
  padding: 10px 12px !important;
  border: 1.5px solid var(--gray-200, #e2e8f0) !important;
  border-radius: 10px !important;
  font-size: 0.88rem !important;
  background: #fff !important;
}
.searchable-select__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 40;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}
.searchable-select__option {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: #fff;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: #334155;
  cursor: pointer;
}
.searchable-select__option:hover,
.searchable-select__option.is-selected {
  background: #fff7ed;
  color: #c2410c;
}
.searchable-select__empty {
  padding: 10px 12px;
  font-size: 0.8rem;
  color: #94a3b8;
}

.landing-promo {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.landing-promo-grid--fit {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.landing-promo-grid--fit .landing-pr-card {
  padding: 8px 10px;
}
.landing-promo-grid--fit .landing-pr-card__body h4 {
  font-size: 0.78rem;
}
.landing-promo-grid--fit .landing-pr-card__body p {
  font-size: 0.68rem;
  -webkit-line-clamp: 2;
}
.landing-promo-grid--fit .landing-pr-card--featured {
  grid-column: 1 / -1;
}
.panel-customers .desktop-split-right-promo {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.14) 0%, rgba(79, 70, 229, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.18);
}
.panel-customers .landing-promo__title { color: #fff; }
.panel-customers .landing-promo__title i { color: #fbbf24; }
.panel-customers .landing-promo__lead { color: rgba(255, 255, 255, 0.82); }
.panel-customers .landing-pr-card--customer {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.panel-customers .landing-pr-card--customer .landing-pr-card__body h4 { color: #fff; }
.panel-customers .landing-pr-card--customer .landing-pr-card__body p { color: rgba(255, 255, 255, 0.76); }
.panel-customers .landing-pr-card--customer .landing-pr-card__icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fde68a;
}

/* —— Marka vitrin (logo) —— */
.landing-brand-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 14px;
  padding: 16px 14px 14px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff 0%, #fff7ed 55%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.1);
  position: relative;
  overflow: hidden;
}
.landing-brand-showcase::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.landing-brand-showcase__frame {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.landing-brand-showcase__logo {
  max-width: 148px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(15, 23, 42, 0.12));
}
.landing-brand-showcase__fallback {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}
.landing-brand-showcase__wordmark {
  font-family: var(--font-outfit, inherit);
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.5px;
}
.landing-brand-showcase__wordmark span {
  color: var(--brand-orange, #f97316);
}
.landing-brand-showcase__tagline {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  font-size: 0.74rem;
  line-height: 1.45;
  color: #9a3412;
  max-width: 280px;
}
.landing-promo--mobile .landing-brand-showcase {
  margin-bottom: 10px;
  padding: 12px;
}
.landing-promo--mobile .landing-brand-showcase__logo {
  max-width: 120px;
  max-height: 56px;
}

/* —— Modül tanıtım (firma paneli sağ sütun) —— */
.landing-promo__title {
  margin: 0 0 8px;
  font-family: var(--font-outfit, inherit);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-navy, #0f172a);
  display: flex;
  align-items: center;
  gap: 8px;
}
.landing-promo__title i { color: var(--brand-orange, #f97316); }
.landing-promo__lead {
  margin: 0 0 14px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #64748b;
}
.landing-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.landing-pr-card {
  display: flex;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.landing-pr-card--featured {
  grid-column: 1 / -1;
  border-color: #fed7aa;
  background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
}
.landing-pr-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--brand-orange, #f97316);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.landing-pr-card__body { min-width: 0; }
.landing-pr-card__body h4 {
  margin: 0 0 4px;
  font-size: 0.84rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}
.landing-pr-card__body p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.45;
  color: #64748b;
}
.landing-promo--mobile {
  margin: 12px 0 8px;
  text-align: left;
}
.landing-promo--mobile .landing-promo-grid {
  grid-template-columns: 1fr;
}
.landing-promo--mobile .landing-pr-card--featured {
  grid-column: auto;
}

/* —— Bize ulaşın —— */
.platform-contact-bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #fed7aa;
  background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
}
.platform-contact-bar__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2410c;
}
.platform-contact-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}
.platform-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid #fdba74;
  background: #fff;
  color: var(--brand-orange, #f97316);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s, border-color .18s, color .18s, transform .12s;
}
.platform-contact-btn i { font-size: 1rem; }
.platform-contact-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
.platform-contact-btn--whatsapp:hover {
  background: #ecfdf5;
  border-color: #86efac;
  color: #16a34a;
}
.platform-contact-btn--phone:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #2563eb;
}
.platform-contact-btn--email:hover {
  background: #f5f3ff;
  border-color: #c4b5fd;
  color: #7c3aed;
}
.platform-contact-bar--landing {
  margin-top: 4px;
}
.platform-contact-bar--panel {
  margin: 16px 0 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  background: #fff;
  padding: 14px 20px 18px;
}
.admin-main:has(.panel-contact-footer-wrap) {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
.admin-main:has(.panel-contact-footer-wrap) #guestPanelRoot,
.admin-main:has(.panel-contact-footer-wrap) #tenantPanelRoot {
  flex: 1;
}
.panel-contact-footer-wrap {
  margin-top: auto;
  border-top: 1px solid #e2e8f0;
  background: #fafafa;
  margin-left: -40px;
  margin-right: -40px;
  width: calc(100% + 80px);
}
@media (max-width: 768px) {
  .panel-contact-footer-wrap {
    margin-left: -18px;
    margin-right: -18px;
    width: calc(100% + 36px);
  }
}
.panel-customers .platform-contact-bar--panel,
.panel-customers .platform-contact-bar--landing,
.platform-contact-bar--customer {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}
.panel-customers .platform-contact-bar__label,
.platform-contact-bar--customer .platform-contact-bar__label {
  color: rgba(255, 255, 255, 0.92);
}
.panel-customers .platform-contact-btn,
.platform-contact-bar--customer .platform-contact-btn {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}
.panel-customers .platform-contact-btn:hover,
.platform-contact-bar--customer .platform-contact-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.panel-customers .platform-contact-btn--whatsapp:hover,
.platform-contact-bar--customer .platform-contact-btn--whatsapp:hover {
  background: rgba(34, 197, 94, 0.22);
  border-color: #4ade80;
  color: #bbf7d0;
}
.panel-customers .platform-contact-btn--phone:hover,
.platform-contact-bar--customer .platform-contact-btn--phone:hover {
  background: rgba(59, 130, 246, 0.22);
  border-color: #93c5fd;
  color: #dbeafe;
}
.panel-customers .platform-contact-btn--email:hover,
.platform-contact-bar--customer .platform-contact-btn--email:hover {
  background: rgba(139, 92, 246, 0.22);
  border-color: #c4b5fd;
  color: #ede9fe;
}
.mobile-panel-bottom .platform-contact-bar--landing,
.mobile-panel-bottom .platform-contact-bar--mobile {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}
.mobile-panel-bottom .platform-contact-bar__label {
  color: rgba(255, 255, 255, 0.9);
}
.mobile-panel-bottom .platform-contact-btn {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.mobile-panel-bottom .platform-contact-btn--whatsapp:hover { color: #4ade80; }
.mobile-panel-bottom .platform-contact-btn--phone:hover { color: #60a5fa; }
.mobile-panel-bottom .platform-contact-btn--email:hover { color: #c4b5fd; }

@media (max-width: 900px) {
  .landing-promo-grid { grid-template-columns: 1fr; }
  .landing-pr-card--featured { grid-column: auto; }
}
