/* ============================================================
   MINDORA CEYLON — template-footer.css v1.0
   Wellness · Medical · Mindful Travel
   Brand: Sapphire Blue + Gem Gold + Serenity Sage
   ALL colors/fonts/spacing reference variables from main.css
   ============================================================ */

/* ── FOOTER WRAPPER ─────────────────────────────────────────────── */
.mc-footer {
    position: relative;
    background: var(--color-navy-deep);
    color: var(--color-white-75);
    overflow: hidden;
}

/* Subtle background texture — sapphire mist */
.mc-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 40% at 10% 20%, rgba(42, 90, 138, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 30% at 90% 80%, rgba(74, 124, 95, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 25% at 50% 100%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* ── TOP DIVIDER ────────────────────────────────────────────────── */
.mc-footer-divider {
    height: 3px;
    background: linear-gradient(90deg,
        var(--color-navy-soft) 0%,
        var(--color-gold) 35%,
        var(--color-gold-light) 50%,
        var(--color-gold) 65%,
        var(--color-green) 100%);
}

/* ── MOUNTAIN SILHOUETTE ────────────────────────────────────────── */
.mc-footer-mountain {
    height: 40px;
    background: var(--color-navy-deep);
    position: relative;
    margin-top: -1px;
}
.mc-footer-mountain::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, var(--color-navy-deep) 100%);
    clip-path: polygon(0% 100%, 5% 60%, 12% 80%, 20% 40%, 28% 65%, 35% 25%, 42% 55%, 50% 10%, 58% 50%, 65% 20%, 72% 60%, 80% 30%, 88% 70%, 95% 45%, 100% 65%, 100% 100%);
    opacity: 0.4;
}

/* ── FOOTER BODY ────────────────────────────────────────────────── */
.mc-footer-body { padding: 56px 0 40px; }

.mc-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
}

/* 5-column grid */
.mc-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

/* ── COL: BRAND ─────────────────────────────────────────────────── */
.mc-footer-brand-col {}

.mc-footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.mc-footer-logo-ring {
    position: relative;
    width: 56px; height: 56px;
    flex-shrink: 0;
}
.mc-footer-logo-ring::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: conic-gradient(from 0deg, var(--color-gold), var(--color-gold-light), var(--color-navy-soft), var(--color-gold));
    opacity: 0.5;
}
.mc-footer-logo {
    position: relative;
    width: 56px; height: 56px;
    border-radius: 12px;
    object-fit: contain;
    background: var(--color-white-08);
    display: block;
}
.mc-footer-brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.mc-footer-brand-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.01em;
}
.mc-footer-brand-tagline {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

.mc-footer-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--color-white-60);
    margin: 0 0 20px;
}

/* Stats */
.mc-footer-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--color-white-05);
    border: 1px solid var(--color-white-12);
    border-radius: 12px;
    padding: 12px 0;
    margin-bottom: 20px;
}
.mc-footer-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 8px;
}
.mc-fstat-num {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gold-light);
    line-height: 1;
}
.mc-fstat-suffix {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold);
    display: inline;
}
.mc-fstat-label {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--color-white-50);
    text-align: center;
    line-height: 1.3;
}
.mc-footer-stat-sep {
    width: 1px;
    height: 32px;
    background: var(--color-white-12);
    flex-shrink: 0;
}

/* Contact cards */
.mc-footer-contacts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.mc-footer-contact-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--color-white-05);
    border: 1px solid var(--color-white-10);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.mc-footer-contact-card:hover {
    background: var(--color-white-10);
    border-color: var(--color-white-18);
    transform: translateX(3px);
}
.mc-fcc-icon {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-navy-mid);
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: background 0.2s;
}
.mc-footer-contact-card:hover .mc-fcc-icon { background: var(--color-gold-glow); }
.mc-fcc-icon-wa { color: #25D366 !important; }
.mc-fcc-text { display: flex; flex-direction: column; min-width: 0; }
.mc-fcc-label {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--color-white-50);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}
.mc-fcc-value {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: var(--color-white-80);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    margin-top: 1px;
}

/* Social icons */
.mc-footer-socials { display: flex; gap: 8px; }
.mc-footer-social {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-white-08);
    border: 1px solid var(--color-white-12);
    border-radius: 9px;
    font-size: 13px;
    color: var(--color-white-60);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.mc-footer-social:hover {
    background: var(--color-gold-glow);
    border-color: var(--border-gold);
    color: var(--color-gold-light);
    transform: translateY(-2px);
}

/* ── FOOTER COLUMNS ─────────────────────────────────────────────── */
.mc-footer-col-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white-90);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-white-10);
}
.mc-footer-col-title-second { margin-top: 24px; }
.mc-footer-col-icon { font-size: 14px; }

.mc-footer-nav-list { list-style: none; margin: 0; padding: 0; }
.mc-footer-nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 0;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-white-60);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    line-height: 1.4;
}
.mc-footer-nav-link i {
    font-size: 9px;
    color: var(--color-gold-dark);
    opacity: 0.6;
    transition: opacity 0.2s, color 0.2s;
    flex-shrink: 0;
}
.mc-footer-nav-link:hover { color: var(--color-gold-light); padding-left: 4px; }
.mc-footer-nav-link:hover i { opacity: 1; color: var(--color-gold); }
.mc-footer-nav-green { color: var(--color-green-light) !important; }
.mc-footer-nav-green i { color: var(--color-green) !important; opacity: 1 !important; }
.mc-footer-nav-green:hover { color: var(--color-green-light) !important; }

/* ── TRUST CARD ─────────────────────────────────────────────────── */
.mc-footer-trust-card {
    background: var(--color-white-05);
    border: 1px solid var(--color-white-10);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 16px;
}
.mc-footer-trust-title {
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-white-80);
    letter-spacing: 0.04em;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.mc-footer-trust-title i { color: var(--color-gold); font-size: 13px; }

.mc-footer-trust-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.mc-footer-trust-item { display: flex; align-items: flex-start; gap: 10px; }
.mc-trust-icon-wrap {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-gold-glow-sm);
    border: 1px solid var(--border-gold);
    border-radius: 7px;
    font-size: 12px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 1px;
}
.mc-trust-text { display: flex; flex-direction: column; gap: 2px; }
.mc-trust-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-white-80);
    line-height: 1.3;
}
.mc-trust-sub {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-white-40);
    line-height: 1.4;
}

/* ── HOURS CARD ─────────────────────────────────────────────────── */
.mc-footer-hours-card {
    background: var(--color-white-05);
    border: 1px solid var(--color-white-10);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 14px;
}
.mc-footer-hours-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white-70);
    letter-spacing: 0.05em;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.mc-footer-hours-title i { color: var(--color-gold); }
.mc-footer-hours-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.mc-footer-hours-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 12px;
}
.mc-footer-hours-list li span:first-child { color: var(--color-white-50); }
.mc-footer-hours-list li span:last-child { color: var(--color-white-80); font-weight: 500; }
.mc-footer-emergency-note {
    margin: 10px 0 0;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-green-light);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.4;
}
.mc-footer-emergency-note i { color: var(--color-green-light); flex-shrink: 0; }

/* ── LANGUAGES ──────────────────────────────────────────────────── */
.mc-footer-langs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.mc-footer-langs-label {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--color-white-50);
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.mc-footer-langs-label i { color: var(--color-gold); font-size: 11px; }
.mc-footer-langs-list { display: flex; gap: 6px; flex-wrap: wrap; }
.mc-footer-lang-badge {
    padding: 3px 8px;
    background: var(--color-white-08);
    border: 1px solid var(--color-white-12);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-white-60);
}

/* ── NEWSLETTER ─────────────────────────────────────────────────── */
.mc-footer-newsletter {}
.mc-footer-newsletter-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-white-80);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.mc-footer-newsletter-title i { color: var(--color-gold); }
.mc-footer-newsletter-sub {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-white-50);
    margin: 0 0 12px;
    line-height: 1.5;
}
.mc-footer-newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-white-18);
    background: var(--color-white-05);
}
.mc-footer-newsletter-input {
    flex: 1;
    padding: 10px 14px;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-white-80);
    min-width: 0;
}
.mc-footer-newsletter-input::placeholder { color: var(--color-white-30); }
.mc-footer-newsletter-btn {
    padding: 10px 14px;
    background: var(--gradient-gold);
    border: none;
    cursor: pointer;
    color: var(--color-white);
    font-size: 14px;
    transition: filter 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.mc-footer-newsletter-btn:hover { filter: brightness(1.1); }
.mc-footer-newsletter-privacy {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-white-30);
    margin: 8px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.mc-footer-newsletter-privacy i { font-size: 10px; color: var(--color-green-light); }

/* ── FOOTER BOTTOM BAR ──────────────────────────────────────────── */
.mc-footer-bottom {
    border-top: 1px solid var(--color-white-08);
    padding: 16px 0;
    background: rgba(10, 20, 40, 0.4);
}
.mc-footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.mc-footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.mc-footer-copyright {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: var(--color-white-40);
}
.mc-footer-bottom-sep { color: var(--color-white-20); font-size: 12px; }
.mc-footer-bottom-powered {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-gold-dark);
    font-weight: 500;
}
.mc-footer-bottom-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.mc-footer-bottom-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 11.5px;
    color: var(--color-white-40);
    font-weight: 500;
}
.mc-footer-bottom-badge i { font-size: 11px; color: var(--color-gold-dark); }

/* ── BACK TO TOP ────────────────────────────────────────────────── */
.mc-back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-gold);
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: var(--shadow-gold-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 900;
}
.mc-back-to-top:hover { filter: brightness(1.1); transform: translateY(-2px); }
.mc-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1280px) {
    .mc-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 28px; }
}
@media (max-width: 1024px) {
    .mc-footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
    .mc-footer-brand-col { grid-column: 1 / -1; }
    .mc-footer-trust-col { grid-column: 1 / -1; }
    .mc-footer-stats { max-width: 500px; }
}
@media (max-width: 640px) {
    .mc-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .mc-footer-body { padding: 40px 0 24px; }
    .mc-footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    .mc-footer-stats { flex-wrap: wrap; }
    .mc-footer-stat { min-width: 40%; }
    .mc-back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }
}
@media (max-width: 400px) {
    .mc-footer-grid { grid-template-columns: 1fr; }
}

/* ── ACCESSIBILITY ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .mc-footer-contact-card, .mc-footer-social,
    .mc-footer-nav-link, .mc-back-to-top { transition: none; }
    .mc-fstat-num { transition: none; }
}

/* ============================================================
   WHATSAPP FLOATING WIDGET
   Standard WA colours — brand requirement
   ============================================================ */
.mc-wa-widget {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 1020;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mc-wa-fab {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    order: 2;
}
.mc-wa-fab:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.55);
}

.suv-wa-fab-icon {
    font-size: 1.6rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.suv-wa-badge {
    position: absolute;
    top: -2px; right: -2px;
    width: 20px; height: 20px;
    background: #e74c3c;
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    transition: opacity 0.25s;
}
.suv-wa-badge.badge-hidden { opacity: 0; pointer-events: none; }

.mc-wa-pulse {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: mc-wa-pulse-anim 2.2s ease-out infinite;
    pointer-events: none;
}
@keyframes mc-wa-pulse-anim {
    0%   { transform: scale(1);   opacity: 0.8; }
    70%  { transform: scale(1.4); opacity: 0;   }
    100% { transform: scale(1.4); opacity: 0;   }
}

/* Popup */
.mc-wa-popup {
    order: 1;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(14, 36, 64, 0.25), 0 4px 12px rgba(14, 36, 64, 0.14);
    margin-bottom: 12px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transform-origin: bottom right;
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.mc-wa-popup.wa-popup-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* WA popup header */
.mc-wa-header {
    background: #075e54;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.suv-wa-agent {
    display: flex;
    align-items: center;
    gap: 10px;
}
.suv-wa-agent-avatar {
    position: relative;
    flex-shrink: 0;
}
.mc-wa-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 2px;
}
.suv-wa-online-dot {
    position: absolute;
    bottom: 1px; right: 1px;
    width: 11px; height: 11px;
    background: #4caf50;
    border-radius: 50%;
    border: 2px solid #075e54;
}
.suv-wa-agent-name {
    display: block;
    font-family: var(--font-body);
    font-size: 0.90rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
}
.suv-wa-agent-status {
    display: flex;
    align-items: center;
    gap: 5px;
}
.suv-wa-status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4caf50;
    flex-shrink: 0;
    animation: mc-status-pulse 2s ease infinite;
}
@keyframes mc-status-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}
#suv-wa-status-text {
    font-family: var(--font-body);
    font-size: 0.70rem;
    color: rgba(255,255,255,0.75);
}
.mc-wa-close {
    background: rgba(255,255,255,0.14);
    border: none;
    border-radius: 50%;
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 0.75rem;
    transition: background 0.18s;
}
.mc-wa-close:hover { background: rgba(255,255,255,0.25); }

/* Chat body */
.mc-wa-body {
    background: #e5ddd5;
    padding: 16px;
    min-height: 120px;
}
.suv-wa-date-chip {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: rgba(0,0,0,0.45);
    background: rgba(255,255,255,0.70);
    border-radius: 99px;
    padding: 2px 10px;
    margin: 0 auto 12px;
    display: flex;
    justify-content: center;
    width: fit-content;
}
.mc-wa-bubble {
    display: inline-block;
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 10px 12px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #333;
    line-height: 1.55;
    max-width: 90%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
.suv-wa-msg-time {
    display: block;
    font-size: 0.62rem;
    color: rgba(0,0,0,0.40);
    margin-top: 4px;
    padding-left: 2px;
}

/* Quick replies */
.mc-wa-replies {
    padding: 10px 12px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.suv-wa-qr-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: none;
    border: 1px solid #25d366;
    border-radius: 99px;
    font-family: var(--font-body);
    font-size: 0.77rem;
    font-weight: 500;
    color: #075e54;
    cursor: pointer;
    transition: all 0.18s;
    text-align: left;
    width: 100%;
}
.suv-wa-qr-btn i { font-size: 0.73rem; color: #25d366; flex-shrink: 0; }
.suv-wa-qr-btn:hover { background: #25d366; color: #fff; }
.suv-wa-qr-btn:hover i { color: #fff; }

/* Input row */
.mc-wa-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}
.mc-wa-input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 99px;
    padding: 7px 12px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #333;
    outline: none;
    transition: border-color 0.18s;
    min-width: 0;
}
.mc-wa-input:focus { border-color: #25d366; }
.mc-wa-input::placeholder { color: #aaa; }
.mc-wa-send {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #25d366;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.18s;
}
.mc-wa-send:hover { background: #128c7e; transform: scale(1.08); }

@media (max-width: 640px) {
    .mc-wa-popup { width: 290px; }
    .mc-wa-widget { bottom: 20px; right: 16px; }
}
