/* Custom styles for Intuitive Stitch Co. */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Better focus styles */
:focus-visible {
  outline: 2px solid #6F8F55;
  outline-offset: 2px;
}

/* Product card subtle fabric texture feel */
.product-card {
  border: 1px solid rgba(240, 233, 220, 0.8);
}

/* Cart badge sizing */
#cart-count {
  min-width: 1.125rem;
  height: 1.125rem;
  font-size: 0.625rem;
  line-height: 1;
}

/* Custom scrollbar for cart */
#cart-items::-webkit-scrollbar {
  width: 6px;
}
#cart-items::-webkit-scrollbar-track {
  background: #F8F4EC;
}
#cart-items::-webkit-scrollbar-thumb {
  background: #C9D9BC;
  border-radius: 3px;
}

/* Animation for cart items */
.cart-item-enter {
  animation: slideIn 0.25s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Newsletter success state */
.newsletter-success {
  background-color: #E5EDE0;
  color: #465B37;
  padding: 1rem;
  border-radius: 9999px;
  font-weight: 500;
}

/* Mobile menu animation helper */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#mobile-menu.open {
  max-height: 500px;
}

/* Image loading placeholder */
img {
  background-color: #F0E9DC;
}

/* Slightly tighter tracking on some serif headings for elegance */
.font-serif {
  letter-spacing: -0.01em;
}
