:root {
  --ntwts-whatsapp-btn-color: #a45d0b;
}

.ntwts-whatsapp-button {
  width: 100%;
  max-width: 285px;
  border-radius: 8px;
  z-index: 9999;
}
.ntwts-whatsapp-button--inline {
  display: none;
  position: relative;
  margin: 0;
}
@media (min-width: 992px) {
  .ntwts-whatsapp-button--inline {
    display: block;
  }
}
.ntwts-whatsapp-button--floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: block;
}

.ntwts-whatsapp-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px 14px;
  color: #fff;
  text-decoration: none;
  background: var(--ntwts-whatsapp-btn-color);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.ntwts-whatsapp-link:hover, .ntwts-whatsapp-link:focus {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}
.ntwts-whatsapp-link i {
  flex: 0 0 auto;
  font-size: 40px;
  line-height: 1;
}
.ntwts-whatsapp-link--disabled {
  cursor: not-allowed;
  opacity: 0.78;
}
.ntwts-whatsapp-link--disabled:hover, .ntwts-whatsapp-link--disabled:focus {
  transform: none;
}

.ntwts-whatsapp-info {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.ntwts-whatsapp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ntwts-whatsapp-title {
  overflow: hidden;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ntwts-whatsapp-message {
  font-size: 15px;
  line-height: 1.25;
  opacity: 0.95;
}

.ntwts-whatsapp-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  background: #28a745;
  border-radius: 999px;
}
.ntwts-whatsapp-status--offline {
  background: #999;
}

@media (max-width: 575.98px) {
  .ntwts-whatsapp-button--floating {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
}
