/* Custom styles if needed */

.cart-count {
    top: -8px;
    right: -8px;
    font-size: 0.75rem;
    line-height: 1;
    padding: 0;
}

button:not(#cart-btn),
a.shop-now, /* or a.btn if that’s the class */
a.shop-now:hover {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

button:not(#cart-btn):hover,
a.shop-now:hover {
  transform: scale(1.05);
}

#checkout-btn {
  background-color: white !important;
  color: black !important;
}

#checkout-btn:hover {
  background-color: var(--accent-color); /* pink or your preferred hover color */
}

#submit {
  background-color: white !important;
  color: black !important;
}

#submit:hover {
  background-color: var(--accent-color); /* pink or your preferred hover color */
}
