/* Touch-friendly interactions */
.btn, .nav-link, .product-image {
  min-height: 44px; /* iOS recommended touch target */
  min-width: 44px;
  touch-action: manipulation; /* Prevent zoom on double-tap */
}

/* Improved mobile cart */
@media screen and (max-width: 768px) {
  .shopping-cart-container {
    width: 80%;
    max-width: 350px;
    min-width: 300px;
    height: 100vh;
    right: 0;
  }
  
  /* Add padding below checkout button */
  .cart-summary-fixed .checkout {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  
  .shopping-cart-container:not(.active) {
    transform: translateX(100%);
  }
  
  .cart-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }
  
  /* Swipe gesture hint */
  .cart-item::after {
    content: "← Swipe to remove";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .cart-item:hover::after {
    opacity: 1;
  }
}