.ns-cart-toast {
  position: fixed;
  top: 30px;
  right: 30px;
  background: #fff;
  color: #222;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-12px);
  transition: transform .35s ease, opacity .35s ease;
  z-index: 2147483647;
  pointer-events: none;
}

.ns-cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.ns-toast-icon {
  font-size: 18px;
}

.ns-toast-text {
  line-height: 1.4;
}

@media (max-width: 768px) {
  .ns-cart-toast {
    top: auto;
    bottom: calc(20px + env(safe-area-inset-bottom));
    left: 16px;
    right: 16px;
    justify-content: center;
    transform: translateY(12px);
  }
  .ns-cart-toast.show {
    transform: translateY(0);
  }
}

.ns-free-shipping-note {
  margin: 10px 0;
  padding: 10px;
  border-radius: 6px;
  background: #f6f7f9;
  border: 1px solid #e6e9ef;
  font-size: 14px;
  line-height: 1.45;
}

.ns-free-ship-progress {
  height: 8px;
  background: #e6e9ef;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
}

.ns-free-ship-bar {
  height: 100%;
  background: #2ecc71;
  transition: width .25s ease;
}

.qty-dropdown {
  padding: 6px 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  width: auto;
  max-width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

@media (max-width: 768px) {
  .qty-dropdown {
    padding: 4px 6px;
    font-size: .85rem;
    width: 60px !important;
    max-width: 60px !important;
  }
}

td.isolated-item-qty {
  text-align: center;
}

.price-tax-note {
  font-size: .9em;
  opacity: .8;
  white-space: nowrap;
}

.acf-attribute-mobile-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.acf-attribute-item {
  border-bottom: 1px solid #ddd;
  padding: 0.75rem 0;
}

.acf-attribute-label {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #58181F;
  margin-bottom: 0.25rem;
}

.acf-attribute-value {
  font-size: 1rem;
  color: #333;
}
