.hanout-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
  z-index: calc(var(--drawer-z-index) - 10);
  transform: translateY(100%);
  transition: transform var(--transition-drawer);
  padding: var(--space-3) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  direction: rtl;
}

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

.hanout-sticky-atc__product {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  min-width: 0;
}

.hanout-sticky-atc__thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  flex-shrink: 0;
}

.hanout-sticky-atc__name {
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.hanout-sticky-atc__price {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-accent);
  margin: 0;
}

.hanout-sticky-atc__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.hanout-sticky-atc__qty {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-gray-100);
  border-radius: var(--border-radius-sm);
  padding: var(--space-1) var(--space-2);
}

.hsa-qty-btn {
  background: none;
  border: none;
  font-size: var(--font-size-lg);
  cursor: pointer;
  color: var(--color-gray-600);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background var(--transition-fast);
}

.hsa-qty-btn:hover {
  background: var(--color-gray-200);
}

.hsa-qty-value {
  font-size: var(--font-size-base);
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.hanout-sticky-atc__btn {
  padding: var(--space-3) var(--space-6);
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-sm);
  font-weight: 700;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.hanout-sticky-atc__btn:hover {
  background: var(--color-accent-hover);
}

.hanout-sticky-atc__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .hanout-sticky-atc__thumb {
    display: none;
  }
  .hanout-sticky-atc__name {
    display: none;
  }
  .hanout-sticky-atc__price {
    display: none;
  }
}
