/* Sales Notification System */
#shampoo-sales-notification-container {
  position: fixed;
  bottom: 20px;
  right: 20px; /* Move to right */
  left: auto;
  z-index: 9999;
  max-width: 350px;
  width: 100%;
  pointer-events: none; /* Let clicks pass through container if empty */
}

.shampoo-sales-popup {
  background: #fff;
  border: 1px solid var(--outlineVariant);
  border-left: 4px solid var(--primary); /* Metro UI Accent */
  border-radius: 0; /* Metro UI: Sharp corners */
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 12px;
  pointer-events: auto;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.shampoo-sales-popup.active {
  transform: translateY(0);
  opacity: 1;
}

.shampoo-sales-thumb {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 0; /* Metro UI: Sharp corners */
  overflow: hidden;
  background-color: var(--surfaceContainer);
}

.shampoo-sales-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shampoo-sales-content {
  flex: 1;
  font-size: 13px;
  line-height: 1.3;
  color: var(--onSurface);
}

.shampoo-sales-title {
  margin: 0 0 2px 0;
  font-weight: 400;
  color: var(--outline);
}

.shampoo-sales-title strong {
  color: var(--onSurface);
  font-weight: 600;
}

.shampoo-sales-product {
  display: block;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.shampoo-sales-product:hover {
  text-decoration: underline;
}

.shampoo-sales-time {
  display: block;
  font-size: 11px;
  color: var(--outlineVariant);
}

.shampoo-sales-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: var(--outlineVariant);
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shampoo-sales-close:hover {
  color: var(--error);
}

@media (max-width: 600px) {
  #shampoo-sales-notification-container {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    max-width: none;
  }
}
