.stevula-sticky-atc-mobile {
  display: none;
}

@media (max-width: 767px) {
  .stevula-sticky-atc-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: block;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.10);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .stevula-sticky-atc-mobile.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .stevula-sticky-atc-mobile__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
  }

  .stevula-sticky-atc-mobile__price-wrap {
    flex: 0 0 auto;
    min-width: 84px;
  }

  .stevula-sticky-atc-mobile__price-label {
    font-size: 11px;
    line-height: 1.2;
    color: #666;
    margin-bottom: 2px;
  }

  .stevula-sticky-atc-mobile__price-old {
    display: none;
    font-size: 11px;
    line-height: 1.1;
    color: #777;
    text-decoration: line-through;
    white-space: nowrap;
    margin-bottom: 2px;
  }

  .stevula-sticky-atc-mobile__price {
    font-size: 18px;
    line-height: 1.15;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
  }

  .stevula-sticky-atc-mobile__button {
    flex: 1 1 auto;
    min-width: 0;
    height: 48px;
    border: 0;
    border-radius: 10px;
    background: #e76208;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 14px;
    white-space: nowrap;
  }

  .stevula-sticky-atc-mobile__button:hover,
  .stevula-sticky-atc-mobile__button:focus {
    background: #e76208;
    color: #fff;
  }

  .stevula-sticky-atc-mobile__button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
  }

  body.stevula-sticky-atc-mobile-padding {
    padding-bottom: 76px;
  }
}