@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;
}

/* Form title */
.cb-form-title {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 12px;
}

/* Status message (error / info) */
.cb-form-status {
    display: none;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
}
.cb-form-status--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}
.cb-form-status--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

/* Disabled submit button */
.cb-form-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}

/* 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); }
}

/* ══════════════════════════════════════════════════════════════
   FAQ / Q&A Widget
══════════════════════════════════════════════════════════════ */
.cb-faq-widget { padding: 2px 0; }

.cb-faq-headline {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
}

/* Search bar */
.cb-faq-search-wrap {
    position: relative;
    margin-bottom: 12px;
}
.cb-faq-search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}
.cb-faq-search {
    width: 100%;
    box-sizing: border-box;
    padding: 9px 12px 9px 32px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    color: #1e293b;
    background: #f8fafc;
    transition: border-color .15s;
}
.cb-faq-search:focus { outline: none; border-color: #7c3aed; background: #fff; }

/* FAQ list */
.cb-faq-list { display: flex; flex-direction: column; gap: 6px; }

.cb-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: border-color .2s;
}
.cb-faq-item.cb-faq-open { border-color: #7c3aed; }

.cb-faq-q-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    transition: background .15s;
}
.cb-faq-q-btn:hover { background: #f8fafc; }
.cb-faq-item.cb-faq-open .cb-faq-q-btn { color: #7c3aed; background: #faf5ff; }

.cb-faq-chevron {
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.cb-faq-item.cb-faq-open .cb-faq-chevron { transform: rotate(180deg); color: #7c3aed; }

.cb-faq-ans {
    padding: 0 14px 14px;
    animation: cbFaqSlide .2s ease;
}
/* Rich text container */
.cb-faq-ans-body {
    font-size: 13px;
    color: #475569;
    line-height: 1.65;
}
.cb-faq-ans-body p  { margin: 0 0 6px; }
.cb-faq-ans-body p:last-child { margin-bottom: 0; }
.cb-faq-ans-body ul,
.cb-faq-ans-body ol { padding-left: 18px; margin: 4px 0 6px; }
.cb-faq-ans-body li { margin: 3px 0; }
.cb-faq-ans-body a  {
    color: #7c3aed;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .15s;
}
.cb-faq-ans-body a:hover { color: #5b21b6; }
.cb-faq-ans-body b,
.cb-faq-ans-body strong { font-weight: 700; color: #1e293b; }
.cb-faq-ans-body i,
.cb-faq-ans-body em     { font-style: italic; }
.cb-faq-ans-body u      { text-decoration: underline; }

@keyframes cbFaqSlide {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cb-faq-empty-msg { font-size: 13px; color: #94a3b8; text-align: center; padding: 20px 0; }

/* ══════════════════════════════════════════════════════════════
   Articles / Blog Widget
══════════════════════════════════════════════════════════════ */
.cb-art-widget { padding: 2px 0; }

.cb-art-headline {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
}

.cb-art-list { display: flex; flex-direction: column; gap: 8px; }

.cb-art-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    transition: border-color .2s, background .2s, transform .15s;
}
.cb-art-card:hover {
    border-color: #0f766e;
    background: #f0fdfa;
    transform: translateY(-1px);
}

.cb-art-card-img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cb-art-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cb-art-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: .35;
}

.cb-art-card-body { flex: 1; min-width: 0; }

.cb-art-card-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cb-art-card-excerpt {
    font-size: 12px;
    color: #64748b;
    line-height: 1.45;
    margin: 0 0 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cb-art-card-date {
    font-size: 11px;
    color: #94a3b8;
}
.cb-art-card-arrow { flex-shrink: 0; color: #cbd5e1; }
.cb-art-card:hover .cb-art-card-arrow { color: #0f766e; }

.cb-art-empty {
    font-size: 13px;
    color: #94a3b8;
    text-align: center;
    padding: 24px 0;
}

/* ══════════════════════════════════════════════════════════════
   Promo / Coupon App
══════════════════════════════════════════════════════════════ */
.cb-promo-widget { overflow: hidden; }

.cb-promo-hero {
    background: linear-gradient(135deg, var(--promo-accent, #EF4444) 0%, color-mix(in srgb, var(--promo-accent, #EF4444) 70%, #000) 100%);
    padding: 20px 18px 18px;
    text-align: center;
    position: relative;
}
.cb-promo-badge {
    display: inline-block;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.cb-promo-tag-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #fff;
}
.cb-promo-headline {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.2;
}
.cb-promo-desc {
    font-size: 13px;
    color: rgba(255,255,255,.85);
    margin: 0;
    line-height: 1.5;
}

.cb-promo-body { padding: 16px 14px 14px; }

/* Countdown */
.cb-promo-countdown {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 10px 12px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 10px;
}
.cb-promo-cd-label {
    font-size: 11px;
    color: #92400e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    flex-shrink: 0;
}
.cb-promo-cd-units {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: flex-end;
}
.cb-promo-cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 30px;
}
.cb-promo-cd-unit strong {
    font-size: 18px;
    font-weight: 800;
    color: #92400e;
    line-height: 1;
}
.cb-promo-cd-unit small {
    font-size: 9px;
    color: #a16207;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.cb-promo-cd-sep { font-weight: 800; color: #d97706; font-size: 16px; }
.cb-promo-expired { font-size: 13px; color: #94a3b8; text-align: center; padding: 8px 0; }

/* Coupon code */
.cb-promo-code-wrap { margin-bottom: 12px; }
.cb-promo-code-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .06em;
    display: block;
    margin-bottom: 6px;
}
.cb-promo-code-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 8px 12px;
}
.cb-promo-code {
    flex: 1;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .12em;
    color: #1e293b;
    font-family: monospace;
}
.cb-promo-copy-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: none;
    border-radius: 7px;
    background: #1e293b;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s, transform .1s;
}
.cb-promo-copy-btn:hover { background: #0f172a; }
.cb-promo-copy-btn:active { transform: scale(.96); }
.cb-promo-copy-btn.cb-promo-copied { background: #16a34a; }

/* CTA Button */
.cb-promo-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 10px;
    background: #EF4444;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .15s, transform .1s;
    box-sizing: border-box;
}
.cb-promo-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════════════
   Video App
══════════════════════════════════════════════════════════════ */
.cb-video-widget { padding: 4px 0; }

.cb-video-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px;
}

.cb-video-frame-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #0f172a;
}
.cb-video-frame {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    border-radius: 10px;
}
.cb-video-unavailable {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 16px;
    color: #94a3b8;
    text-align: center;
    font-size: 13px;
}
