/*
 * TR Floating Chat Button
 * Version: 1.0.0
 */

/* Frontend Button
--------------------------------------------- */
:root {
  --chat-button-primary-color: #1ab744;
  --chat-button-secondary-color: #2196f3;
  --chat-button-text-color: #ffffff;
  --chat-button-pulse-duration: 1.5s;
  --chat-button-size: 70px;
  --chat-button-font-family: "Lato", sans-serif;
  --chat-button-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  --chat-button-border-radius: 5px;
}

.afcb-position-wrapper {
  position: fixed;
  width: var(--chat-button-size);
  height: var(--chat-button-size);
  z-index: 9999999;
}

.pulse {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999999;
  width: var(--chat-button-size);
  height: var(--chat-button-size);
  border-radius: 50%;
  background: var(--chat-button-primary-color);
  line-height: var(--chat-button-size);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

@-webkit-keyframes Animated-pulse {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes Animated-pulse {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes AFCB-ripple {
  0% {
    transform: scale(0.85);
    opacity: 0.42;
  }

  70% {
    opacity: 0.16;
  }

  100% {
    transform: scale(2.35);
    opacity: 0;
  }
}

@keyframes AFCB-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-12%);
  }

  60% {
    transform: translateY(-6%);
  }
}

@keyframes AFCB-shake {
  0%, 68%, 100% {
    transform: translateX(0) rotate(0deg);
  }

  72%, 80%, 88%, 96% {
    transform: translateX(-6%) rotate(-4deg);
  }

  76%, 84%, 92% {
    transform: translateX(6%) rotate(4deg);
  }
}

@keyframes AFCB-heartbeat {
  0%, 28%, 70%, 100% {
    transform: scale(1);
  }

  14%, 42% {
    transform: scale(1.14);
  }
}

@keyframes AFCB-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.08), 0 0 9px rgba(37, 211, 102, 0.28);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.09), 0 0 22px rgba(37, 211, 102, 0.62);
  }
}

@keyframes AFCB-float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10%);
  }
}

.afcb-position-wrapper > .pulse:not(.chat-button) {
  display: var(--afcb-ring-display, block);
  animation-name: var(--afcb-ring-animation-name, Animated-pulse);
  animation-duration: var(--afcb-ring-duration, 1.5s);
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.afcb-position-wrapper > .pulse:nth-child(1) {
  animation-delay: 0s;
}

.afcb-position-wrapper > .pulse:nth-child(2) {
  animation-delay: 0.3s;
}

.afcb-position-wrapper > .pulse:nth-child(3) {
  animation-delay: 0.6s;
}

.afcb-position-wrapper > .chat-button {
  animation-name: var(--afcb-button-animation-name, none);
  animation-duration: var(--afcb-button-animation-duration, 1.6s);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform-origin: center center;
}

.pulse:hover,
.pulse:focus {
  animation-play-state: paused;
  transform: scale(1.15);
}

.chat-button {
  color: var(--chat-button-text-color);
  text-decoration: none;
}

.chat-icon {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: var(--chat-button-size);
  text-align: center;
}

.chat-icon img {
  max-width: 100%;
  height: auto;
  margin-bottom: 9px;
  vertical-align: middle;
}

/* Admin Page
--------------------------------------------- */
.afcb-admin-page {
  --afcb-wp-blue: #2271b1;
  --afcb-wp-blue-hover: #135e96;
  --afcb-wp-border: #dcdcde;
  --afcb-wp-border-soft: #e8e8e8;
  --afcb-wp-text: #1d2327;
  --afcb-wp-muted: #646970;
  --afcb-wp-bg: #f0f0f1;
  --afcb-whatsapp: #1ab744;
  max-width: 1280px;
  margin-top: 18px;
}

.afcb-admin-page * {
  box-sizing: border-box;
}

.afcb-page-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 18px;
}

.afcb-page-heading h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--afcb-wp-text);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.3;
}

.afcb-page-heading p {
  margin: 6px 0 0;
  color: var(--afcb-wp-muted);
  font-size: 13px;
}

.afcb-version {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border: 1px solid var(--afcb-wp-border);
  border-radius: 3px;
  background: #f6f7f7;
  color: #50575e;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.afcb-admin-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 20px;
  align-items: start;
}

.afcb-card {
  overflow: hidden;
  border: 1px solid var(--afcb-wp-border);
  background: #ffffff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.afcb-card-header {
  min-height: 48px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--afcb-wp-border);
  background: #ffffff;
}

.afcb-card-header h2 {
  margin: 0;
  color: var(--afcb-wp-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.afcb-card-body {
  padding: 16px;
}

.afcb-modern-form {
  margin: 0;
  padding: 0 16px 16px;
}

.afcb-field-group {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(300px, 1.28fr);
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 16px 0;
  border-bottom: 1px solid var(--afcb-wp-border-soft);
}

.afcb-field-copy label,
.afcb-field-copy > strong {
  display: block;
  margin: 0;
  color: var(--afcb-wp-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.afcb-field-copy p {
  max-width: 330px;
  margin: 4px 0 0;
  color: var(--afcb-wp-muted);
  font-size: 12px;
  line-height: 1.45;
}

.afcb-admin-page input[type="text"],
.afcb-admin-page input[type="number"] {
  width: 100%;
  min-height: 36px;
  margin: 0;
  border-color: #8c8f94;
  border-radius: 3px;
  color: var(--afcb-wp-text);
  font-size: 13px;
}

.afcb-admin-page input[type="text"]:focus,
.afcb-admin-page input[type="number"]:focus {
  border-color: var(--afcb-wp-blue);
  box-shadow: 0 0 0 1px var(--afcb-wp-blue);
}

.afcb-admin-page input.regular-text {
  width: 100%;
  max-width: none;
}

.afcb-segmented-control {
  display: inline-flex;
  justify-self: start;
  overflow: hidden;
  border: 1px solid #8c8f94;
  border-radius: 3px;
  background: #ffffff;
}

.afcb-segmented-control label {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.afcb-segmented-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.afcb-segmented-control label + label {
  border-left: 1px solid #8c8f94;
}

.afcb-segmented-control span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 34px;
  padding: 5px 14px;
  background: #ffffff;
  color: #2c3338;
  font-size: 13px;
  line-height: 1.4;
  transition: background 0.12s ease, color 0.12s ease;
}

.afcb-segmented-control input:checked + span {
  background: var(--afcb-wp-blue);
  color: #ffffff;
}

.afcb-segmented-control input:focus-visible + span {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--afcb-wp-blue);
  outline-offset: -2px;
}

.afcb-range-control {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 92px;
  gap: 14px;
  align-items: center;
}

.afcb-range-control > input[type="range"] {
  width: 100%;
  min-width: 0;
  margin: 0;
  accent-color: var(--afcb-wp-blue);
}

.afcb-number-control {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #8c8f94;
  border-radius: 3px;
  background: #ffffff;
}

.afcb-number-control:focus-within {
  border-color: var(--afcb-wp-blue);
  box-shadow: 0 0 0 1px var(--afcb-wp-blue);
}

.afcb-admin-page .afcb-number-control input[type="number"] {
  min-width: 0;
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: right;
}

.afcb-number-control span {
  display: inline-flex;
  align-items: center;
  padding: 0 9px 0 4px;
  background: #f6f7f7;
  color: var(--afcb-wp-muted);
  font-size: 11px;
  font-weight: 600;
}

.afcb-toggle-field {
  grid-template-columns: minmax(230px, 1fr) auto;
}

.afcb-toggle-switch {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 24px;
  margin: 0;
  cursor: pointer;
}

.afcb-toggle-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.afcb-toggle-slider {
  position: absolute;
  inset: 0;
  border: 1px solid #8c8f94;
  border-radius: 999px;
  background: #dcdcde;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.afcb-toggle-slider::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  content: "";
  transition: transform 0.15s ease;
}

.afcb-toggle-switch input:checked + .afcb-toggle-slider {
  border-color: var(--afcb-wp-blue);
  background: var(--afcb-wp-blue);
}

.afcb-toggle-switch input:checked + .afcb-toggle-slider::before {
  transform: translateX(18px);
}

.afcb-toggle-switch input:focus-visible + .afcb-toggle-slider {
  outline: 2px solid var(--afcb-wp-blue);
  outline-offset: 2px;
}

.afcb-form-actions {
  padding-top: 16px;
}

.afcb-form-actions .button-primary {
  min-height: 32px;
}

.afcb-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.afcb-browser-preview {
  overflow: hidden;
  border: 1px solid var(--afcb-wp-border);
  border-radius: 4px;
  background: #ffffff;
}

.afcb-browser-toolbar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 0 9px;
  border-bottom: 1px solid #dfe3e6;
  background: #f6f7f7;
}

.afcb-browser-controls {
  display: flex;
  gap: 4px;
}

.afcb-browser-controls span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c3c4c7;
}

.afcb-browser-controls span:nth-child(1) {
  background: #d63638;
}

.afcb-browser-controls span:nth-child(2) {
  background: #dba617;
}

.afcb-browser-controls span:nth-child(3) {
  background: #00a32a;
}

.afcb-browser-address {
  height: 13px;
  border-radius: 999px;
  background: #dcdcde;
}

.afcb-browser-content {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #f9f9f9;
}

.afcb-preview-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  border-bottom: 1px solid #e8e8e8;
  background: #ffffff;
}

.afcb-preview-logo {
  width: 58px;
  height: 9px;
  border-radius: 3px;
  background: #c3c4c7;
}

.afcb-preview-menu {
  display: flex;
  gap: 6px;
}

.afcb-preview-menu span {
  width: 20px;
  height: 5px;
  border-radius: 999px;
  background: #dcdcde;
}

.afcb-preview-site-body {
  padding: 30px 20px;
}

.afcb-preview-title {
  width: 66%;
  height: 14px;
  margin-bottom: 12px;
  border-radius: 3px;
  background: #c3c4c7;
}

.afcb-preview-text {
  width: 92%;
  height: 6px;
  margin-bottom: 7px;
  border-radius: 999px;
  background: #dcdcde;
}

.afcb-preview-text-short {
  width: 62%;
}

.afcb-preview-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 23px;
}

.afcb-preview-cards span {
  height: 76px;
  border-radius: 4px;
  background: #e2e4e7;
}

#afcb-admin-floating-preview {
  position: absolute;
  width: var(--chat-button-size);
  height: var(--chat-button-size);
  z-index: 20;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

#afcb-admin-floating-preview .pulse {
  width: var(--chat-button-size);
  height: var(--chat-button-size);
  line-height: var(--chat-button-size);
}

#afcb-admin-floating-preview .chat-icon {
  width: 100%;
  height: 100%;
  line-height: var(--chat-button-size);
  text-align: center;
}

#afcb-admin-floating-preview .chat-icon img {
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
  vertical-align: middle;
}

#afcb-admin-floating-preview.is-hidden {
  opacity: 0.18;
}

.afcb-preview-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--afcb-wp-muted);
  font-size: 12px;
  font-weight: 500;
}

.afcb-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00a32a;
  box-shadow: 0 0 0 2px rgba(0, 163, 42, 0.12);
}

.afcb-preview-status.is-hidden .afcb-status-dot {
  background: #8c8f94;
  box-shadow: 0 0 0 2px rgba(140, 143, 148, 0.14);
}

.afcb-about-copy {
  margin: 0 0 16px;
  color: var(--afcb-wp-muted);
  font-size: 13px;
  line-height: 1.5;
}

.afcb-about-details {
  margin: 0;
}

.afcb-about-details p {
  margin: 0 0 16px;
  color: var(--afcb-wp-text);
  font-size: 13px;
  line-height: 1.5;
}

.afcb-about-details p:last-child {
  margin-bottom: 0;
}

.afcb-about-details strong {
  font-weight: 600;
}

.afcb-about-details a {
  text-decoration: underline;
}

.afcb-developer-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--afcb-wp-border-soft);
  border-bottom: 1px solid var(--afcb-wp-border-soft);
}

.afcb-developer-photo {
  display: block;
  width: 52px;
  height: 52px;
  margin: 0;
  border: 1px solid var(--afcb-wp-border);
  border-radius: 50%;
  object-fit: cover;
}

.afcb-developer-details h3 {
  margin: 0 0 2px;
  color: var(--afcb-wp-text);
  font-size: 13px;
  font-weight: 600;
}

.afcb-developer-details p {
  margin: 0;
  color: var(--afcb-wp-muted);
  font-size: 12px;
}

.afcb-plugin-meta {
  margin: 14px 0 0;
}

.afcb-plugin-meta > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.afcb-plugin-meta dt,
.afcb-plugin-meta dd {
  margin: 0;
  font-size: 12px;
}

.afcb-plugin-meta dt {
  color: var(--afcb-wp-muted);
}

.afcb-plugin-meta dd {
  color: var(--afcb-wp-text);
  font-weight: 600;
}

.afcb-developer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.afcb-developer-actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
}

@media (max-width: 1100px) {
  .afcb-admin-content {
    grid-template-columns: 1fr;
  }

  .afcb-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
    align-items: start;
  }
}

@media (max-width: 782px) {
  .afcb-admin-page {
    margin-right: 10px;
  }

  .afcb-field-group {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
  }

  .afcb-toggle-field {
    grid-template-columns: 1fr auto;
  }

  .afcb-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .afcb-page-heading h1 {
    align-items: flex-start;
  }

  .afcb-version {
    margin-top: 2px;
  }

  .afcb-modern-form,
  .afcb-card-body {
    padding-left: 12px;
    padding-right: 12px;
  }

  .afcb-field-group {
    padding: 14px 0;
  }

  .afcb-range-control {
    grid-template-columns: 1fr;
  }

  .afcb-number-control {
    width: 96px;
  }

  .afcb-toggle-field {
    grid-template-columns: 1fr auto;
  }

  .afcb-developer-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .afcb-position-wrapper > .pulse:not(.chat-button),
  .afcb-position-wrapper > .chat-button {
    animation: none !important;
  }
}


.afcb-device-panel select[data-afcb-control="animation_type"] {
  width: min(260px, 100%);
  min-height: 34px;
}

/* Responsive device controls
--------------------------------------------- */
.afcb-responsive-section {
  margin: 18px -16px 0;
  border-top: 1px solid var(--afcb-wp-border);
  border-bottom: 1px solid var(--afcb-wp-border);
  background: #fbfbfc;
}

.afcb-responsive-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-bottom: 1px solid var(--afcb-wp-border-soft);
  background: #fff;
}

.afcb-responsive-heading h3 {
  margin: 0;
  color: var(--afcb-wp-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.afcb-responsive-heading p {
  margin: 4px 0 0;
  color: var(--afcb-wp-muted);
  font-size: 12px;
}

.afcb-breakpoint-note {
  flex: 0 0 auto;
  margin-top: 1px;
  padding: 4px 7px;
  border: 1px solid var(--afcb-wp-border);
  border-radius: 3px;
  background: #f6f7f7;
  color: var(--afcb-wp-muted);
  font-size: 10px;
  line-height: 1.4;
  white-space: nowrap;
}

.afcb-device-tabs {
  display: flex;
  gap: 0;
  padding: 0 16px;
  border-bottom: 1px solid var(--afcb-wp-border);
  background: #fff;
}

.afcb-device-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 112px;
  min-height: 42px;
  margin: 0 0 -1px;
  padding: 7px 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #50575e;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.afcb-device-tab:hover {
  color: var(--afcb-wp-blue);
}

.afcb-device-tab.is-active {
  border-bottom-color: var(--afcb-wp-blue);
  color: var(--afcb-wp-blue);
  font-weight: 600;
}

.afcb-device-tab:focus-visible,
.afcb-preview-device-tab:focus-visible {
  outline: 2px solid var(--afcb-wp-blue);
  outline-offset: -2px;
}

.afcb-device-tab .dashicons,
.afcb-preview-device-tab .dashicons {
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 18px;
}

.afcb-device-panel {
  padding: 0 16px;
  background: #fff;
}

.afcb-device-panel[hidden] {
  display: none !important;
}

.afcb-device-panel .afcb-field-group:last-child {
  border-bottom: 0;
}

.afcb-preview-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.afcb-preview-device-label {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 7px;
  border: 1px solid var(--afcb-wp-border);
  border-radius: 3px;
  background: #f6f7f7;
  color: var(--afcb-wp-muted);
  font-size: 10px;
  font-weight: 600;
}

.afcb-preview-device-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 0 12px;
}

.afcb-preview-device-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--afcb-wp-border);
  border-radius: 3px;
  background: #fff;
  color: #646970;
  cursor: pointer;
}

.afcb-preview-device-tab:hover {
  border-color: #8c8f94;
  color: var(--afcb-wp-blue);
}

.afcb-preview-device-tab.is-active {
  border-color: var(--afcb-wp-blue);
  background: #f0f6fc;
  color: var(--afcb-wp-blue);
  box-shadow: inset 0 0 0 1px var(--afcb-wp-blue);
}

.afcb-preview-stage {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 340px;
  padding: 0;
  transition: padding 0.18s ease;
}

.afcb-preview-stage .afcb-browser-preview {
  width: 100%;
  transition: width 0.18s ease, border-radius 0.18s ease, box-shadow 0.18s ease;
}

.afcb-preview-stage.is-tablet {
  padding: 0 25px;
}

.afcb-preview-stage.is-tablet .afcb-browser-preview {
  width: 82%;
  border-radius: 8px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.07);
}

.afcb-preview-stage.is-mobile {
  padding: 0 38px;
}

.afcb-preview-stage.is-mobile .afcb-browser-preview {
  width: 62%;
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.afcb-preview-stage.is-tablet .afcb-browser-content,
.afcb-preview-stage.is-mobile .afcb-browser-content {
  min-height: 330px;
}

.afcb-preview-stage.is-mobile .afcb-preview-menu span:nth-child(1),
.afcb-preview-stage.is-mobile .afcb-preview-menu span:nth-child(2) {
  display: none;
}

.afcb-preview-stage.is-mobile .afcb-preview-menu span:nth-child(3) {
  width: 16px;
  height: 2px;
  box-shadow: 0 -5px 0 #dcdcde, 0 5px 0 #dcdcde;
}

.afcb-preview-stage.is-mobile .afcb-preview-site-body {
  padding: 24px 14px;
}

.afcb-preview-stage.is-mobile .afcb-preview-cards {
  grid-template-columns: 1fr;
}

.afcb-preview-stage.is-mobile .afcb-preview-cards span:nth-child(2) {
  display: none;
}

.afcb-preview-note {
  margin: 10px 0 0;
  color: var(--afcb-wp-muted);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 782px) {
  .afcb-responsive-heading {
    flex-direction: column;
    gap: 8px;
  }

  .afcb-breakpoint-note {
    white-space: normal;
  }

  .afcb-device-tabs {
    padding: 0 8px;
  }

  .afcb-device-tab {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 480px) {
  .afcb-device-tab {
    gap: 3px;
    font-size: 12px;
  }

  .afcb-preview-stage.is-tablet,
  .afcb-preview-stage.is-mobile {
    padding-left: 8px;
    padding-right: 8px;
  }
}
