/* ==================== TAILWIND BASE ==================== */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Price Color */
.price {
  color: #9c5f2e !important;
  font-weight: 700;
}

/* CART BUTTON - Force Dark Copper Brown */
a[href="cart.html"],
[href="cart.html"] {
  background-color: #9c5f2e !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(156, 95, 46, 0.4) !important;
}

a[href="cart.html"]:hover,
[href="cart.html"]:hover {
  background-color: #7f4c24 !important;
}

/* Make sure it overrides Tailwind */
.bg-gradient-to-r {
  background: #9c5f2e !important;
}