  .sticky-image-wrapper {
        width: 70px;
    }
    .sticky-select { 
        height: 48px;
        font-size: 1rem;
        font-weight: 500;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .sticky-select:focus {
        box-shadow: none;
        outline: none;
    }

    .sticky-qty-buttons {
        width: 90px;
        display: flex;
        border: 1px solid #ced4da;
        border-radius: 4px;
        overflow: hidden;
    }

    .sticky-qty-input {
        border: none;
        box-shadow: none;
        font-weight: bold;
        font-size: 16px;
    }

    .qty-buttons {
        display: flex;
        flex-direction: column;
    }

    .sticky-qty-btn {
        background-color: transparent;
        border: none;
        width: 30px;
        height: 22px;
        font-size: 14px;
        line-height: 1;
        padding: 0;
        cursor: pointer;
    }

    .sticky-qty-btn:hover {
        background-color: #f1f1f1;
    }
    .sticky-cart-btn {
        width: auto; /* Default for desktop */
        display: inline-block;
    }

    
    /* 🔻 Responsive styles for tablets and below (max-width: 767.98px) */
    @media (max-width: 767.98px) {
        .sticky-cart-btn {
        width: 100%;
        display: block;
        }
        .sticky-select {
        max-width: 100%;
        height: 44px;
        font-size: 0.95rem;
        }

        .sticky-qty-input {
        font-size: 14px;
        }

        .sticky-qty-btn {
        width: 26px;
        height: 20px;
        font-size: 12px;
        }
    }

.sticky-add-to-cart {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.sticky-add-to-cart.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}