/* Start custom CSS for html, class: .elementor-element-610b894 */#sticky-buy-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  z-index: 99999;
  padding: 12px 16px;
  display: block;
}

.sticky-container {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-text {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.sticky-button {
  background-color: #C0392B;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s ease;
}

.sticky-button:hover {
  background-color: #A93226;
}

.old-price {
  text-decoration: line-through;
  margin-left: 10px;
  font-weight: 400;
  color: #f4d1d1;
  font-size: 14px;
}

.new-price {
  font-weight: bold;
  margin-left: 8px;
  color: #fff;
  font-size: 15px;
}

/* Mobile override: move bar above bottom nav */
@media (max-width: 768px) {
  #sticky-buy-bar {
    bottom: 60px;
  }

  .sticky-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sticky-button {
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */