/**
 * Floating SMS button (bottom-left corner).
 *
 * Styled to match the site's "Chat with us" widget: a solid forest-green pill
 * (#166941) with a white SMS icon + label. Opens an SMS to the location phone.
 * Rendered in footer.php on every page when enabled in Store Settings.
 *
 * Enqueued site-wide (see functions.php).
 */

.cdc-sms-fab {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1040;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 20px;
    border-radius: 999px;

    background-color: #166941;
    color: #fff;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.cdc-sms-fab:hover,
.cdc-sms-fab:focus {
    background-color: #12592f;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.cdc-sms-fab:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.cdc-sms-fab__icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: currentColor;
}

.cdc-sms-fab__label {
    font-size: 1rem;
}

@media (max-width: 575.98px) {
    .cdc-sms-fab {
        left: 14px;
        bottom: 14px;
        padding: 10px 16px;
    }

    .cdc-sms-fab__icon {
        width: 18px;
        height: 18px;
    }

    .cdc-sms-fab__label {
        font-size: 0.9rem;
    }
}
