.db-store-whatsapp-chat-wrapper {
    position: fixed;
    right: 20px;
    bottom: 20px;
    --dbsc-mobile-vh: 100dvh;
    --dbsc-mobile-vh-offset-top: 0px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    max-width: calc(100vw - 40px);
}

.db-store-whatsapp-chat {
    --chat-font-size: 14px;
    --chat-text-color: #111b21;
    --chat-text-muted: #6b7280;
    --chat-border-color: #d1d7db;
    --chat-error-color: #b42318;
    --chat-action-color: #008069;
    --chat-action-color-strong: #006f62;
    --chat-action-border: #c6ddd7;
    --chat-action-bg: #ffffff;
    --chat-action-bg-hover: #f4fbf9;
    --chat-action-bg-active: #e9f7f3;
    width: 340px;
    max-width: calc(100vw - 40px);
    height: 480px;
    max-height: calc(100vh - 120px);
    background: #e5ddd5;
    border: 1px solid #d1d7db;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
    display: none;
    flex-direction: column;
    overflow: hidden;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--chat-font-size);
    color: var(--chat-text-color);
}

.db-store-whatsapp-chat.is-open {
    display: flex;
}

.db-store-chat-open .db-store-whatsapp-widget {
    display: none !important;
}

.db-store-whatsapp-chat__reset {
    display: none;
    background: #ffffff;
    border: 1px solid #d1d7db;
    border-radius: 14px;
    padding: 4px 10px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.db-store-chat-open .db-store-whatsapp-chat__reset {
    display: inline-flex;
}

.db-store-whatsapp-chat__jump-cards {
    display: none;
    background: #ffffff;
    border: 1px solid #d1d7db;
    border-radius: 14px;
    padding: 4px 10px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.db-store-chat-open .db-store-whatsapp-chat__jump-cards {
    display: inline-flex;
}

.db-store-whatsapp-chat__jump-phone {
    display: none;
    background: #ffffff;
    border: 1px solid #d1d7db;
    border-radius: 14px;
    padding: 4px 10px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.db-store-chat-open .db-store-whatsapp-chat__jump-phone {
    display: inline-flex;
}

.db-store-whatsapp-chat__launcher {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    padding: 0;
    border-radius: 999px !important;
    aspect-ratio: 1 / 1;
    background: #25d366;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
    color: #ffffff;
}

.db-store-whatsapp-chat__launcher-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
}

.db-store-whatsapp-chat__launcher svg {
    width: 100%;
    height: 100%;
    display: block;
}

.db-store-chat-open .db-store-whatsapp-chat__launcher {
    display: none;
}

.db-store-whatsapp-chat__header {
    padding: 12px 14px;
    background: #075e54;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.db-store-whatsapp-chat__profile {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
}

.db-store-whatsapp-chat__profile > div:last-child {
    flex: 1 1 auto;
    min-width: 0;
}

.db-store-whatsapp-chat__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #128c7e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.db-store-whatsapp-chat__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.db-store-whatsapp-chat__status {
    font-size: 14px;
    color: #d2f8e5;
}

.db-store-whatsapp-chat__body {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 0 8px !important;
    background: #e5ddd5;
    background-image: none;
    overflow: hidden;
}

.db-store-whatsapp-chat__messages {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    padding-top: 10px;
    padding-right: 8px;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(17, 27, 33, 0.18) transparent;
}

.db-store-whatsapp-chat__messages::-webkit-scrollbar {
    width: 6px;
}

.db-store-whatsapp-chat__messages::-webkit-scrollbar-track {
    background: transparent;
}

.db-store-whatsapp-chat__messages::-webkit-scrollbar-thumb {
    background: rgba(17, 27, 33, 0.18);
    border-radius: 999px;
}

.db-store-whatsapp-chat__messages::-webkit-scrollbar-thumb:hover {
    background: rgba(17, 27, 33, 0.26);
}

.db-store-whatsapp-chat__bubble,
.db-store-whatsapp-chat__message-bubble {
    background: #ffffff;
    padding: 10px 12px;
    border-radius: 10px;
    display: inline-block;
    align-self: flex-start;
    width: fit-content;
    max-width: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    white-space: pre-line;
    font-size: var(--chat-font-size);
    color: var(--chat-text-color);
    line-height: 1.45;
}

.db-store-whatsapp-chat__bubble--user {
    align-self: flex-end;
    background: #dcf8c6;
}

.db-store-whatsapp-chat__bubble--user.is-editable {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.db-store-whatsapp-chat__bubble-user-text {
    display: inline-block;
    min-width: 0;
}

.db-store-whatsapp-chat__bubble-edit {
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 27, 33, 0.12);
    color: #25323a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    flex: 0 0 auto;
    padding: 0;
}

.db-store-whatsapp-chat__bubble-edit:hover {
    background: rgba(17, 27, 33, 0.2);
}

.db-store-whatsapp-chat__bubble-edit:focus-visible {
    outline: 2px solid #1f7aec;
    outline-offset: 1px;
}

.db-store-whatsapp-chat__message-bubble strong {
    font-weight: 700;
}

.db-store-whatsapp-chat__message-bubble em {
    font-style: italic;
}

.db-store-whatsapp-chat__message-list {
    margin: 6px 0 0 18px;
    padding: 0;
    list-style-position: outside;
    list-style-type: disc;
}

.db-store-whatsapp-chat__message-list--ordered {
    list-style-type: decimal;
}

.db-store-whatsapp-chat__message-list li + li {
    margin-top: 4px;
}

.db-store-whatsapp-chat__flow-media-caption .db-store-whatsapp-chat__message-list {
    margin-left: 16px;
}

.db-store-whatsapp-chat__message-bubble--media {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    width: min(100%, 360px);
    padding: 8px;
    white-space: normal;
}

.db-store-whatsapp-chat__flow-media-caption {
    padding: 2px 4px;
    font-size: var(--chat-font-size);
    line-height: 1.4;
    color: var(--chat-text-color);
    white-space: pre-line;
}

.db-store-whatsapp-chat__flow-media {
    width: 100%;
    max-width: 100%;
    border: 0;
    border-radius: 10px;
    background: #0e1320;
    display: block;
}

.db-store-whatsapp-chat__flow-media--image {
    height: auto;
    object-fit: cover;
}

.db-store-whatsapp-chat__flow-media--video,
.db-store-whatsapp-chat__flow-media--embed {
    min-height: 210px;
    aspect-ratio: 16 / 9;
}

.db-store-whatsapp-chat__flow-media--audio {
    background: #ffffff;
    padding: 6px;
}

.db-store-whatsapp-chat__flow-media-link {
    color: #0b63ce;
    word-break: break-all;
    text-decoration: underline;
}

.db-store-whatsapp-chat__typing-bubble {
    display: none;
    align-self: flex-start;
}

.db-store-whatsapp-chat__typing-bubble.is-active {
    display: inline-flex;
}

.db-store-whatsapp-chat__typing {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    height: 16px;
}

.db-store-whatsapp-chat__typing-bubble .db-store-whatsapp-chat__typing {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.db-store-whatsapp-chat__typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8696a0;
    display: inline-block;
    animation: dbStoreChatTyping 1s infinite ease-in-out;
}

.db-store-whatsapp-chat__typing-bubble .db-store-whatsapp-chat__typing span {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.db-store-whatsapp-chat__typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.db-store-whatsapp-chat__typing span:nth-child(3) {
    animation-delay: 0.4s;
}

.db-store-whatsapp-chat__message {
    display: inline-block;
}

.db-store-whatsapp-chat__form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    margin: 8px;
}

.db-store-whatsapp-chat__form.is-date-empty::before {
    content: attr(data-date-hint);
    position: absolute;
    left: 20px;
    right: 76px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--chat-text-muted);
    font-size: var(--chat-font-size);
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    z-index: 1;
}

.db-store-whatsapp-chat__form.is-date-empty:focus-within::before {
    opacity: 0;
}

.db-store-whatsapp-chat__form input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid #c9c9c9;
    border-radius: 10px;
    background: #f7f8f9;
    color: var(--chat-text-color);
    font-size: var(--chat-font-size);
    box-shadow: none;
}

.db-store-whatsapp-chat__form input.is-error {
    border-color: var(--chat-error-color);
}

.db-store-whatsapp-chat__form input[type="date"] {
    color: var(--chat-text-color) !important;
    -webkit-text-fill-color: var(--chat-text-color) !important;
    background: #f7f8f9 !important;
    color-scheme: light !important;
    forced-color-adjust: none;
    caret-color: var(--chat-text-color);
}

.db-store-whatsapp-chat__form input[type="date"]::-webkit-datetime-edit,
.db-store-whatsapp-chat__form input[type="date"]::-webkit-datetime-edit-year-field,
.db-store-whatsapp-chat__form input[type="date"]::-webkit-datetime-edit-month-field,
.db-store-whatsapp-chat__form input[type="date"]::-webkit-datetime-edit-day-field,
.db-store-whatsapp-chat__form input[type="date"]::-webkit-datetime-edit-text {
    color: var(--chat-text-color) !important;
    -webkit-text-fill-color: var(--chat-text-color) !important;
}

.db-store-whatsapp-chat__form input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 1 !important;
    filter: brightness(0) saturate(100%) !important;
    cursor: pointer;
}

.db-store-whatsapp-chat__form.is-date-empty input[type="date"] {
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
}

.db-store-whatsapp-chat__form.is-date-empty input[type="date"]::-webkit-date-and-time-value,
.db-store-whatsapp-chat__form.is-date-empty input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.db-store-whatsapp-chat__form.is-date-empty input[type="date"]::-webkit-datetime-edit,
.db-store-whatsapp-chat__form.is-date-empty input[type="date"]::-webkit-datetime-edit-year-field,
.db-store-whatsapp-chat__form.is-date-empty input[type="date"]::-webkit-datetime-edit-month-field,
.db-store-whatsapp-chat__form.is-date-empty input[type="date"]::-webkit-datetime-edit-day-field,
.db-store-whatsapp-chat__form.is-date-empty input[type="date"]::-webkit-datetime-edit-text {
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
}

.db-store-whatsapp-chat__form.is-date-empty:focus-within input[type="date"] {
    color: var(--chat-text-color) !important;
    -webkit-text-fill-color: var(--chat-text-color) !important;
}

.db-store-whatsapp-chat__form.is-date-empty:focus-within input[type="date"]::-webkit-date-and-time-value,
.db-store-whatsapp-chat__form.is-date-empty:focus-within input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.db-store-whatsapp-chat__form.is-date-empty:focus-within input[type="date"]::-webkit-datetime-edit,
.db-store-whatsapp-chat__form.is-date-empty:focus-within input[type="date"]::-webkit-datetime-edit-year-field,
.db-store-whatsapp-chat__form.is-date-empty:focus-within input[type="date"]::-webkit-datetime-edit-month-field,
.db-store-whatsapp-chat__form.is-date-empty:focus-within input[type="date"]::-webkit-datetime-edit-day-field,
.db-store-whatsapp-chat__form.is-date-empty:focus-within input[type="date"]::-webkit-datetime-edit-text {
    color: var(--chat-text-color) !important;
    -webkit-text-fill-color: var(--chat-text-color) !important;
}

.db-store-whatsapp-chat__form input[type="number"][name="db_store_chat_name"] {
    text-align: left !important;
    padding-left: 8px;
}

.db-store-whatsapp-chat__form input::placeholder {
    color: var(--chat-text-muted);
}

.db-store-whatsapp-chat__form button {
    white-space: nowrap;
    background: #22c55e;
    border: 0;
    color: #ffffff;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 600;
}

.db-store-whatsapp-chat__send {
    width: 52px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.db-store-whatsapp-chat__send svg {
    width: 24px;
    height: 24px;
}

.db-store-whatsapp-chat__form.is-hidden {
    display: none;
}

.db-store-whatsapp-chat__form.is-locked {
    opacity: 0.6;
    pointer-events: none;
}

.db-store-whatsapp-chat__form.is-locked input {
    background: #f1f2f3;
}

.db-store-whatsapp-chat__form-error {
    margin: 0 12px;
    color: var(--chat-error-color);
    font-size: var(--chat-font-size);
    line-height: 1.35;
}

.db-store-whatsapp-chat__new-messages {
    all: unset;
    position: absolute !important;
    left: 50% !important;
    bottom: 10px !important;
    transform: translate(-50%, 4px) !important;
    box-sizing: border-box;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    max-width: calc(100% - 24px);
    margin: 0 !important;
    padding: 0px 16px !important;
    border: 1px solid #d8e2e8 !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: var(--chat-text-color) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.db-store-whatsapp-chat__new-messages.is-visible {
    opacity: 1;
    transform: translate(-50%, 0) !important;
    pointer-events: auto;
}

.db-store-whatsapp-chat__options {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
    padding: 0;
    background: transparent;
    justify-content: flex-start;
}

.db-store-whatsapp-chat__options.is-active {
    display: flex;
}

.db-store-whatsapp-chat__options.is-final-cta {
    padding-bottom: 10px;
}

.db-store-whatsapp-chat__cards {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
}

.db-store-whatsapp-chat__cards > * {
    margin-top: 0;
    margin-bottom: 0;
}

.db-store-whatsapp-chat__cards.is-active {
    display: flex;
}

.db-store-whatsapp-chat__card-empty {
    background: #ffffff;
    border: 1px solid #d1d7db;
    border-radius: 12px;
    padding: 12px;
    color: #41525d;
}

.db-store-whatsapp-chat__card {
    background: #ffffff;
    border: 1px solid #d1d7db;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.db-store-whatsapp-chat__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.db-store-whatsapp-chat__card-title {
    font-weight: 700;
}

.db-store-whatsapp-chat__card-price-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 14px;
}

.db-store-whatsapp-chat__card-price-option {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.db-store-whatsapp-chat__card-price-option.is-focus-guided,
.db-store-whatsapp-chat__price-group.is-focus-guided,
.db-store-whatsapp-chat__card.is-focus-guided {
    animation: dbStoreInstallmentFocusPulse 680ms ease-out 1;
}

.db-store-whatsapp-chat__card-price-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 24px 0;
}

.db-store-whatsapp-chat__card-price-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    padding-left: 6px;
}

.db-store-whatsapp-chat__card-price-label-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 11px;
    height: 11px;
    color: #111827;
    flex: 0 0 auto;
}

.db-store-whatsapp-chat__card-price-label-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.db-store-whatsapp-chat__card-price-value {
    font-weight: 400;
}

.db-store-whatsapp-chat__price-line--primary {
    font-weight: 700;
}

.db-store-whatsapp-chat__card-price-value--select {
    font-weight: 400;
    width: 100%;
}

.db-store-whatsapp-chat__price-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #d4d9de;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
}

.db-store-whatsapp-chat__variant-select-wrap {
    display: block;
    position: relative;
    height: 48px;
    background: #1e9588;
    border-bottom: 1px solid rgba(255, 255, 255, 0.50);
    margin: 0 !important;
    padding: 0 !important;
}

.db-store-whatsapp-chat__hours-select-wrap {
    display: block;
    position: relative;
    height: 44px;
    background: #1b8378;
    border-bottom: 1px solid rgba(255, 255, 255, 0.50);
    margin: 0 !important;
    padding: 0 !important;
}

.db-store-whatsapp-chat__price-select--card select {
    padding: 0 !important;
}

.db-store-whatsapp-chat__variant-select-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    right: 50px;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.50);
    pointer-events: none;
}

.db-store-whatsapp-chat__hours-select-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    right: 50px;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.50);
    pointer-events: none;
}

.db-store-whatsapp-chat__variant-select-wrap::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}

.db-store-whatsapp-chat__hours-select-wrap::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}

.db-store-whatsapp-chat__variant-select {
    width: 100%;
    height: 48px !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 54px 0 14px !important;
    color: #ffffff;
    background: transparent !important;
    background-image: none !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 48px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    box-shadow: none !important;
    margin: 0 !important;
    color-scheme: light !important;
    forced-color-adjust: none;
}

.db-store-whatsapp-chat__hours-select {
    width: 100%;
    height: 44px !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 54px 0 14px !important;
    color: #ffffff;
    background: transparent !important;
    background-image: none !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 44px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    box-shadow: none !important;
    margin: 0 !important;
    color-scheme: light !important;
    forced-color-adjust: none;
}

.db-store-whatsapp-chat__variant-select option {
    color: #111b21 !important;
    background: #ffffff !important;
    -webkit-text-fill-color: #111b21 !important;
}

.db-store-whatsapp-chat__hours-select option {
    color: #111b21 !important;
    background: #ffffff !important;
    -webkit-text-fill-color: #111b21 !important;
}

.db-store-whatsapp-chat__variant-select option:checked {
    color: #111b21 !important;
    background: #e7f3ff !important;
    -webkit-text-fill-color: #111b21 !important;
}

.db-store-whatsapp-chat__hours-select option:checked {
    color: #111b21 !important;
    background: #e7f3ff !important;
    -webkit-text-fill-color: #111b21 !important;
}

.db-store-whatsapp-chat__variant-select::-ms-expand {
    display: none;
}

.db-store-whatsapp-chat__hours-select::-ms-expand {
    display: none;
}

.db-store-whatsapp-chat__variant-panel {
    display: none;
    margin: 0 !important;
    padding: 0 !important;
}

.db-store-whatsapp-chat__variant-panel.is-active {
    display: block;
}

.db-store-whatsapp-chat__price-combo {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    overflow: hidden;
    margin: 0 !important;
}

.db-store-whatsapp-chat__price-primary {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 48px;
    box-sizing: border-box;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: #0E8275;
    line-height: 1.2;
    margin: 0 !important;
}

.db-store-whatsapp-chat__price-primary-amount {
    color: #fff16e;
    font-weight: 700;
}

.db-store-whatsapp-chat__price-primary-suffix {
    color: #ffffff;
    font-weight: 600;
}

.db-store-whatsapp-chat__price-select {
    display: flex;
    align-items: stretch;
    position: relative;
}

.db-store-whatsapp-chat__price-select--card {
    min-height: 48px;
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 48px auto;
    align-items: center;
    column-gap: 4px;
    padding-left: 0px;
    box-sizing: border-box;
    margin: 0 !important;
    border-top: 0;
}

.db-store-whatsapp-chat__price-select-prefix {
    position: static;
    color: #1f2937;
    font-size: 14px;
    margin-left: 12px;
    font-weight: 500;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    display: inline-block;
    min-width: 14px;
    grid-row: 1;
    text-transform: none !important;
}

.db-store-whatsapp-chat__installments-toggle {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: left !important;
    min-height: 48px;
    height: 48px;
    width: 100%;
    box-sizing: border-box;
    padding: 0px !important;
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    border-top: 1px solid #e5e7eb;
    position: static !important;
    background: transparent !important;
    grid-row: 1;
    position: relative !important;
    padding-right: 36px;
    text-transform: none !important;
}

.db-store-whatsapp-chat__installments-toggle::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #4b5563;
    border-bottom: 2px solid #4b5563;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
    transition: transform 0.16s ease;
}

.db-store-whatsapp-chat__price-select--card.is-open .db-store-whatsapp-chat__installments-toggle::after {
    transform: translateY(-40%) rotate(-135deg);
}

.db-store-whatsapp-chat__installments-toggle-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: none !important;
}

.db-store-whatsapp-chat__installments-input {
    display: none;
}

.db-store-whatsapp-chat__installments-menu {
    grid-column: 1 / -1;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

.db-store-whatsapp-chat__installments-option {
    all: unset;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 10px;
    align-items: center;
    justify-content: left !important;
    padding: 0px 0 0 12px !important;
    color: #1f2937;
    font-size: 14px !important;
    line-height: 1.2;
    cursor: pointer;
    border-bottom: 1px solid #e8edf1 !important;
    position: static !important;
    background: #ffffff !important;
    text-transform: none !important;
}

.db-store-whatsapp-chat__installments-menu .db-store-whatsapp-chat__installments-option:last-of-type {
    border-bottom: 0;
}

.db-store-whatsapp-chat__installments-option-count {
    font-weight: 700;
    color: #0f766e;
    text-transform: none !important;
}

.db-store-whatsapp-chat__installments-option-value {
    color: #111b21;
    text-transform: none !important;
}

.db-store-whatsapp-chat__installments-option-note {
    color: #64748b;
    font-size: 12px;
    text-transform: none !important;
}

.db-store-whatsapp-chat__installments-option:hover {
    background: #f6fbfa !important;
}

.db-store-whatsapp-chat__installments-option.is-selected {
    background: #edf9f6 !important;
}

.db-store-whatsapp-chat__installments-option.is-selected .db-store-whatsapp-chat__installments-option-count {
    color: #0b5f55;
}

.db-store-whatsapp-chat__price-select--card.is-open .db-store-whatsapp-chat__installments-toggle-label {
    visibility: hidden;
}

.db-store-whatsapp-chat__installments-close {
    all: unset;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-top: 1px solid #dbe5ea;
    color: #0f766e;
    font-size: 13px;
    font-weight: 600;
    background: #f8fcfb;
    cursor: pointer;
    text-transform: lowercase !important;
    letter-spacing: 0.02em;
    margin-top: 8px;
}

.db-store-whatsapp-chat__installments-close:hover {
    background: #eef8f5;
}

.db-store-whatsapp-chat__card-installments {
    display: none;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #e2e8f0;
    font-size: 14px;
    color: #475569;
}

.db-store-whatsapp-chat__card-installments.is-open {
    display: block;
}

.db-store-whatsapp-chat__card-installments-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.db-store-whatsapp-chat__drinks-slider {
    margin: 12px -10px 16px -10px;
    padding: 16px 8px;
    border: 1px solid #d8e4ea;
    border-radius: 0px;
    background: #f8fbfd;
}

.db-store-whatsapp-chat__drinks-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.db-store-whatsapp-chat__drinks-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.db-store-whatsapp-chat__drinks-nav {
    display: inline-flex;
    gap: 6px;
}

.db-store-whatsapp-chat__drinks-nav-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #cdd7de;
    background: #ffffff;
    color: #334155;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.db-store-whatsapp-chat__drinks-nav-btn:hover {
    border-color: #9fb0bc;
}

.db-store-whatsapp-chat__drinks-viewport {
    margin-top: 0px;
    min-height: 42px;
}

.db-store-whatsapp-chat__drink-item {
    display: none;
    border: 1px solid #dbe6ec;
    border-radius: 9px;
    background: #ffffff;
    padding: 8px 10px;
    font-size: 14px;
    color: #0f172a;
}

.db-store-whatsapp-chat__drink-item.is-active {
    display: block;
}

.db-store-whatsapp-chat__drinks-indicator {
    margin-top: 6px;
    text-align: right;
    color: #475569;
    font-size: 14px;
}

.db-store-whatsapp-chat__card-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.db-store-whatsapp-chat__card-btn {
    border: 1px solid var(--chat-action-border);
    background: var(--chat-action-bg);
    border-radius: 12px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--chat-action-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1 1 calc(50% - 4px);
    max-width: calc(50% - 4px);
    min-height: 34px;
    transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.db-store-whatsapp-chat__btn-icon {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
}

.db-store-whatsapp-chat__card-btn--full {
    flex: 1 1 100%;
    max-width: 100%;
}

.db-store-whatsapp-chat__card-btn--primary {
    background: #22c55e;
    color: #ffffff;
    border-color: #22c55e;
}

.db-store-whatsapp-chat__card-btn:hover {
    background: var(--chat-action-bg-hover);
    border-color: #98c8be;
    color: var(--chat-action-color-strong);
}

.db-store-whatsapp-chat__card-btn:active {
    background: var(--chat-action-bg-active);
}

.db-store-whatsapp-chat__card-btn:focus-visible {
    outline: 2px solid rgba(0, 128, 105, 0.35);
    outline-offset: 1px;
}

.db-store-whatsapp-chat__card-btn--primary:hover,
.db-store-whatsapp-chat__card-btn--primary:active {
    background: #22c55e;
    border-color: #22c55e;
    color: #ffffff;
}

.db-store-whatsapp-chat__card-details {
    display: none;
    margin-top: 8px;
    color: #475569;
    font-size: 14px;
}

.db-store-whatsapp-chat__card-details.is-open {
    display: block;
}

.db-store-whatsapp-chat__card-variant {
    display: none;
    margin-top: 8px;
    gap: 8px;
    width: 100%;
}

.db-store-whatsapp-chat__card-variant.is-open {
    display: flex;
    flex-wrap: wrap;
}

.db-store-whatsapp-chat__brands-note {
    background: #ffffff;
    border: 1px solid #d1d7db;
    border-radius: 12px;
    padding: 10px 12px;
    line-height: 1.45;
}

.db-store-whatsapp-chat__brands-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.db-store-whatsapp-chat__brands-cell {
    width: 50%;
    vertical-align: top;
    padding: 6px 8px;
    font-size: var(--chat-font-size);
    color: var(--chat-text-color);
    line-height: 1.45;
    border-bottom: 1px solid #e6edf2;
}

.db-store-whatsapp-chat__brands-table tr:last-child .db-store-whatsapp-chat__brands-cell {
    border-bottom: 0;
}

.db-store-whatsapp-chat__brands-cell + .db-store-whatsapp-chat__brands-cell {
    border-left: 1px solid #e6edf2;
}

.db-store-whatsapp-chat__brands-cell--empty {
    color: transparent;
}

.db-store-whatsapp-chat__section-title {
    font-size: var(--chat-font-size);
    font-weight: 700;
    color: var(--chat-text-color);
    margin-bottom: 6px;
}

.db-store-whatsapp-chat__section-text {
    font-size: var(--chat-font-size);
    color: var(--chat-text-color);
    line-height: 1.45;
}

.db-store-whatsapp-chat__counters {
    background: #ffffff;
    border: 1px solid #d1d7db;
    border-radius: 12px;
    padding: 10px 12px;
}

.db-store-whatsapp-chat__counters-title {
    margin-bottom: 6px;
}

.db-store-whatsapp-chat__counters-slider {
    overflow: hidden;
}

.db-store-whatsapp-chat__counters-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(17, 27, 33, 0.18) transparent;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
}

/* Media carousels should keep the exact drop position after drag release. */
.db-store-whatsapp-chat__media-track {
    scroll-snap-type: none;
}

.db-store-whatsapp-chat__counters-track::-webkit-scrollbar {
    height: 6px;
}

.db-store-whatsapp-chat__counters-track::-webkit-scrollbar-track {
    background: transparent;
}

.db-store-whatsapp-chat__counters-track::-webkit-scrollbar-thumb {
    background: rgba(17, 27, 33, 0.18);
    border-radius: 999px;
}

.db-store-whatsapp-chat__counter-slide {
    flex: 0 0 55%;
    max-width: 55%;
    scroll-snap-align: center;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.db-store-whatsapp-chat__cups {
    margin-top: 0;
}

.db-store-whatsapp-chat__counter-slide img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    cursor: grab;
}

.db-store-whatsapp-chat__counters-track,
.db-store-whatsapp-chat__media-track {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
}

@media (pointer: coarse) {
    .db-store-whatsapp-chat__counters-track,
    .db-store-whatsapp-chat__media-track {
        cursor: auto;
    }
}

.db-store-whatsapp-chat__counters-track.is-dragging,
.db-store-whatsapp-chat__media-track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.db-store-whatsapp-chat__media-track.is-dragging .db-store-whatsapp-chat__counter-slide img {
    cursor: grabbing;
}

.db-store-whatsapp-chat__counter-slide > .db-store-whatsapp-chat__counter-zoom {
    position: absolute !important;
    right: 0px !important;
    bottom: auto !important;
    top: 0 !important;
    left: auto !important;
    margin: 0 !important;
    width: 34px;
    height: 34px;
    border-radius: 0 0 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(17, 27, 33, 0.82);
    color: #ffffff !important;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transform: none !important;
    padding: 0;
}

.db-store-whatsapp-chat__counter-slide > .db-store-whatsapp-chat__counter-zoom svg {
    width: 18px;
    height: 18px;
    display: block !important;
    color: #ffffff !important;
    fill: currentColor;
    opacity: 1;
    pointer-events: none;
}

.db-store-whatsapp-chat__lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 24px;
}

.db-store-whatsapp-chat__lightbox.is-open {
    display: flex;
}

.db-store-whatsapp-chat__lightbox-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.db-store-whatsapp-chat__lightbox-image {
    max-width: min(92vw, 840px);
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    touch-action: pan-y;
    user-select: none;
}

.db-store-whatsapp-chat__lightbox-image.is-enter-next {
    animation: dbStoreLightboxEnterNext 0.22s ease;
}

.db-store-whatsapp-chat__lightbox-image.is-enter-prev {
    animation: dbStoreLightboxEnterPrev 0.22s ease;
}

.db-store-whatsapp-chat__lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 100002;
    box-shadow: 0 6px 14px rgba(2, 6, 23, 0.24);
}

.db-store-whatsapp-chat__lightbox-nav:hover {
    background: #ffffff;
}

.db-store-whatsapp-chat__lightbox-nav[hidden] {
    display: none !important;
}

.db-store-whatsapp-chat__lightbox-prev {
    left: max(12px, calc(50% - min(46vw, 420px) - 52px));
}

.db-store-whatsapp-chat__lightbox-next {
    right: max(12px, calc(50% - min(46vw, 420px) - 52px));
}

.db-store-whatsapp-chat__lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    background: rgba(17, 27, 33, 0.8);
    color: #ffffff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    z-index: 2;
}

.db-store-whatsapp-chat__lightbox-counter[hidden] {
    display: none !important;
}

.db-store-whatsapp-chat__lightbox-close {
    position: fixed !important;
    top: 16px !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    color: #111827;
    font-size: 22px;
    cursor: pointer;
    z-index: 100003;
}

.db-store-whatsapp-chat__lightbox-close:hover {
    background: #ffffff;
}

@keyframes dbStoreLightboxEnterNext {
    0% {
        opacity: 0;
        transform: translateX(18px) scale(0.985);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes dbStoreLightboxEnterPrev {
    0% {
        opacity: 0;
        transform: translateX(-18px) scale(0.985);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 768px) {
    .db-store-whatsapp-chat-wrapper,
    .db-store-whatsapp-chat,
    .db-store-whatsapp-chat * {
        -webkit-text-size-adjust: 100%;
    }

    body.db-store-chat-open {
        overflow: hidden;
    }

    body.db-store-chat-open .db-store-whatsapp-chat-wrapper {
        top: var(--dbsc-mobile-vh-offset-top, 0px);
        right: 0;
        bottom: auto;
        left: 0;
        width: 100vw;
        height: var(--dbsc-mobile-vh, 100dvh);
        max-height: var(--dbsc-mobile-vh, 100dvh);
        max-width: none;
        gap: 0;
        align-items: stretch;
        justify-content: flex-end;
    }

    body.db-store-chat-open .db-store-whatsapp-chat {
        width: 100vw;
        max-width: 100vw;
        height: var(--dbsc-mobile-vh, 100dvh);
        max-height: var(--dbsc-mobile-vh, 100dvh);
        min-height: 0;
        border-radius: 0;
        border: 0;
        box-shadow: none;
    }

    body.db-store-chat-open .db-store-whatsapp-chat__header {
        padding-top: calc(12px + env(safe-area-inset-top, 0px));
        padding-left: calc(14px + env(safe-area-inset-left, 0px));
        padding-right: calc(14px + env(safe-area-inset-right, 0px));
    }

    body.db-store-chat-open .db-store-whatsapp-chat__body {
        flex: 1 1 auto;
        min-height: 0;
        overflow: hidden;
        padding: 0 0 0 8px !important;
    }

    body.db-store-chat-open .db-store-whatsapp-chat__messages {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
    }

    body.db-store-chat-open .db-store-whatsapp-chat__form {
        flex: 0 0 auto;
        margin: 8px;
        margin-bottom: 0;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    }

    body.db-store-chat-open .db-store-whatsapp-chat__form input,
    body.db-store-chat-open .db-store-whatsapp-chat__form input::placeholder,
    body.db-store-chat-open .db-store-whatsapp-chat__form.is-date-empty::before,
    body.db-store-chat-open .db-store-whatsapp-chat__variant-select,
    body.db-store-chat-open .db-store-whatsapp-chat__hours-select,
    body.db-store-chat-open .db-store-whatsapp-chat__installments-toggle,
    body.db-store-chat-open .db-store-whatsapp-chat__price-select,
    body.db-store-chat-open .db-store-whatsapp-chat__installments-option,
    body.db-store-chat-open .db-store-whatsapp-chat__lightbox-close,
    body.db-store-chat-open .db-store-whatsapp-chat__close,
    body.db-store-chat-open .db-store-whatsapp-chat__send {
        font-size: 16px !important;
    }

    body.db-store-chat-open .db-store-whatsapp-chat__form input,
    body.db-store-chat-open .db-store-whatsapp-chat__variant-select,
    body.db-store-chat-open .db-store-whatsapp-chat__hours-select,
    body.db-store-chat-open .db-store-whatsapp-chat__price-select {
        min-height: 44px;
    }

    body.db-store-chat-open .db-store-whatsapp-chat__reset,
    body.db-store-chat-open .db-store-whatsapp-chat__jump-cards,
    body.db-store-chat-open .db-store-whatsapp-chat__jump-phone {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .db-store-whatsapp-chat__options.is-flow-pictures .db-store-whatsapp-chat__option,
    .db-store-whatsapp-chat__options.is-flow-cards .db-store-whatsapp-chat__option {
        flex-basis: 100%;
        max-width: 100%;
    }
    .db-store-whatsapp-chat__options.is-flow-rating .db-store-whatsapp-chat__option {
        flex-basis: calc(25% - 6px);
        max-width: calc(25% - 6px);
    }
    .db-store-whatsapp-chat__counter-slide {
        flex-basis: 70%;
        max-width: 70%;
    }
    .db-store-whatsapp-chat__lightbox-prev {
        left: 8px;
    }
    .db-store-whatsapp-chat__lightbox-next {
        right: 8px;
    }
    .db-store-whatsapp-chat__lightbox-close {
        top: 10px !important;
        right: 10px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .db-store-whatsapp-chat__lightbox-image.is-enter-next,
    .db-store-whatsapp-chat__lightbox-image.is-enter-prev {
        animation: none !important;
    }
}

.db-store-whatsapp-chat__counters-desc {
    margin: 8px 0;
    font-size: var(--chat-font-size);
    color: var(--chat-text-color);
    line-height: 1.45;
}

.db-store-whatsapp-chat__brinde {
    padding: 14px 12px 12px;
}

.db-store-whatsapp-chat__brinde .db-store-whatsapp-chat__counters-title {
    margin-bottom: 6px;
}

.db-store-whatsapp-chat__brinde .db-store-whatsapp-chat__section-text {
    margin: 0 0 10px;
    line-height: 1.45;
}

.db-store-whatsapp-chat__brinde .db-store-whatsapp-chat__counters-slider {
    margin-top: 2px;
}

.db-store-whatsapp-chat__brinde .db-store-whatsapp-chat__counters-track {
    gap: 10px;
    padding-bottom: 0;
}

.db-store-whatsapp-chat__brinde .db-store-whatsapp-chat__counter-slide {
    flex: 0 0 58%;
    max-width: 58%;
}

.db-store-whatsapp-chat__differentials {
    background: #ffffff;
    border: 1px solid #d1d7db;
    border-radius: 12px;
    padding: 10px 12px;
}

.db-store-whatsapp-chat__differentials-title {
    margin-bottom: 8px;
}

.db-store-whatsapp-chat__differentials-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: var(--chat-font-size);
    color: var(--chat-text-color);
    line-height: 1.45;
}

.db-store-whatsapp-chat__option {
    background: var(--chat-action-bg);
    border: 1px solid var(--chat-action-border);
    border-radius: 14px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--chat-action-color);
    cursor: pointer;
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 36px;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    user-select: none;
    transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.db-store-whatsapp-chat__options.is-flow-pictures .db-store-whatsapp-chat__option {
    flex: 1 1 calc(50% - 4px);
    max-width: calc(50% - 4px);
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px;
    min-height: 88px;
}

.db-store-whatsapp-chat__options.is-flow-cards .db-store-whatsapp-chat__option {
    flex: 1 1 100%;
    max-width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px;
    min-height: 94px;
}

.db-store-whatsapp-chat__options.is-flow-rating .db-store-whatsapp-chat__option {
    flex: 1 1 calc(20% - 6px);
    max-width: calc(20% - 6px);
    min-width: 48px;
    gap: 4px;
}

.db-store-whatsapp-chat__option-media {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 64px;
    background: #f3f4f6;
    border: 1px solid #dbe4ec;
}

.db-store-whatsapp-chat__option-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.db-store-whatsapp-chat__option-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    min-width: 0;
    width: 100%;
}

.db-store-whatsapp-chat__option-label {
    font-weight: 700;
    line-height: 1.2;
}

.db-store-whatsapp-chat__option-description {
    font-size: 12px;
    line-height: 1.3;
    color: #4b5563;
}

.db-store-whatsapp-chat__option-cta {
    margin-top: 2px;
    font-size: 11px;
    font-weight: 700;
    color: #0f766e;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.db-store-whatsapp-chat__option-rating-star {
    color: #f59e0b;
    font-size: 16px;
    line-height: 1;
}

.db-store-whatsapp-chat__options--inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
}

.db-store-whatsapp-chat__options--inline .db-store-whatsapp-chat__option {
    flex: 1 1 calc(50% - 4px);
    max-width: calc(50% - 4px);
}

.db-store-whatsapp-chat__options.is-grid-two .db-store-whatsapp-chat__option {
    flex: 1 1 calc(50% - 4px);
    max-width: calc(50% - 4px);
}

.db-store-whatsapp-chat__options.is-grid-hours .db-store-whatsapp-chat__option--half {
    flex: 1 1 calc(50% - 4px);
    max-width: calc(50% - 4px);
}

.db-store-whatsapp-chat__options.is-grid-hours .db-store-whatsapp-chat__option--full {
    flex: 1 1 100%;
    max-width: 100%;
}

.db-store-whatsapp-chat__option:hover {
    border-color: #98c8be;
    background: var(--chat-action-bg-hover);
    color: var(--chat-action-color-strong);
}

.db-store-whatsapp-chat__option:active {
    background: var(--chat-action-bg-active);
}

.db-store-whatsapp-chat__option:focus-visible {
    outline: 2px solid rgba(0, 128, 105, 0.35);
    outline-offset: 1px;
}

.db-store-whatsapp-chat__close {
    background: transparent;
    border: 0;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #ffffff;
    flex: 0 0 auto;
}

@keyframes dbStoreChatTyping {
    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes dbStoreInstallmentFocusPulse {
    0% {
        background-color: transparent;
        box-shadow: 0 0 0 0 rgba(14, 130, 117, 0);
    }
    40% {
        background-color: rgba(14, 130, 117, 0.08);
        box-shadow: 0 0 0 2px rgba(14, 130, 117, 0.18), 0 6px 14px rgba(15, 23, 42, 0.10);
    }
    100% {
        background-color: transparent;
        box-shadow: 0 0 0 0 rgba(14, 130, 117, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .db-store-whatsapp-chat__card-price-option.is-focus-guided,
    .db-store-whatsapp-chat__price-group.is-focus-guided,
    .db-store-whatsapp-chat__card.is-focus-guided {
        animation: none !important;
        background-color: rgba(14, 130, 117, 0.08);
        box-shadow: 0 0 0 1px rgba(14, 130, 117, 0.20);
    }
}
