.hec-product-sticky-cart {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  width: min(550px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  background: #f2f2f2;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.2);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.hec-product-sticky-cart__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
}

.hec-product-sticky-cart__media {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  flex: 0 0 auto;
}

.hec-product-sticky-cart__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hec-product-sticky-cart__content {
  min-width: 0;
  flex: 1 1 auto;
}

.hec-product-sticky-cart__title {
  font-size: 18px;
  line-height: 1.2;
  color: #111;
  font-weight: 600;
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hec-product-sticky-cart__price {
  font-size: 16px;
  line-height: 1.2;
  color: #666;
}

.hec-product-sticky-cart__button {
  border: 0;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}

.hec-product-sticky-cart__button:hover {
  background: #1e1e1e;
}

@media (max-width: 1024px) {
  .hec-product-sticky-cart {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 44px);
    border-radius: 12px;
  }

  .hec-product-sticky-cart__inner {
    gap: 12px;
    padding: 12px;
  }

  .hec-product-sticky-cart__media {
    width: 62px;
    height: 62px;
  }

  .hec-product-sticky-cart__title {
    font-size: 18px;
  }

  .hec-product-sticky-cart__price {
    font-size: 14px;
  }

  .hec-product-sticky-cart__button {
    font-size: 15px;
    padding: 10px 14px;
  }
}
