/* Fresh AOV Bump – Sticky Add To Cart */
.fab-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 2px solid var(--fab-primary);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform .3s ease;
}

.fab-sticky-atc.fab-sticky-atc--visible {
  transform: translateY(0);
}

.fab-sticky-atc__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fab-sticky-atc__product {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.fab-sticky-atc__product img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.fab-sticky-atc__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fab-sticky-atc__name {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
}

.fab-sticky-atc__price {
  color: var(--fab-primary);
  font-weight: 700;
}

.fab-sticky-atc__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.fab-sticky-variations {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fab-sticky-variation-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fab-sticky-variation-row label {
  font-size: 12px;
  color: #666;
}

.fab-sticky-variation-select {
  border: 1px solid var(--fab-border);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 14px;
  background: #fff;
}

.fab-sticky-atc__btn {
  white-space: nowrap;
  padding: 12px 24px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}
