@charset "UTF-8";
/* Low Stock Urgency */
.productView-lowStock {
  margin: 0.75rem 0;
  font-size: 0.95rem;
  padding: 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: left; }

.productView-lowStock.urgent {
  color: #c62828;
  background: #fdecea;
  border: 1px solid #f5c6cb; }

.productView-lowStock.limited {
  color: #e65100;
  background: #fff3e0;
  border: 1px solid #ffcc80; }

/* Availability & Delivery */
.productView-availability {
  margin: 0.75rem 0;
  font-size: 0.95rem;
  color: #2e7d32;
  font-weight: 600; }

.productView-delivery {
  margin: 0.75rem 0;
  font-size: 0.9rem;
  color: #555;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  padding: 0.5rem;
  border-radius: 4px; }

/* Trust Badges Inline */
.trust-badges {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 6px;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  color: #444; }

.trust-badges .icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  fill: currentColor;
  vertical-align: middle; }

.trust-badges span {
  display: flex;
  align-items: center;
  font-weight: 500; }

/* Read More / Read Less Toggle */
.product-description-toggle {
  margin: 1rem 0; }

.product-description-toggle .description-short {
  color: #444; }

.product-description-toggle .description-full {
  margin-top: 0.5rem; }

.product-description-toggle .toggle-description {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
  text-decoration: underline;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease; }

.product-description-toggle .toggle-description:hover {
  opacity: 1; }

/* Sticky Add-to-Cart (Smart Sticky) */
.sticky-add-to-cart {
  position: fixed;
  bottom: 70px;
  /* raised so it doesn’t overlap accessibility/review widgets */
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9998;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.08); }

.sticky-add-to-cart .sticky-product-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 1rem;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.sticky-add-to-cart .sticky-product-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2e7d32;
  margin-right: 1rem; }

.sticky-add-to-cart .button {
  flex-shrink: 0; }
