/* WooSmart Discounts - Frontend Styles */

:root {
  --wsd-primary: #c2531a;
  --wsd-primary-light: #f5e6de;
  --wsd-success: #16a34a;
  --wsd-success-light: #dcfce7;
  --wsd-text: #374151;
  --wsd-text-muted: #6b7280;
  --wsd-border: #e5e7eb;
  --wsd-radius: 8px;
  --wsd-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Discount Badge on Product */
.wsd-discount-badge {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-family: var(--wsd-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  background: var(--wsd-primary);
  border-radius: var(--wsd-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  animation: wsd-badge-in 0.3s ease-out;
}

.wsd-discount-badge--top-left {
  top: 10px;
  left: 10px;
}
.wsd-discount-badge--top-right {
  top: 10px;
  right: 10px;
}
.wsd-discount-badge--bottom-left {
  bottom: 10px;
  left: 10px;
}
.wsd-discount-badge--bottom-right {
  bottom: 10px;
  right: 10px;
}

@keyframes wsd-badge-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Cart Savings Display */
.wsd-cart-savings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0;
  padding: 12px 16px;
  background: var(--wsd-success-light);
  border: 1px solid var(--wsd-success);
  border-radius: var(--wsd-radius);
  font-family: var(--wsd-font);
  font-size: 14px;
  color: var(--wsd-success);
  animation: wsd-savings-in 0.4s ease-out;
}

.wsd-cart-savings__icon {
  display: inline-flex;
  margin-right: 8px;
}

.wsd-cart-savings__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.wsd-cart-savings__text {
  flex: 1;
  font-weight: 500;
}

.wsd-cart-savings__amount {
  font-weight: 700;
  font-size: 16px;
}

@keyframes wsd-savings-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Discount Rule Notice on Product Page */
.wsd-product-discount-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0;
  padding: 12px 16px;
  background: var(--wsd-primary-light);
  border: 1px solid var(--wsd-primary);
  border-left: 4px solid var(--wsd-primary);
  border-radius: var(--wsd-radius);
  font-family: var(--wsd-font);
  font-size: 13px;
  color: var(--wsd-text);
}

.wsd-product-discount-notice__title {
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--wsd-primary);
}

.wsd-product-discount-notice__description {
  color: var(--wsd-text-muted);
}

/* Bulk Pricing Table */
.wsd-bulk-pricing {
  width: 100%;
  margin: 16px 0;
  border-collapse: collapse;
  font-family: var(--wsd-font);
  font-size: 13px;
}

.wsd-bulk-pricing th {
  padding: 8px 12px;
  text-align: left;
  font-weight: 600;
  color: var(--wsd-text);
  background: #f9fafb;
  border-bottom: 2px solid var(--wsd-border);
}

.wsd-bulk-pricing td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--wsd-border);
  color: var(--wsd-text-muted);
}

.wsd-bulk-pricing tr:hover td {
  background: #f9fafb;
}

.wsd-bulk-pricing .wsd-current-tier {
  background: var(--wsd-primary-light);
  font-weight: 600;
  color: var(--wsd-primary);
}

/* BOGO Notice */
.wsd-bogo-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  padding: 16px;
  background: linear-gradient(135deg, var(--wsd-primary-light), #fff);
  border: 1px solid var(--wsd-primary);
  border-radius: var(--wsd-radius);
  font-family: var(--wsd-font);
}

.wsd-bogo-notice__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wsd-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
}

.wsd-bogo-notice__content {
  flex: 1;
}

.wsd-bogo-notice__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--wsd-primary);
  margin-bottom: 2px;
}

.wsd-bogo-notice__description {
  font-size: 13px;
  color: var(--wsd-text-muted);
}

/* Free Shipping Progress Bar */
.wsd-free-shipping-bar {
  margin: 16px 0;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--wsd-border);
  border-radius: var(--wsd-radius);
  font-family: var(--wsd-font);
}

.wsd-free-shipping-bar__text {
  font-size: 13px;
  color: var(--wsd-text);
  margin-bottom: 8px;
}

.wsd-free-shipping-bar__track {
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.wsd-free-shipping-bar__progress {
  height: 100%;
  background: linear-gradient(90deg, var(--wsd-primary), var(--wsd-success));
  border-radius: 4px;
  transition: width 0.5s ease;
}

.wsd-free-shipping-bar__achieved {
  color: var(--wsd-success);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .wsd-discount-badge {
    font-size: 11px;
    padding: 3px 8px;
  }
  .wsd-cart-savings {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
