/*
 * CAAH concierge — chat window.
 *
 * Loaded alongside caah-conversion.css, which owns the launcher's position and the
 * no-JavaScript link list. Everything here is scoped under .caah-concierge--live, the
 * class the script adds once it has built the conversation, so a visitor whose
 * JavaScript failed keeps the original panel untouched.
 *
 * THE BUG THIS FILE ONCE HAD, WRITTEN DOWN SO IT DOES NOT RETURN
 * --------------------------------------------------------------
 * `.caah-concierge--live .caah-concierge-panel { display: flex }` is specificity 0,2,0.
 * The user-agent rule that hides an element with the `hidden` attribute is `[hidden] {
 * display: none }`, specificity 0,1,0. The panel therefore ignored `hidden` entirely:
 * it was on screen from page load and the close button did nothing. Every automated
 * check passed because they all asserted the attribute rather than the pixels.
 *
 * Hence the explicit `[hidden]` rule below, and browser-check.mjs now measures the
 * rendered box instead of trusting the property.
 *
 * The floating layer on this site is crowded — a sticky action bar, the Cherry
 * estimator pill and this launcher all live in the bottom corners, and the geometry was
 * worked out at fifteen viewport widths (artifacts/goal-progress.md). The panel grows
 * upward from the launcher on desktop and becomes a bottom sheet below 560px.
 */

.caah-concierge--live {
  --cc-surface: #ffffff;
  --cc-surface-2: #f7f3ea;
  --cc-line: rgba(31, 32, 39, 0.10);
  --cc-line-strong: rgba(31, 32, 39, 0.16);
  --cc-ink: #1f1c1a;
  --cc-muted: #6b6862;
  --cc-brand: #df3942;
  --cc-brand-deep: #c52029;
  --cc-brand-darker: #a6161e;
  --cc-brand-wash: rgba(223, 57, 66, 0.08);
  --cc-radius: 22px;
  --cc-shadow: 0 30px 70px -22px rgba(31, 32, 39, 0.40), 0 4px 14px rgba(31, 32, 39, 0.07);
}

/* ------------------------------------------------------------------ launcher */

.caah-concierge--live .caah-concierge-launch {
  gap: 9px;
  padding: 11px 20px 11px 16px;
  border: 0;
  background: linear-gradient(135deg, var(--cc-brand) 0%, var(--cc-brand-deep) 100%);
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 30px -8px rgba(197, 32, 41, 0.55), 0 2px 6px rgba(31, 32, 39, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.caah-concierge--live .caah-concierge-launch:hover,
.caah-concierge--live .caah-concierge-launch:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px -10px rgba(197, 32, 41, 0.6), 0 2px 8px rgba(31, 32, 39, 0.14);
}

.caah-concierge--live.caah-concierge--open .caah-concierge-launch {
  opacity: 0;
  pointer-events: none;
}

/*
 * Launcher mark. Rendered server-side so it is there for a visitor whose JavaScript
 * never arrives, and given the same white coin as the header avatar for the same reason:
 * the pill is brand red and the mark's disk is brand red.
 */
.caah-concierge-launch .caah-concierge-mark {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  padding: 1px;
  border-radius: 50%;
  background: #fff;
}

/* --------------------------------------------------------------------- panel */

/* Specificity high enough to beat the display rule below. Without this the panel
   cannot be closed — see the note at the top of this file. */
.caah-concierge--live .caah-concierge-panel[hidden] {
  display: none !important;
}

/*
 * Height follows the conversation. A fixed height left a mostly-empty window under a
 * two-line greeting, which reads as unfinished; max-height keeps it from ever growing
 * past the viewport once the transcript is long.
 */
.caah-concierge--live .caah-concierge-panel {
  display: flex;
  flex-direction: column;
  width: min(400px, calc(100vw - 32px));
  height: auto;
  max-height: min(640px, calc(100vh - 130px));
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  background: var(--cc-surface);
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius);
  box-shadow: var(--cc-shadow);
  animation: caah-cc-panel-in 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes caah-cc-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
}

/* -------------------------------------------------------------------- header */

.caah-cc-head {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  background: linear-gradient(135deg, var(--cc-brand-deep) 0%, var(--cc-brand-darker) 100%);
  color: #fff;
}

/*
 * The hospital's own mark sits here, and the mark is a red disk -- which on a deep-red
 * header would all but disappear. So the avatar is a white coin and the disk sits inside
 * it with a 2px rim, which is how the logo is presented everywhere else on the site: on
 * white. Padding rather than a border, so the rim is part of the circle and cannot be
 * clipped by the image's own border-radius.
 *
 * The mark is sized from the coin (100%), not in pixels, so the phone breakpoint below
 * only has to change one number instead of two that could drift apart.
 */
.caah-cc-avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(31, 32, 39, 0.22);
  color: #fff;
}

.caah-cc-mark {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* Only reached when no mark URL is configured -- the drawn glyph, on the old wash. */
.caah-cc-avatar--fallback {
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

/*
 * Scout's coin.
 *
 * It is a <button>, so the element defaults have to be undone before it can look like
 * the span it replaced -- but the focus ring is deliberately kept and made visible
 * against the red header, because the tricks are only reachable by keyboard through it.
 */
.caah-cc-avatar--scout {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  cursor: pointer;
  overflow: hidden;
}

.caah-cc-avatar--scout:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/*
 * The head strip: four cells in one row. Sizing the background to 400% of the box makes
 * one cell exactly fill it, and the runtime moves between them by background-position
 * alone -- no reflow, no second request, no chance of a half-loaded frame appearing.
 */
.caah-cc-scout {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 400% 100%;
  background-position: 0 0;
}

/*
 * A trick, played as a turn in the transcript rather than floating over it. Six cells,
 * so 600%. The aspect ratio matches the sheet's cell (180x222) -- if those ever diverge
 * he gets squashed, which is why the number is written down here next to the sheet's.
 */
.caah-cc-msg--trick {
  padding-top: 2px;
}

.caah-cc-trick {
  display: block;
  width: 84px;
  height: 104px;
  background-repeat: no-repeat;
  background-size: 600% 100%;
  background-position: 0 0;
  transform-origin: 50% 100%;
}

.caah-cc-heading {
  flex: 1 1 auto;
  min-width: 0;
}

.caah-cc-namerow {
  display: flex;
  align-items: center;
  gap: 7px;
}

.caah-cc-name {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*
 * One line, always. The full sentence ("We are closed for the day. We open tomorrow at
 * 9:00am.") wrapped to two lines here and pushed into the buttons beside it, so the
 * header takes the short label from openState() and clips anything unexpected.
 */
.caah-cc-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.75rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* The dot is the glanceable version of the sentence next to it. */
.caah-cc-status::before {
  content: '';
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.caah-cc-status--open::before {
  background: #86e29b;
}

.caah-cc-status--closing_soon::before {
  background: #ffd27d;
}

.caah-cc-headactions {
  flex: 0 0 auto;
  display: flex;
  gap: 2px;
}

.caah-cc-iconbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease;
}

.caah-cc-iconbtn:hover,
.caah-cc-iconbtn:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ------------------------------------------------------------- urgent strip */

/* Never scrolls away: the one thing that must not take a scroll to find is the phone
   number. */
.caah-cc-urgent {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: #fff2f2;
  border-bottom: 1px solid rgba(223, 57, 66, 0.16);
  color: var(--cc-brand-deep);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color 140ms ease;
}

.caah-cc-urgent::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cc-brand);
  box-shadow: 0 0 0 3px rgba(223, 57, 66, 0.18);
}

.caah-cc-urgent:hover,
.caah-cc-urgent:focus-visible {
  background: #ffe8e8;
}

/* ---------------------------------------------------------------- transcript */

.caah-cc-log {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 14px 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--cc-surface-2);
  scrollbar-width: thin;
}

.caah-cc-msg {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 100%;
  animation: caah-cc-msg-in 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes caah-cc-msg-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}

.caah-cc-msg--you {
  align-items: flex-end;
}

.caah-cc-bubble {
  margin: 0;
  padding: 10px 13px;
  max-width: 88%;
  border-radius: 16px 16px 16px 5px;
  background: var(--cc-surface);
  border: 1px solid var(--cc-line);
  box-shadow: 0 1px 2px rgba(31, 32, 39, 0.04);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--cc-ink);
}

.caah-cc-msg--you .caah-cc-bubble {
  border-radius: 16px 16px 5px 16px;
  background: linear-gradient(135deg, var(--cc-brand) 0%, var(--cc-brand-deep) 100%);
  border-color: transparent;
  box-shadow: 0 2px 8px -2px rgba(197, 32, 41, 0.5);
  color: #fff;
}

.caah-cc-bubble--alert {
  border-color: rgba(223, 57, 66, 0.32);
  border-left: 3px solid var(--cc-brand);
  background: #fff4f4;
  font-weight: 600;
}

.caah-cc-inline-status {
  margin: 0;
  padding-left: 2px;
  color: var(--cc-muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.caah-cc-inline-status--open {
  color: #1c7a4a;
}

.caah-cc-inline-status--closing_soon {
  color: #96610f;
}

/* --------------------------------------------------------------------- cards */

.caah-cc-cards {
  display: grid;
  gap: 7px;
}

.caah-cc-card {
  position: relative;
  display: block;
  padding: 11px 30px 11px 13px;
  border-radius: 14px;
  background: var(--cc-surface);
  border: 1px solid var(--cc-line);
  box-shadow: 0 1px 2px rgba(31, 32, 39, 0.04);
  color: var(--cc-ink);
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.caah-cc-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 13px;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid var(--cc-muted);
  border-bottom: 2px solid var(--cc-muted);
  transform: rotate(-45deg);
  transition: border-color 140ms ease;
}

.caah-cc-card:hover,
.caah-cc-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(223, 57, 66, 0.38);
  box-shadow: 0 8px 20px -10px rgba(31, 32, 39, 0.32);
}

.caah-cc-card:hover::after,
.caah-cc-card:focus-visible::after {
  border-color: var(--cc-brand);
}

.caah-cc-card-label {
  display: block;
  font-weight: 700;
  font-size: 0.845rem;
  line-height: 1.35;
}

.caah-cc-card-note {
  display: block;
  margin-top: 2px;
  color: var(--cc-muted);
  font-size: 0.755rem;
  line-height: 1.4;
}

.caah-cc-services {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* --------------------------------------------------------------------- chips */

.caah-cc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  animation: caah-cc-msg-in 200ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.caah-cc-chip {
  padding: 7px 13px;
  border: 1px solid var(--cc-line-strong);
  border-radius: 999px;
  background: var(--cc-surface);
  color: var(--cc-ink);
  font: inherit;
  font-size: 0.79rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.caah-cc-chip:hover,
.caah-cc-chip:focus-visible {
  transform: translateY(-1px);
  background: var(--cc-brand-wash);
  border-color: rgba(223, 57, 66, 0.42);
}

/* ---------------------------------------------------------------------- form */

.caah-cc-form,
.caah-cc-form-done {
  padding: 13px;
  border: 1px solid var(--cc-line);
  border-radius: 16px;
  background: var(--cc-surface);
  box-shadow: 0 1px 2px rgba(31, 32, 39, 0.04);
}

.caah-cc-form-title {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 0.87rem;
}

.caah-cc-form-note,
.caah-cc-form-feedback {
  margin: 0 0 9px;
  color: var(--cc-muted);
  font-size: 0.745rem;
  line-height: 1.45;
}

.caah-cc-form-feedback:empty {
  margin: 0;
}

.caah-cc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.caah-cc-field {
  margin: 0;
}

.caah-cc-field label {
  display: block;
  margin-bottom: 3px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cc-muted);
}

.caah-cc-field input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--cc-line-strong);
  border-radius: 10px;
  background: var(--cc-surface-2);
  color: var(--cc-ink);
  font: inherit;
  font-size: 0.845rem;
  transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.caah-cc-field input:focus {
  outline: none;
  background: var(--cc-surface);
  border-color: var(--cc-brand);
  box-shadow: 0 0 0 3px rgba(223, 57, 66, 0.14);
}

.caah-cc-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 11px 0;
}

.caah-cc-consent input {
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--cc-brand);
}

.caah-cc-consent label {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--cc-muted);
}

.caah-cc-form-submit {
  width: 100%;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cc-brand) 0%, var(--cc-brand-deep) 100%);
  color: #fff;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px -6px rgba(197, 32, 41, 0.6);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.caah-cc-form-submit:hover:not([disabled]),
.caah-cc-form-submit:focus-visible:not([disabled]) {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(197, 32, 41, 0.65);
}

.caah-cc-form-submit[disabled] {
  opacity: 0.55;
  cursor: default;
  box-shadow: none;
}

.caah-cc-form-done p {
  margin: 0 0 9px;
  font-size: 0.87rem;
  font-weight: 700;
}

.caah-cc-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ------------------------------------------------------- thinking indicator */

/*
 * Shown only while a model request is genuinely in flight. Deterministic answers render
 * on the same frame as the keystroke and never see it, which is the point: the pause
 * means something.
 */
.caah-cc-thinking {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  min-height: 21px;
  padding: 11px 14px;
}

.caah-cc-thinking span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cc-muted);
  animation: caah-cc-blink 1.2s infinite ease-in-out both;
}

.caah-cc-thinking span:nth-child(2) {
  animation-delay: 0.16s;
}

.caah-cc-thinking span:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes caah-cc-blink {
  0%, 80%, 100% { opacity: 0.22; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

/* ------------------------------------------------------------------ composer */

.caah-cc-composer {
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
  padding: 11px 12px 6px;
  background: var(--cc-surface);
  border-top: 1px solid var(--cc-line);
}

.caah-cc-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid var(--cc-line-strong);
  border-radius: 999px;
  background: var(--cc-surface-2);
  color: var(--cc-ink);
  font: inherit;
  font-size: 0.86rem;
  transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.caah-cc-input:focus {
  outline: none;
  background: var(--cc-surface);
  border-color: var(--cc-brand);
  box-shadow: 0 0 0 3px rgba(223, 57, 66, 0.14);
}

.caah-cc-input:disabled {
  background: rgba(31, 32, 39, 0.05);
  color: var(--cc-muted);
}

.caah-cc-send {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cc-brand) 0%, var(--cc-brand-deep) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 16px -6px rgba(197, 32, 41, 0.6);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.caah-cc-send:hover:not([disabled]),
.caah-cc-send:focus-visible:not([disabled]) {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(197, 32, 41, 0.65);
}

.caah-cc-send[disabled] {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
}

.caah-cc-foot {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 16px 11px;
  background: var(--cc-surface);
  color: var(--cc-muted);
  font-size: 0.685rem;
  line-height: 1.4;
}

/* ---------------------------------------------------------------- responsive */

/*
 * Below 560px the panel cannot grow upward from a launcher that already sits above the
 * sticky action bar without covering the page from the bottom up, so it becomes a sheet
 * pinned to the viewport instead.
 */
@media (max-width: 560px) {
  .caah-concierge--live.caah-concierge--open .caah-concierge-panel {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: auto;
    height: min(80vh, 600px);
    margin: 0;
  }

  /*
   * The bottom corners are already spoken for. .caah-actionbar is fixed at z-index 950
   * and the Cherry estimator injects a pill at 9999, so an open sheet sits underneath
   * both and its composer stops being clickable — caught by browser-check.mjs, which
   * hit-tests the input rather than trusting that it looks right.
   *
   * While the chat is open the sheet IS the action bar: the phone number is pinned above
   * the transcript and booking arrives as a card. Both floating elements stand down for
   * the duration and return the moment it closes.
   */
  .caah-concierge--live.caah-concierge--open {
    z-index: 10000;
  }

  body.caah-concierge-open .caah-actionbar,
  body.caah-concierge-open [class*="floatingEstimator-floatingContainer-"] {
    display: none !important;
  }

  .caah-cc-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Buy back enough header width for the clinic's full name on a phone. */
@media (max-width: 420px) {
  .caah-cc-head {
    gap: 9px;
    padding: 12px;
  }

  .caah-cc-avatar {
    width: 34px;
    height: 34px;
  }

  .caah-cc-name {
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .caah-cc-log {
    padding: 14px 11px 16px;
  }

  .caah-cc-bubble {
    max-width: 94%;
  }
}

/* ------------------------------------------------------------------ dark mode */

html.dark-mode .caah-concierge--live {
  --cc-surface: #1c1c1f;
  --cc-surface-2: #232327;
  --cc-line: rgba(255, 255, 255, 0.10);
  --cc-line-strong: rgba(255, 255, 255, 0.18);
  --cc-ink: #f2efe6;
  --cc-muted: #a5a099;
  --cc-brand-wash: rgba(223, 57, 66, 0.20);
  --cc-shadow: 0 30px 70px -22px rgba(0, 0, 0, 0.72), 0 4px 14px rgba(0, 0, 0, 0.4);
}

html.dark-mode .caah-cc-urgent {
  background: rgba(223, 57, 66, 0.16);
  border-bottom-color: rgba(223, 57, 66, 0.28);
  color: #ff9ba0;
}

html.dark-mode .caah-cc-urgent:hover,
html.dark-mode .caah-cc-urgent:focus-visible {
  background: rgba(223, 57, 66, 0.24);
}

html.dark-mode .caah-cc-bubble--alert {
  background: rgba(223, 57, 66, 0.14);
}

html.dark-mode .caah-cc-inline-status--open {
  color: #7fd6a0;
}

html.dark-mode .caah-cc-inline-status--closing_soon {
  color: #ffcb7a;
}

html.dark-mode .caah-cc-input:disabled {
  background: rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
  .caah-concierge--live .caah-concierge-panel,
  .caah-cc-msg,
  .caah-cc-chips {
    animation: none;
  }

  .caah-cc-thinking span {
    animation: none;
    opacity: 0.6;
  }

  .caah-concierge--live .caah-concierge-launch,
  .caah-cc-card,
  .caah-cc-chip,
  .caah-cc-send,
  .caah-cc-form-submit {
    transition: none;
  }

  .caah-cc-card:hover,
  .caah-cc-chip:hover,
  .caah-cc-send:hover,
  .caah-cc-form-submit:hover {
    transform: none;
  }
}
