@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&display=swap');

#cb-widget {
    --cb-color: #2563eb;
    --cb-radius: 16px;
    --cb-shadow: 0 8px 32px rgba(0,0,0,.18);
    position: fixed;
    z-index: 999999;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Positioning */
#cb-widget.cb-bottom-right { bottom: 24px; right: 24px; }
#cb-widget.cb-bottom-left  { bottom: 24px; left: 24px; }
#cb-widget.cb-top-right    { top: 24px; right: 24px; }
#cb-widget.cb-top-left     { top: 24px; left: 24px; }

/* Trigger Button */
.cb-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--cb-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(0,0,0,.25);
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}
.cb-trigger:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 36px rgba(0,0,0,.3);
}
.cb-trigger:active { transform: scale(.97); }

#cb-widget.cb-size-small .cb-trigger { padding: 10px 16px; font-size: 13px; }
#cb-widget.cb-size-large .cb-trigger { padding: 15px 26px; font-size: 17px; }

.cb-trigger-icon { display: flex; align-items: center; transition: all .3s; }
.cb-trigger-icon[hidden] { display: none; }

/* Menu Panel */
.cb-menu, .cb-content-panel {
    position: absolute;
    width: 330px;
    background: #fff;
    border-radius: var(--cb-radius);
    box-shadow: var(--cb-shadow);
    border: 1px solid rgba(0,0,0,.08);
    overflow: hidden;
    transform-origin: bottom right;
    animation: cb-slide-up .25s cubic-bezier(.34,1.56,.64,1);
}

#cb-widget.cb-bottom-right .cb-menu,
#cb-widget.cb-bottom-right .cb-content-panel { bottom: calc(100% + 14px); right: 0; transform-origin: bottom right; }
#cb-widget.cb-bottom-left .cb-menu,
#cb-widget.cb-bottom-left .cb-content-panel  { bottom: calc(100% + 14px); left: 0; transform-origin: bottom left; }
#cb-widget.cb-top-right .cb-menu,
#cb-widget.cb-top-right .cb-content-panel    { top: calc(100% + 14px); right: 0; transform-origin: top right; }
#cb-widget.cb-top-left .cb-menu,
#cb-widget.cb-top-left .cb-content-panel     { top: calc(100% + 14px); left: 0; transform-origin: top left; }

[hidden] { display: none !important; }

@keyframes cb-slide-up {
    from { opacity: 0; transform: scale(.9) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.cb-menu-header {
    padding: 18px 20px 14px;
    background: var(--cb-color);
    color: #fff;
}
.cb-menu-header h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 3px;
    line-height: 1.2;
}
.cb-menu-header p {
    font-size: 13px;
    opacity: .85;
    margin: 0;
}

.cb-menu-body {
    padding: 8px 0;
    max-height: 320px;
    overflow-y: auto;
}

.cb-app-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    cursor: pointer;
    transition: background .15s;
}
.cb-app-item:hover { background: #f8fafc; }
.cb-app-icon { font-size: 22px; width: 36px; text-align: center; flex-shrink: 0; }
.cb-app-label { flex: 1; font-size: 14px; font-weight: 500; color: #1e293b; }
.cb-app-arrow { color: #94a3b8; flex-shrink: 0; }
.cb-app-item:hover .cb-app-arrow { color: var(--cb-color); }

/* Content panel */
.cb-content-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    background: #fafafa;
}
.cb-back-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--cb-color);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px 4px 4px;
    border-radius: 6px;
    transition: background .15s;
    font-family: inherit;
}
.cb-back-btn:hover { background: rgba(37,99,235,.08); }
.cb-content-header h3 { font-size: 15px; font-weight: 700; color: #0f172a; }
.cb-content-body {
    padding: 18px;
    max-height: 340px;
    overflow-y: auto;
}

/* App-specific content styles */
.cb-hours-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cb-hours-table tr { border-bottom: 1px solid #f1f5f9; }
.cb-hours-table td { padding: 8px 4px; }
.cb-hours-table td:first-child { font-weight: 600; color: #475569; width: 100px; }

.cb-social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.cb-social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #1e293b;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s;
}
.cb-social-link:hover { border-color: var(--cb-color); color: var(--cb-color); background: rgba(37,99,235,.04); }

.cb-list-items { list-style: none; padding: 0; }
.cb-list-items li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}
.cb-list-items li:last-child { border-bottom: none; }

/* Contact form styles */
.cb-form-field { margin-bottom: 12px; }
.cb-form-field input, .cb-form-field textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: #1e293b;
    transition: border-color .2s;
    box-sizing: border-box;
    background: #fafafa;
}
.cb-form-field input:focus, .cb-form-field textarea:focus {
    outline: none;
    border-color: var(--cb-color);
    background: #fff;
}
.cb-form-field textarea { height: 80px; resize: vertical; }
.cb-form-submit {
    width: 100%;
    padding: 11px;
    background: var(--cb-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s;
    margin-top: 4px;
}
.cb-form-submit:hover { opacity: .9; }

.cb-action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--cb-color);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: opacity .2s;
    margin-top: 10px;
}
.cb-action-link:hover { opacity: .9; color: #fff; }

.cb-map-embed { width: 100%; height: 220px; border-radius: 10px; border: none; }
.cb-embed-content iframe { width: 100%; border: none; border-radius: 8px; }
.cb-success-msg {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

/* Brand SVG icon sizing in menu list */
.cb-app-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

/* Brand button (replaces cb-action-link for platform buttons) */
.cb-brand-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    transition: opacity .2s, transform .15s;
    box-sizing: border-box;
    margin-top: 0;
}
.cb-brand-btn:hover { opacity: .92; transform: translateY(-1px); color: #fff; }
.cb-brand-btn-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cb-brand-btn-icon svg {
    width: 26px;
    height: 26px;
    display: block;
    border-radius: 6px;
}
/* Social links: stack vertically */
.cb-social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* SVG icon sizing in frontend menu */
.cb-app-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cb-app-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}



/* ══════════════════════════════════════════════
   ZILA BUTTON PRO v4.3.6 — Desktop & Mobile
   Appearance: Shape · Size · Shadow · Label
══════════════════════════════════════════════ */

/* ── Shape variants ── */
#cb-widget.cb-shape-pill     .cb-trigger { border-radius: 50px; }
#cb-widget.cb-shape-rounded  .cb-trigger { border-radius: 12px; }
#cb-widget.cb-shape-circle   .cb-trigger { border-radius: 50%; padding: 0; width: 56px; height: 56px; justify-content: center; }
#cb-widget.cb-shape-square   .cb-trigger { border-radius: 10px; padding: 0; width: 56px; height: 56px; justify-content: center; }

/* Hide label text when circle/square */
#cb-widget.cb-shape-circle .cb-trigger-label,
#cb-widget.cb-shape-square .cb-trigger-label { display: none !important; }

/* ── Size presets ── */
#cb-widget.cb-size-small .cb-trigger  { padding: 9px 15px; font-size: 13px; }
#cb-widget.cb-size-small .cb-trigger-icon svg { width: 18px; height: 18px; }
#cb-widget.cb-size-medium .cb-trigger { padding: 12px 20px; font-size: 15px; }
#cb-widget.cb-size-medium .cb-trigger-icon svg { width: 22px; height: 22px; }
#cb-widget.cb-size-large  .cb-trigger { padding: 15px 26px; font-size: 17px; }
#cb-widget.cb-size-large  .cb-trigger-icon svg { width: 26px; height: 26px; }

/* Circle/Square override sizes */
#cb-widget.cb-shape-circle.cb-size-small .cb-trigger,
#cb-widget.cb-shape-square.cb-size-small .cb-trigger { width: 46px; height: 46px; padding: 0; }
#cb-widget.cb-shape-circle.cb-size-medium .cb-trigger,
#cb-widget.cb-shape-square.cb-size-medium .cb-trigger { width: 56px; height: 56px; padding: 0; }
#cb-widget.cb-shape-circle.cb-size-large .cb-trigger,
#cb-widget.cb-shape-square.cb-size-large .cb-trigger { width: 66px; height: 66px; padding: 0; }

/* ── Shadow variants ── */
#cb-widget.cb-shadow-none  .cb-trigger { box-shadow: none; }
#cb-widget.cb-shadow-sm    .cb-trigger { box-shadow: 0 2px 8px rgba(0,0,0,.18); }
#cb-widget.cb-shadow-lg    .cb-trigger { box-shadow: 0 6px 24px rgba(0,0,0,.28); }
#cb-widget.cb-shadow-glow  .cb-trigger { box-shadow: 0 0 0 3px rgba(255,255,255,.35), 0 6px 24px rgba(0,0,0,.28), 0 0 20px var(--cb-color); }

/* ── Desktop-specific (min-width 769px) ── */
@media (min-width: 769px) {
    #cb-widget.cb-desktop-shape-pill     .cb-trigger { border-radius: 50px; }
    #cb-widget.cb-desktop-shape-rounded  .cb-trigger { border-radius: 12px; }
    #cb-widget.cb-desktop-shape-circle   .cb-trigger { border-radius: 50%;  padding: 0; width: var(--cb-d-w, 56px); height: var(--cb-d-w, 56px); justify-content: center; }
    #cb-widget.cb-desktop-shape-square   .cb-trigger { border-radius: 10px; padding: 0; width: var(--cb-d-w, 56px); height: var(--cb-d-w, 56px); justify-content: center; }
    #cb-widget.cb-desktop-shape-circle .cb-trigger .cb-trigger-label,
    #cb-widget.cb-desktop-shape-square .cb-trigger .cb-trigger-label { display: none !important; }

    #cb-widget.cb-desktop-size-small  .cb-trigger { padding: 9px 15px;  font-size: 13px; }
    #cb-widget.cb-desktop-size-small  .cb-trigger svg { width: 18px; height: 18px; }
    #cb-widget.cb-desktop-size-medium .cb-trigger { padding: 12px 20px; font-size: 15px; }
    #cb-widget.cb-desktop-size-medium .cb-trigger svg { width: 22px; height: 22px; }
    #cb-widget.cb-desktop-size-large  .cb-trigger { padding: 15px 26px; font-size: 17px; }
    #cb-widget.cb-desktop-size-large  .cb-trigger svg { width: 26px; height: 26px; }
    #cb-widget.cb-desktop-size-custom .cb-trigger {
        padding: var(--cb-d-py, 12px) var(--cb-d-px, 20px);
        font-size: var(--cb-d-fs, 15px);
    }
    #cb-widget.cb-desktop-size-custom .cb-trigger svg {
        width: var(--cb-d-is, 22px); height: var(--cb-d-is, 22px);
    }

    #cb-widget.cb-desktop-no-label .cb-trigger .cb-trigger-label { display: none !important; }

    #cb-widget.cb-desktop-shadow-none  .cb-trigger { box-shadow: none; }
    #cb-widget.cb-desktop-shadow-sm    .cb-trigger { box-shadow: 0 2px 8px rgba(0,0,0,.18); }
    #cb-widget.cb-desktop-shadow-lg    .cb-trigger { box-shadow: 0 6px 24px rgba(0,0,0,.28); }
    #cb-widget.cb-desktop-shadow-glow  .cb-trigger { box-shadow: 0 0 0 3px rgba(255,255,255,.35), 0 6px 24px rgba(0,0,0,.28), 0 0 20px var(--cb-color); }
}

/* ── Mobile-specific (max-width 768px) ── */
@media (max-width: 768px) {
    .cb-menu, .cb-content-panel { width: calc(100vw - 32px); max-width: 340px; }

    #cb-widget.cb-mobile-shape-pill     .cb-trigger { border-radius: 50px; }
    #cb-widget.cb-mobile-shape-rounded  .cb-trigger { border-radius: 12px; }
    #cb-widget.cb-mobile-shape-circle   .cb-trigger { border-radius: 50%;  padding: 0; width: var(--cb-m-w, 52px); height: var(--cb-m-w, 52px); justify-content: center; }
    #cb-widget.cb-mobile-shape-square   .cb-trigger { border-radius: 10px; padding: 0; width: var(--cb-m-w, 52px); height: var(--cb-m-w, 52px); justify-content: center; }
    #cb-widget.cb-mobile-shape-circle .cb-trigger .cb-trigger-label,
    #cb-widget.cb-mobile-shape-square .cb-trigger .cb-trigger-label { display: none !important; }

    #cb-widget.cb-mobile-size-small  .cb-trigger { padding: 9px 14px;  font-size: 13px; }
    #cb-widget.cb-mobile-size-small  .cb-trigger svg { width: 18px; height: 18px; }
    #cb-widget.cb-mobile-size-medium .cb-trigger { padding: 11px 16px; font-size: 14px; }
    #cb-widget.cb-mobile-size-medium .cb-trigger svg { width: 22px; height: 22px; }
    #cb-widget.cb-mobile-size-large  .cb-trigger { padding: 14px 22px; font-size: 16px; }
    #cb-widget.cb-mobile-size-large  .cb-trigger svg { width: 24px; height: 24px; }
    #cb-widget.cb-mobile-size-custom .cb-trigger {
        padding: var(--cb-m-py, 11px) var(--cb-m-px, 16px);
        font-size: var(--cb-m-fs, 14px);
    }
    #cb-widget.cb-mobile-size-custom .cb-trigger svg {
        width: var(--cb-m-is, 22px); height: var(--cb-m-is, 22px);
    }

    #cb-widget.cb-mobile-no-label .cb-trigger .cb-trigger-label { display: none !important; }

    #cb-widget.cb-mobile-shadow-none  .cb-trigger { box-shadow: none; }
    #cb-widget.cb-mobile-shadow-sm    .cb-trigger { box-shadow: 0 2px 8px rgba(0,0,0,.18); }
    #cb-widget.cb-mobile-shadow-lg    .cb-trigger { box-shadow: 0 6px 24px rgba(0,0,0,.28); }
    #cb-widget.cb-mobile-shadow-glow  .cb-trigger { box-shadow: 0 0 0 3px rgba(255,255,255,.35), 0 6px 24px rgba(0,0,0,.28), 0 0 20px var(--cb-color); }
}
