/* Show only on mobile */
@media (min-width: 768px) {
  .mobile-order-btn {
    display: none !important;
  }
}

/* Mobile position fixed on slider */
@media (max-width: 767px) {

  .mobile-order-btn {
    position: absolute;
    top: 180px; /* Move button vertically - adjust this number */
    left: 25%;
    transform: translateX(-50%);
    z-index: 99;
  }

  .mobile-order-btn a {
    padding: 12px 28px;
    background: #D77A7A;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
  }
}
/* ========== SHOW TITLE + BUTTON ON MOBILE SLIDER ========== */
@media (max-width: 767px) {

  /* Make slider text container visible */
  .slider_content,
  .slider_content__wrapper,
  .slider_content__wrapper_content {
      opacity: 1 !important;
      visibility: visible !important;
      transform: none !important;
      display: block !important;
      text-align: center !important;
      z-index: 99 !important;
      position: absolute;
      top: 140px; /* adjust title position */
      width: 100%;
      padding: 0 20px;
  }

  /* Style slider title */
  .slider_content h2 {
      font-size: 20px !important;
      line-height: 26px !important;
      font-weight: 700 !important;
      color: #000 !important;
      margin-bottom: 10px;
  }

  /* Position the mobile order button */
  .mobile-order-btn {
      position: absolute;
      top: 180px; /* adjust button position under title */
      left: 25%;
      transform: translateX(-50%);
      z-index: 100 !important;
  }

  .mobile-order-btn a {
      padding: 12px 28px;
      background: #D77A7A;
      color: #fff !important;
      border-radius: 40px;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 14px;
  }
}

/* Hide on desktop */
@media (min-width: 768px) {
  .mobile-order-btn {
    display: none !important;
  }
  /* Hide Free Shipping / Support / 30 Days / 100% Secure block */
.ps-site-features {
    display: none !important;
}
  /* Hide store-features section on mobile */

@media (max-width: 767px) {

    .ps-site-features,

    .shortcode-lazy-loading-loaded.ps-site-features {

        display: none !important;

        visibility: hidden !important;

    }

}