
/* General sticky product prompt styling */
.sticky-product-prompt {
  width: 100%;
  max-width: 490px;
  position: fixed;
  bottom: 24px; /* Assuming '6' is in 'rem', commonly 6 * 4 = 24px */
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0.125rem; /* Small radius for a subtle curve */
  background-color: white;
  box-shadow: -2px 1px 10px 2px #0003;
  z-index: 1000; /* High z-index to stay on top */
  cursor: pointer;
  top: auto!important;
  transition: all .3s ease;
}
@media(max-width: 767px){
  .sticky-product-prompt{
    display: none!important
  }
}

/* Container within the product prompt */
.sticky-product-prompt__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px; /* Typically 3rem = 12px */
}

/* Box holding the content and image */
.sticky-product-prompt__box {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 6px;
}

/* Image container specifics */
.sticky-product-prompt__image {
  flex-shrink: 0;
  width: 70px; /* Fixed width for image container */
  border-radius: 0.25rem; /* Standard rounding */
}

/* Content next to the image */
.sticky-product-prompt__content {
  margin-left: 12px; /* 3rem = 12px space */
  width: 100%; /* Full width of the remaining space */
}

/* Text styles within the content area */
.sticky-product-prompt__content .font-semibold {
  font-weight: 600; /* Semibold text */
}

.sticky-product-prompt__content .line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
}

/* CTA button styling */
.sticky-product-prompt__cta {
  margin-left: auto; /* Push to the right */
  background: var(--addtocart-bg); /* Custom property for background */
  color: var(--addtocart-text-color);
  font-weight: 600;
  padding: 8px 12px; /* Standard padding */
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

/* Icon in the button */
.icon-cart {
  font-size: 2rem; /* Larger icon size */
}
