* { font-family: 'Inter', system-ui, sans-serif; }
body { background: #f7f7f7; }
.brand-logo {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.divider-gold { height: 1px; background: linear-gradient(to right, transparent, #c9a86c, transparent); }
.bag-card { transition: all 0.2s ease; }
.bag-card:hover { transform: translateY(-3px); box-shadow: 0 14px 24px -12px rgba(0,0,0,0.08); }
.bag-card-media { width: 100%; }
.bag-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bag-card-body .add-to-cart { margin-top: auto; }
.thumb { transition: all 0.2s; }
.thumb:hover { opacity: 0.7; }
.cart-badge { transition: all 0.2s; }
.cart-item { transition: all 0.2s; }
.cart-item:hover { background: rgba(0,0,0,0.02); }
.quantity-btn { transition: all 0.15s; }
.quantity-btn:hover { background: #e7e5e0; }

/* Shop grid add to cart — green on hover */
button.add-to-cart {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
button.add-to-cart:hover {
  background-color: #95BF47 !important;
  border-color: #95BF47 !important;
  color: #ffffff !important;
}

/* Product page add to cart + checkout — solid green */
button#add-to-cart-btn,
a#checkout-btn,
button#checkout-btn {
  background-color: #95BF47 !important;
  border-color: #95BF47 !important;
  color: #ffffff !important;
}
