body{ font-family:'Cairo',sans-serif; background:#f5fdf8; padding:20px; }
    h1{ color:#21ba59; text-align:center; margin-bottom:20px; }
    .grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:16px; }
    .card{ 
      background:#fff; 
      padding:12px; 
      border-radius:8px; 
      box-shadow:0 2px 6px rgba(0,0,0,0.1); 
      cursor:pointer;
      position: relative;
    }
    .card img{ width:100%; height:120px; object-fit:cover; border-radius:4px; }
    .card .title{ font-weight:bold; margin:8px 0 4px; color:#168346; font-size:16px; }
    .card .price{ color:#e60000; font-weight:bold; font-size:14px; }
    .card .remove{ 
      position: absolute; 
      bottom: 12px; 
      left: 12px; 
      background:#e53935; 
      color:#fff; 
      border:none; 
      padding:6px; 
      border-radius:4px; 
      cursor:pointer; 
      width:calc(100% - 24px);
      font-size:14px;
    }
