  .product-desc {
      font-size: 1rem !important;
  }

  /* --- PREMIUM FEATURES --- */

  /* 0. Live Viewers Counter */
  .live-viewers {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 59, 48, 0.15);
      /* Soft red tint */
      padding: 6px 12px;
      border-radius: 100px;
      margin-bottom: 12px;
      border: 1px solid rgba(255, 59, 48, 0.3);
  }

  .pulse-dot {
      width: 8px;
      height: 8px;
      background-color: #ff3b30;
      border-radius: 50%;
      box-shadow: 0 0 0 rgba(255, 59, 48, 0.7);
      animation: pulse-red 1.5s infinite;
  }

  @keyframes pulse-red {
      0% {
          transform: scale(0.95);
          box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
      }

      70% {
          transform: scale(1);
          box-shadow: 0 0 0 6px rgba(255, 59, 48, 0);
      }

      100% {
          transform: scale(0.95);
          box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
      }
  }

  /* 1. Preloader */
  .preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--bg-color);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  }

  .preloader.hidden {
      opacity: 0;
      visibility: hidden;
  }

  .preloader-content {
      text-align: center;
  }

  .preloader-text {
      font-size: 2.5rem;
      background: linear-gradient(90deg, #ffffff, var(--accent-primary));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
      animation: pulse 1.5s infinite;
  }

  .preloader-bar {
      width: 150px;
      height: 4px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
  }

  .preloader-bar::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 40%;
      background: var(--accent-primary);
      border-radius: 4px;
      animation: load 1s ease-in-out infinite;
  }

  @keyframes load {
      0% {
          left: -40%;
      }

      100% {
          left: 100%;
      }
  }

  @keyframes pulse {

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

      50% {
          transform: scale(1.05);
          opacity: 0.8;
      }
  }

  /* 2. Trust Badges */
  .trust-badges {
      display: flex;
      justify-content: space-between;
      margin-top: 16px;
      padding: 12px;
      background: rgba(0, 0, 0, 0.2);
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .trust-badge {
      font-size: 0.75rem;
      color: var(--text-muted);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      text-align: center;
  }

  .trust-badge i {
      font-size: 1.1rem;
  }

  /* 3. Sticky Mobile Buy Button (Marketing Genius Layout) */
  .sticky-buy-container {
      position: fixed;
      bottom: 24px;
      left: 16px;
      width: calc(100% - 32px);
      padding: 0;
      background: transparent;
      border: none;
      z-index: 99999;
  }

  .sticky-buy-btn {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(90deg, #ff007a, #7928ca);
      padding: 16px 24px;
      border-radius: 100px;
      color: white;
      text-decoration: none;
      font-weight: 700;
      box-shadow: 0 8px 25px rgba(255, 0, 122, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
      animation: pulse-shadow 2.5s infinite;
  }

  @keyframes pulse-shadow {
      0% {
          box-shadow: 0 8px 25px rgba(255, 0, 122, 0.4), 0 0 0 0 rgba(255, 0, 122, 0.7);
      }

      70% {
          box-shadow: 0 8px 25px rgba(255, 0, 122, 0.4), 0 0 0 15px rgba(255, 0, 122, 0);
      }

      100% {
          box-shadow: 0 8px 25px rgba(255, 0, 122, 0.4), 0 0 0 0 rgba(255, 0, 122, 0);
      }
  }

  .sticky-info {
      display: flex;
      flex-direction: column;
  }

  .sticky-title {
      font-size: 0.85rem;
      opacity: 0.9;
  }

  .sticky-price {
      font-size: 1.1rem;
      font-weight: 700;
  }

  .btn-action {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 1.1rem;
  }

  @media (min-width: 768px) {
      .mobile-only {
          display: none !important;
      }
  }